This repository was archived by the owner on Mar 14, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsender.cpp
More file actions
255 lines (223 loc) · 7.49 KB
/
sender.cpp
File metadata and controls
255 lines (223 loc) · 7.49 KB
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
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
/* sender.cpp
* Command compilation and sending routines
* Copyright (c) 2002 Alien Internet Services
*/
# include "config.h"
# include <fstream.h>
# include <list>
# include "sender.h"
// Variables, wonderous variables...
namespace Sender {
Sender::textbuff_t motdData;
Sender::textbuff_t helpData;
};
/* init - Load various files we need for certain output (eg. help/motd)
* Original 19/02/2002 simonb
*/
void Sender::init(void)
{
# ifdef DEBUG
cout << "Initialising output data..." << endl;
# endif
ifstream file;
String line = "";
/* This is our list. Single linked lists are 'filled' backwards, so we
* need to make a backwards list then make it fill again into the real
* list .. backwards again :)
*/
Sender::textbuff_t inputList;
// Clear the lists
motdData.clear();
helpData.clear();
// Open our MOTD file
file.open(FILE_MOTD);
// Check
if (!file) {
cout << "Could not open " FILE_MOTD " for reading" << endl;
} else {
/* Run through the file and read the lines.. We do it this way
* to avoid that ugly last line :)
*/
for (;;) {
file >> line;
if (!file.eof()) {
inputList.push_front(line);
} else {
break;
}
}
// Copy the input list to the real motdData list backwards to fix it
for (Sender::textbuff_t::iterator it = inputList.begin();
it != inputList.end(); it++) {
motdData.push_front(*it);
}
}
file.close();
// Reset the inputList
inputList.clear();
// Open our HELP file
file.open(FILE_HELP);
// Check
if (!file) {
cout << "Could not open " FILE_HELP " for reading" << endl;
} else {
// Run through the file and read the lines
/* Run through the file and read the lines.. We do it this way
* to avoid that ugly last line :)
*/
for (;;) {
file >> line;
if (!file.eof()) {
/* If the line is 'blank', we have to add a space to make it send
* properly
*/
if (!line.length()) {
line = " ";
}
inputList.push_front(line);
} else {
break;
}
}
// Copy the input list to the real helpData list backwards to fix it
for (Sender::textbuff_t::iterator it = inputList.begin();
it != inputList.end(); it++) {
helpData.push_front(*it);
}
}
file.close();
}
/* sendBurst - Send out a connection burst
* Original 18/02/2002 simonb
* Note: This function is ugly - damned #ifdefs :(
*/
void Sender::sendBurst(void)
{
# ifdef BURST_CLONE_SERVERS
Daemon::queueAdd(":" MY_SERVERNAME " S " BURST_CLONE_SERVER_PREFIX
"0" BURST_CLONE_SERVER_SUFFIX " 2 0 "
DODGEY_SERVER_TS_2 " P13 :" BURST_CLONE_SERVER_PREFIX
"1");
for (int i = 1; i != BURST_CLONE_SERVERS; i++) {
Daemon::queueAdd(String(":" BURST_CLONE_SERVER_PREFIX) +
String(i - 1) + BURST_CLONE_SERVER_SUFFIX " S "
BURST_CLONE_SERVER_PREFIX + String(i) +
BURST_CLONE_SERVER_SUFFIX " " + String(i + 2) +
" 0 " DODGEY_SERVER_TS_2 " P13 :"
BURST_CLONE_SERVER_PREFIX + String(i));
}
# endif
Daemon::queueAdd(":" MY_SERVERNAME " N " MY_USERNICK " 1 0 "
MY_USERNAME " " MY_USERHOST " " MY_USERVWHOST " "
MY_SERVERNAME " " MY_USERMODES " 0 0 :" MY_USERDESC);
# ifdef BURST_CLONE_TEST
for (int i = 0; i != BURST_CLONE_TEST; i++) {
Daemon::queueAdd(String(":" MY_SERVERNAME " N "
BURST_CLONE_PREFIX) + String(i) +
" 1 0 " MY_USERNAME " " MY_USERHOST " "
MY_USERVWHOST " " MY_SERVERNAME " "
BURST_CLONE_MODES " 0 0 :" MY_USERDESC);
# ifdef BURST_CLONE_CHAN_PREFIX
Daemon::queueAdd(String(":" BURST_CLONE_PREFIX) + String(i) +
" J " BURST_CLONE_CHAN_PREFIX + String(i) +
" 0");
# endif
# ifdef BURST_CLONE_FAT_CHAN
Daemon::queueAdd(String(":" BURST_CLONE_PREFIX) + String(i) +
" J " BURST_CLONE_FAT_CHAN + " 0");
# endif
}
# endif
Daemon::queueAdd("END_OF_BURST");
# ifdef NICKOP_NAME
Daemon::queueAdd(":" MY_USERNAME " P " NICKOP_NAME " :identify "
NICKOP_PASSWD);
# endif
}
/* sendMOTDreply - Send out a reply to an MOTD request
* Original 19/02/2002 simonb
*/
void Sender::sendMOTDreply(String const &who)
{
// Send the header
Daemon::queueAdd(String(":" MY_SERVERNAME " 375 ") + who +
" :- " MY_SERVERNAME " Server Message of the Day. -");
// Loop and send the MOTD data
for (Sender::textbuff_t::iterator it = motdData.begin();
it != motdData.end(); it++) {
Daemon::queueAdd(String(":" MY_SERVERNAME " 372 ") + who + " :- " +
*it);
}
// Send the footer
Daemon::queueAdd(String(":" MY_SERVERNAME " 376 ") + who +
" :End of MOTD");
}
/* sendWHOISreply - Send out a reply to WHOIS
* Original 19/02/2002 simonb
*/
void Sender::sendWHOISreply(String const &who)
{
Daemon::queueAdd(String(":" MY_SERVERNAME " 311 ") + who +
" " MY_USERNICK " " MY_USERNAME " " MY_USERHOST " * :"
MY_USERDESC);
Daemon::queueAdd(String(":" MY_SERVERNAME " 312 ") + who +
" " MY_USERNICK " " MY_SERVERNAME " :" MY_SERVERDESC);
Daemon::queueAdd(String(":" MY_SERVERNAME " 317 ") + who +
" " MY_USERNICK " " +
String(Daemon::getUptime()) + " " +
String(Daemon::getStartTime()) +
" :seconds idle, signon time");
Daemon::queueAdd(String(":" MY_SERVERNAME " 318 ") + who +
" " MY_USERNICK " :End of WHOIS list");
}
/* sendHelpReply - Send out a reply to HELP
* Original 19/02/2002 simonb
*/
void Sender::sendHelpReply(String const &who)
{
// Loop and send the help data
for (Sender::textbuff_t::iterator it = helpData.begin();
it != helpData.end(); it++) {
sendNOTICE(who, *it);
}
}
/* sendStatsReply - Send out a reply to a stats command request
* Original 19/02/2002 simonb
*/
void Sender::sendStatsReply(String const &who)
{
time_t uptime = Daemon::getUptime();
Daemon::queueAdd(String(":" MY_USERNICK " NO ") + who +
" : Server up-time - " +
(((long)(uptime / 86400) == 0) ? String("") :
(String((long)(uptime / 86400)) + " day" +
(((long)(uptime / 86400) >= 2) ? String("s") : String("")) +
", ")) +
((((long)(uptime % 86400) / 3600) == 0) ? String("") :
(String((long)(uptime % 86400) / 3600) + " hour" +
((((long)(uptime % 86400) / 3600) >= 2) ? String("s") : String("")) +
", ")) +
(((long)((uptime % 3600) / 60) == 0) ? String("") :
(String((long)((uptime % 3600) / 60)) + " min" +
(((long)((uptime % 3600) / 60) >= 2) ? String("s") : String("")) +
", ")) +
(String((long)(uptime % 60)) + " sec" +
(((long)(uptime % 60) == 1) ? String("") : String("s"))));
Daemon::queueAdd(String(":" MY_USERNICK " NO ") + who +
" :Data transfer this session - Rx: " +
String(Daemon::getCountRx() / 1024) + "k, Tx: " +
String(Daemon::getCountTx() / 1024) + "k");
Daemon::queueAdd(String(":" MY_USERNICK " NO ") + who +
" : User Connections - " +
String(Daemon::getCountUserConnects()));
Daemon::queueAdd(String(":" MY_USERNICK " NO ") + who +
" : Ignored nicknames - " +
String(Daemon::getCountIgnores()));
Daemon::queueAdd(String(":" MY_USERNICK " NO ") + who +
" : CTCP VERSION Replies - " +
String(Daemon::getCountVersions()) + " this session, " +
String(Daemon::getCountVersionSpoofs()) + " spoofs, " +
String(Daemon::getCountVersionsTotal()) + " total (" +
String(Daemon::getUniqueVersions()) +
" unique)");
}