1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
|
/* NickServ core functions
*
* (C) 2003-2014 Anope Team
* Contact us at team@anope.org
*
* Please read COPYING and README for further details.
*
* Based on the original code of Epona by Lara.
* Based on the original code of Services by Andy Church.
*/
#include "module.h"
class NSIdentifyRequestListener : public NickServ::IdentifyRequestListener
{
CommandSource source;
Command *cmd;
public:
NSIdentifyRequestListener(CommandSource &s, Command *c) : source(s), cmd(c) { }
void OnSuccess(NickServ::IdentifyRequest *req) override
{
if (!source.GetUser())
return;
User *u = source.GetUser();
NickServ::Nick *na = NickServ::FindNick(req->GetAccount());
if (!na)
{
source.Reply(_("\002{0}\002 isn't registered."), req->GetAccount());
return;
}
if (u->IsIdentified())
Log(LOG_COMMAND, source, cmd) << "to log out of account " << u->Account()->GetDisplay();
Log(LOG_COMMAND, source, cmd) << "and identified for account " << na->GetAccount()->GetDisplay();
source.Reply(_("Password accepted - you are now recognized as \002{0}\002."), na->GetAccount()->GetDisplay());
u->Identify(na);
}
void OnFail(NickServ::IdentifyRequest *req) override
{
if (!source.GetUser())
return;
bool accountexists = NickServ::FindNick(req->GetAccount()) != NULL;
Log(LOG_COMMAND, source, cmd) << "and failed to identify to" << (accountexists ? " " : " nonexistent ") << "account " << req->GetAccount();
if (accountexists)
{
source.Reply(_("Password incorrect."));
source.GetUser()->BadPassword();
}
else
source.Reply("\002{0}\002 isn't registered.", req->GetAccount());
}
};
class CommandNSIdentify : public Command
{
public:
CommandNSIdentify(Module *creator) : Command(creator, "nickserv/identify", 1, 2)
{
this->SetDesc(_("Identify yourself with your password"));
this->SetSyntax(_("[\037account\037] \037password\037"));
this->AllowUnregistered(true);
this->RequireUser(true);
}
void Execute(CommandSource &source, const std::vector<Anope::string> ¶ms) override
{
User *u = source.GetUser();
const Anope::string &nick = params.size() == 2 ? params[0] : u->nick;
Anope::string pass = params[params.size() - 1];
NickServ::Nick *na = NickServ::FindNick(nick);
if (na && na->GetAccount()->HasFieldS("NS_SUSPENDED"))
{
source.Reply(_("\002{0}\002 is suspended."), na->GetNick());
return;
}
if (u->Account() && na && u->Account() == na->GetAccount())
{
source.Reply(_("You are already identified."));
return;
}
unsigned int maxlogins = Config->GetModule(this->owner)->Get<unsigned int>("maxlogins");
if (na && maxlogins && na->GetAccount()->users.size() >= maxlogins)
{
source.Reply(_("Account \002{0}\002 has already reached the maximum number of simultaneous logins ({1})."), na->GetAccount()->GetDisplay(), maxlogins);
return;
}
NickServ::IdentifyRequest *req = NickServ::service->CreateIdentifyRequest(new NSIdentifyRequestListener(source, this), owner, na ? na->GetAccount()->GetDisplay() : nick, pass);
Event::OnCheckAuthentication(&Event::CheckAuthentication::OnCheckAuthentication, u, req);
req->Dispatch();
}
bool OnHelp(CommandSource &source, const Anope::string &subcommand) override
{
source.Reply(_("Logs you in to account \037account\037. If no \037account\037 is given, your current nickname is used."
" Many commands require you to authenticate with this command before you use them. \037password\037 should be the same one you registered with."));
return true;
}
};
class NSIdentify : public Module
{
CommandNSIdentify commandnsidentify;
public:
NSIdentify(const Anope::string &modname, const Anope::string &creator) : Module(modname, creator, VENDOR),
commandnsidentify(this)
{
}
};
MODULE_INIT(NSIdentify)
|