]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_spanningtree/save.cpp
Add a subclass of IOHookProvider for SSL modules.
[user/henk/code/inspircd.git] / src / modules / m_spanningtree / save.cpp
1 /*
2  * InspIRCd -- Internet Relay Chat Daemon
3  *
4  *   Copyright (C) 2018 Sadie Powell <sadie@witchery.services>
5  *   Copyright (C) 2013-2015 Attila Molnar <attilamolnar@hush.com>
6  *   Copyright (C) 2012 Robby <robby@chatbelgie.be>
7  *   Copyright (C) 2010 Craig Edwards <brain@inspircd.org>
8  *   Copyright (C) 2009 Daniel De Graaf <danieldg@inspircd.org>
9  *
10  * This file is part of InspIRCd.  InspIRCd is free software: you can
11  * redistribute it and/or modify it under the terms of the GNU General Public
12  * License as published by the Free Software Foundation, version 2.
13  *
14  * This program is distributed in the hope that it will be useful, but WITHOUT
15  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
16  * FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
17  * details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
21  */
22
23
24 #include "inspircd.h"
25
26 #include "utils.h"
27 #include "treesocket.h"
28 #include "commands.h"
29
30 /**
31  * SAVE command - force nick change to UID on timestamp match
32  */
33 CmdResult CommandSave::Handle(User* user, Params& params)
34 {
35         User* u = ServerInstance->FindUUID(params[0]);
36         if (!u)
37                 return CMD_FAILURE;
38
39         time_t ts = ConvToNum<time_t>(params[1]);
40
41         if (u->age == ts)
42                 u->ChangeNick(u->uuid, SavedTimestamp);
43
44         return CMD_SUCCESS;
45 }