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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
|
/*
* Anope IRC Services
*
* Copyright (C) 2003-2016 Anope Team <team@anope.org>
*
* This file is part of Anope. Anope is free software; you can
* redistribute it and/or modify it under the terms of the GNU
* General Public License as published by the Free Software
* Foundation, version 2.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, see see <http://www.gnu.org/licenses/>.
*/
#include "module.h"
class CommandMSInfo : public Command
{
public:
CommandMSInfo(Module *creator) : Command(creator, "memoserv/info", 0, 1)
{
this->SetDesc(_("Displays information about your memos"));
this->SetSyntax(_("[\037user\037 | \037channel\037]"));
}
void Execute(CommandSource &source, const std::vector<Anope::string> ¶ms) override
{
NickServ::Account *nc = source.nc;
MemoServ::MemoInfo *mi;
NickServ::Nick *na = NULL;
ChanServ::Channel *ci = NULL;
const Anope::string &nname = !params.empty() ? params[0] : "";
bool hardmax;
if (!nname.empty() && nname[0] != '#' && source.HasPriv("memoserv/info"))
{
na = NickServ::FindNick(nname);
if (!na)
{
source.Reply(_("\002{0}\002 isn't registered."), nname);
return;
}
mi = na->GetAccount()->GetMemos();
hardmax = mi->IsHardMax();
}
else if (!nname.empty() && nname[0] == '#')
{
ci = ChanServ::Find(nname);
if (!ci)
{
source.Reply(_("Channel \002{0}\002 isn't registered."), nname);
return;
}
if (!source.AccessFor(ci).HasPriv("MEMO"))
{
source.Reply(_("Access denied. You do not have privilege \002{0}\002 on \002{1}\002."), "MEMO", ci->GetName());
return;
}
mi = ci->GetMemos();
hardmax = mi->IsHardMax();
}
else if (!nname.empty()) /* It's not a chan and we aren't an oper */
{
source.Reply(_("Access denied. You do not have the correct operator privilege to see the memo info of \002{0}\002."), nname);
return;
}
else
{
mi = nc->GetMemos();
hardmax = mi->IsHardMax();
}
if (!mi)
return;
auto memos = mi->GetMemos();
if (!nname.empty() && (ci || na->GetAccount() != nc))
{
if (memos.empty())
source.Reply(_("%s currently has no memos."), nname.c_str());
else if (memos.size() == 1)
{
if (mi->GetMemo(0)->GetUnread())
source.Reply(_("\002{0}\002 currently has \0021\002 memo, and it has not yet been read."), nname);
else
source.Reply(_("\002{0}\002 currently has \0021\002 memo."), nname);
}
else
{
unsigned count = 0, i, end;
for (i = 0, end = memos.size(); i < end; ++i)
if (mi->GetMemo(i)->GetUnread())
++count;
if (count == memos.size())
source.Reply(_("\002{0}\002 currently has \002{1]\002 memos; all of them are unread."), nname, count);
else if (!count)
source.Reply(_("\002{0}\002 currently has \002{1}\002 memos."), nname, memos.size());
else if (count == 1)
source.Reply(_("\002{0}\002 currently has \002{1}\002 memos, of which \0021\002 is unread."), nname, memos.size());
else
source.Reply(_("\002{0}\002 currently has \002{1]\002 memos, of which \002{2}\002 are unread."), nname, memos.size(), count);
}
if (mi->GetMemoMax() >= 0)
{
if (hardmax)
source.Reply(_("The memo limit of \002{0}\002 is \002{1}\002, and may not be changed."), nname, mi->GetMemoMax());
else
source.Reply(_("The memo limit of \002{0}\002 is \002{1}\002."), nname, mi->GetMemoMax());
}
else
{
source.Reply(_("\002{0}\002 has no memo limit."), nname);
}
if (na)
{
if (na->GetAccount()->IsMemoReceive() && na->GetAccount()->IsMemoSignon())
source.Reply(_("\002{0}\002 is notified of new memos at logon and when they arrive."), nname);
else if (na->GetAccount()->IsMemoReceive())
source.Reply(_("\002{0}\002 is notified when new memos arrive."), nname);
else if (na->GetAccount()->IsMemoSignon())
source.Reply(_("\002{0}\002 is notified of news memos at logon."), nname);
else
source.Reply(_("\002{0}\002 is not notified of new memos."), nname);
}
}
else
{
if (memos.empty())
{
source.Reply(_("You currently have no memos."));
}
else if (memos.size() == 1)
{
if (mi->GetMemo(0)->GetUnread())
source.Reply(_("You currently have \0021\002 memo, and it has not yet been read."));
else
source.Reply(_("You currently have \0021\002 memo."));
}
else
{
unsigned count = 0, i, end;
for (i = 0, end = memos.size(); i < end; ++i)
if (mi->GetMemo(i)->GetUnread())
++count;
if (count == memos.size())
source.Reply(_("You currently have \002{0}\002 memos; all of them are unread."), count);
else if (!count)
source.Reply(_("You currently have \002{0}\002 memos."), memos.size());
else if (count == 1)
source.Reply(_("You currently have \002{0}\002 memos, of which \0021\002 is unread."), memos.size());
else
source.Reply(_("You currently have \002{0}\002 memos, of which \002{1}\002 are unread."), memos.size(), count);
}
if (!mi->GetMemoMax())
{
if (!source.IsServicesOper() && hardmax)
source.Reply(_("Your memo limit is \0020\002; you will not receive any new memos. You cannot change this limit."));
else
source.Reply(_("Your memo limit is \0020\002; you will not receive any new memos."));
}
else if (mi->GetMemoMax() > 0)
{
if (!source.IsServicesOper() && hardmax)
source.Reply(_("Your memo limit is \002{0}\002, and may not be changed."), mi->GetMemoMax());
else
source.Reply(_("Your memo limit is \002{0}\002."), mi->GetMemoMax());
}
else
source.Reply(_("You have no limit on the number of memos you may keep."));
bool memo_mail = nc->IsMemoMail();
if (nc->IsMemoReceive() && nc->IsMemoSignon())
{
if (memo_mail)
source.Reply(_("You will be notified of new memos at logon and when they arrive, and by mail when they arrive."));
else
source.Reply(_("You will be notified of new memos at logon and when they arrive."));
}
else if (nc->IsMemoReceive())
{
if (memo_mail)
source.Reply(_("You will be notified by message and by mail when new memos arrive."));
else
source.Reply(_("You will be notified when new memos arrive."));
}
else if (nc->IsMemoSignon())
{
if (memo_mail)
source.Reply(_("You will be notified of new memos at logon, and by mail when they arrive."));
else
source.Reply(_("You will be notified of new memos at logon."));
}
else
{
source.Reply(_("You will not be notified of new memos."));
}
}
}
bool OnHelp(CommandSource &source, const Anope::string &subcommand) override
{
source.Reply(_("Without a parameter, displays information on the number of memos you have, how many of them are unread, and how many total memos you can receive."
" With a parameter, displays the same information for the given \037user\037 or \037channel\037, if you have the appropriate privilege.\n"
"\n"
"Use of this command on a channel requires the \002{0}\002 privilege on \037channel\037."),
source.GetCommand());
return true;
}
};
class MSInfo : public Module
{
CommandMSInfo commandmsinfo;
public:
MSInfo(const Anope::string &modname, const Anope::string &creator) : Module(modname, creator, VENDOR)
, commandmsinfo(this)
{
}
};
MODULE_INIT(MSInfo)
|