This repository has been archived by the owner on Mar 14, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathirc.pas
500 lines (431 loc) · 13.3 KB
/
irc.pas
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
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
unit IRC;
{$mode objfpc}{$H+}
interface
uses
Classes, IdIRC, IdComponent, IdContext, IRCCommands, IdException, ChannelList,
IRCViewIntf, quitcommand, partedcommand, joinedcommand;
type
{ TIRC }
TOnNickListReceived = procedure(const Channel: string; List: TStrings) of object;
TOnUserEvent = procedure(const Channel, User: string) of object;
TOnMessageReceived = procedure(const Channel, Message: string; OwnMessage: boolean) of object;
TOnShowPopup = procedure(const Msg: string) of object;
TIRC = class
private
FChannelList: TChannelList;
FReady: boolean;
FChannel: string;
FMessage: string;
FServerMessage: string;
FServerMessages: TStrings;
FNickNameList: TStrings;
FActiveChannel: string;
FIdIRC: TIdIRC;
FOnNickListReceived: TOnNickListReceived;
FOnUserJoined: TOnUserEvent;
FOnMessageReceived: TOnMessageReceived;
FOnShowPopup: TOnShowPopup;
FAutoJoinChannels: TStrings;
FCommands: TIRCCommand;
FOwnMessage: boolean;
FOldNickName: string;
FNewNickName: string;
FView: IIRCView;
FQuitCommand: TQuitCommand;
FPartedCommand: TPartedCommand;
FJoinedCommand: TJoinedCommand;
procedure ConfigureEvents;
procedure DoDisconnect;
function FormatMessage(const NickName, Message: string): string;
function GetHostName: string;
function GetNickName: string;
function FormatNickName(const AMessage: string): string;
function IsInputCommand(const Message: string): boolean;
procedure MessageToChannel(const Msg: string);
procedure MessageReceived(const Channel, Message: string; OwnMessage: boolean);
procedure Raw(const RawString: string);
procedure OnStatus(ASender: TObject; const AStatus: TIdStatus; const AStatusText: string);
procedure OnNotice(ASender: TIdContext; const ANicknameFrom, AHost, ANicknameTo, ANotice: string);
procedure OnMOTD(ASender: TIdContext; AMOTD: TStrings);
procedure OnRaw(ASender: TIdContext; AIn: boolean; const AMessage: string);
procedure OnPrivateMessage(ASender: TIdContext; const ANickname, AHost, ATarget, AMessage: string);
procedure OnNickNameListReceive(ASender: TIdContext; const AChannel: string; ANicknameList: TStrings);
procedure OnJoin(ASender: TIdContext; const ANickname, AHost, AChannel: string);
procedure OnPart(ASender: TIdContext; const ANickname, AHost, AChannel, APartMessage: string);
procedure OnQuit(ASender: TIdContext; const ANickname, AHost, AReason: string);
procedure OnWelcome(ASender: TIdContext; const AMsg: string);
procedure OnTopic(ASender: TIdContext; const ANickname, AHost, AChannel, ATopic: string);
procedure OnNickNameChanged(ASender: TIdContext; const AOldNickname, AHost, ANewNickname: string);
procedure RemoveEvents;
function RemoveOPVoicePrefix(const Channel: string): string;
procedure Say(const Channel, Msg: string);
procedure SendMessage;
procedure SendNickNameListReceived;
procedure SendServerMessage; overload;
procedure SendServerMessage(const Msg: string); overload;
procedure SendNickNameChanged;
procedure DoConnect;
procedure HandleIdException(E: EIdException);
public
property Ready: boolean read FReady;
property ActiveChannel: string read FActiveChannel write FActiveChannel;
property OnNickListReceived: TOnNickListReceived read FOnNickListReceived write FOnNickListReceived;
property OnUserJoined: TOnUserEvent read FOnUserJoined write FOnUserJoined;
property OnMessageReceived: TOnMessageReceived read FOnMessageReceived write FOnMessageReceived;
property OnShowPopup: TOnShowPopup read FOnShowPopup write FOnShowPopup;
property NickName: string read GetNickName;
property HostName: string read GetHostName;
procedure AutoJoinChannels;
function IsConnected: boolean;
procedure Connect;
procedure Disconnect;
procedure Join(const Name: string);
procedure Part(const Name: string);
procedure Ping;
procedure SendMessage(const Message: string);
constructor Create(ChannelList: TChannelList);
destructor Destroy; override;
end;
implementation
uses idircconfig, IdSync, SysUtils;
const
NickNameFormat = '<%s>';
MessageFormat = '%s ' + NickNameFormat + ': %s';
resourcestring
StrTopic = 'Topic for %s: %s' + sLineBreak;
procedure TIRC.DoDisconnect;
begin
try
FIdIRC.Disconnect(False);
FIdIRC.IOHandler.InputBuffer.Clear;
except
//We just ignore everything at this point and hope for the best
end;
FChannelList.ClearChannels;
end;
procedure TIRC.ConfigureEvents;
begin
// Remember to remove the events in the RemoveEvents method
// If you don't clen up the events the thread can try to notify
// the UI and cause a deadlock, see Issue #18
FIdIRC.OnStatus := @OnStatus;
FIdIRC.OnNotice := @OnNotice;
FIdIRC.OnMOTD := @OnMOTD;
FIdIRC.OnPrivateMessage := @OnPrivateMessage;
FIdIRC.OnNicknamesListReceived := @OnNickNameListReceive;
FIdIRC.OnJoin := @OnJoin;
FIdIRC.OnPart := @OnPart;
FIdIRC.OnServerWelcome := @OnWelcome;
FIdIRC.OnRaw := @OnRaw;
FIdIRC.OnQuit := @OnQuit;
FIdIRC.OnTopic := @OnTopic;
FIdIRC.OnNicknameChange := @OnNickNameChanged;
end;
function TIRC.FormatMessage(const NickName, Message: string): string;
begin
Result := Format(MessageFormat, [FormatDateTime(DefaultFormatSettings.ShortTimeFormat, Now), NickName, Message]);
end;
function TIRC.GetHostName: string;
begin
Result := FIdIRC.Host;
end;
function TIRC.GetNickName: string;
begin
Result := FIdIRC.UsedNickname;
end;
function TIRC.FormatNickName(const AMessage: string): string;
begin
Result := StringReplace(AMessage, NickName, Format(NickNameFormat, [NickName]), []);
end;
function TIRC.IsConnected: boolean;
begin
try
Result := FIdIRC.Connected;
except
DoDisconnect; //Must not call the Disconnect method, it can call IsConnected again
Result := False;
end;
end;
function TIRC.IsInputCommand(const Message: string): boolean;
begin
Result := Pos('/', TrimLeft(Message)) = 1;
end;
procedure TIRC.AutoJoinChannels;
var
I: integer;
Channel: TChannel;
begin
if FChannelList.Count > 0 then
begin
for Channel in FChannelList do
Join(Channel.Name);
Exit;
end;
if FAutoJoinChannels = nil then
Exit;
for I := 0 to FAutoJoinChannels.Count - 1 do
Join(FAutoJoinChannels.ValueFromIndex[I]);
end;
procedure TIRC.MessageToChannel(const Msg: string);
var
Channel: string;
begin
Channel := RemoveOPVoicePrefix(FActiveChannel);
Say(Channel, Msg);
MessageReceived(FActiveChannel, FormatMessage(NickName, Msg), True);
end;
procedure TIRC.MessageReceived(const Channel, Message: string; OwnMessage: boolean);
begin
FChannel := Channel;
FMessage := Message;
FOwnMessage := OwnMessage;
TIdSync.SynchronizeMethod(@SendMessage);
end;
procedure TIRC.Raw(const RawString: string);
begin
try
FIdIRC.Raw(RawString)
except
on E: EIdException do
HandleIdException(E);
end;
end;
procedure TIRC.OnStatus(ASender: TObject; const AStatus: TIdStatus; const AStatusText: string);
begin
if AStatus = hsConnected then
FReady := True;
FServerMessage := AStatusText;
TIdSync.SynchronizeMethod(@SendServerMessage);
end;
procedure TIRC.OnNotice(ASender: TIdContext; const ANicknameFrom, AHost, ANicknameTo, ANotice: string);
begin
FServerMessage := Format('* Notice from %s to %s: %s ', [ANicknameFrom, ANicknameTo, ANotice]);
TIdSync.SynchronizeMethod(@SendServerMessage);
end;
procedure TIRC.OnMOTD(ASender: TIdContext; AMOTD: TStrings);
begin
FServerMessages := AMOTD;
TIdSync.SynchronizeMethod(@SendServerMessage);
end;
procedure TIRC.OnRaw(ASender: TIdContext; AIn: boolean; const AMessage: string);
begin
{$IFDEF DEBUG}
FServerMessage := AMessage;
TIdSync.SynchronizeMethod(@SendServerMessage);
{$ENDIF}
end;
procedure TIRC.OnPrivateMessage(ASender: TIdContext; const ANickname, AHost, ATarget, AMessage: string);
var
Mensagem: string;
begin
Mensagem := FormatNickName(AMessage);
Mensagem := FormatMessage(ANickname, Mensagem);
if ATarget <> NickName then
MessageReceived(ATarget, Mensagem, False)
else
MessageReceived(ANickname, Mensagem, False);
end;
procedure TIRC.OnNickNameListReceive(ASender: TIdContext; const AChannel: string; ANicknameList: TStrings);
begin
FChannel := AChannel;
FNickNameList := ANicknameList;
TIdSync.SynchronizeMethod(@SendNickNameListReceived);
end;
procedure TIRC.OnJoin(ASender: TIdContext; const ANickname, AHost, AChannel: string);
begin
FJoinedCommand.Execute(ANickname, AHost, AChannel);
end;
procedure TIRC.OnPart(ASender: TIdContext; const ANickname, AHost, AChannel, APartMessage: string);
begin
FPartedCommand.Execute(ANickname, AHost, AChannel, APartMessage);
end;
procedure TIRC.OnQuit(ASender: TIdContext; const ANickname, AHost, AReason: string);
begin
FQuitCommand.Execute(ANickname, AReason);
end;
procedure TIRC.OnWelcome(ASender: TIdContext; const AMsg: string);
begin
FServerMessage := AMsg;
TIdSync.SynchronizeMethod(@SendServerMessage);
end;
procedure TIRC.OnTopic(ASender: TIdContext; const ANickname, AHost, AChannel, ATopic: string);
begin
FChannel := AChannel;
FMessage := Format(StrTopic, [AChannel, ATopic]);
TIdSync.SynchronizeMethod(@SendMessage);
end;
procedure TIRC.OnNickNameChanged(ASender: TIdContext; const AOldNickname, AHost, ANewNickname: string);
begin
FChannelList.NickName := FIdIRC.UsedNickname;
FOldNickName := AOldNickname;
FNewNickName := ANewNickname;
TIdSync.SynchronizeMethod(@SendNickNameChanged);
end;
procedure TIRC.RemoveEvents;
begin
FIdIRC.OnStatus := nil;
FIdIRC.OnNotice := nil;
FIdIRC.OnMOTD := nil;
FIdIRC.OnPrivateMessage := nil;
FIdIRC.OnNicknamesListReceived := nil;
FIdIRC.OnJoin := nil;
FIdIRC.OnPart := nil;
FIdIRC.OnServerWelcome := nil;
FIdIRC.OnRaw := nil;
FIdIRC.OnQuit := nil;
FIdIRC.OnTopic := nil;
FIdIRC.OnNicknameChange := nil;
end;
function TIRC.RemoveOPVoicePrefix(const Channel: string): string;
begin
Result := Channel;
if FIdIRC.IsOp(Channel) or FIdIRC.IsVoice(Channel) then
Result := Copy(Channel, 2, MaxInt);
end;
procedure TIRC.Say(const Channel, Msg: string);
begin
try
FIdIRC.Say(Channel, Msg);
except
on E: EIdException do
HandleIdException(E);
end;
end;
procedure TIRC.SendMessage;
begin
FOnMessageReceived(FChannel, FMessage, FOwnMessage);
end;
procedure TIRC.SendNickNameListReceived;
begin
FOnNickListReceived(FChannel, FNicknameList);
end;
procedure TIRC.SendServerMessage;
begin
if FServerMessages <> nil then
FView.ServerMessage(FServerMessages.Text);
if FServerMessage <> '' then
FView.ServerMessage(FServerMessage);
FServerMessage := '';
FServerMessages := nil;
end;
procedure TIRC.SendServerMessage(const Msg: string);
begin
FServerMessage := Msg;
TIdSync.SynchronizeMethod(@SendServerMessage);
end;
procedure TIRC.SendNickNameChanged;
begin
FChannelList.NickNameChanged(FOldNickName, FNewNickName);
end;
procedure TIRC.DoConnect;
begin
try
FIdIRC.Connect;
except
on E: Exception do
begin
try
FIdIRC.Disconnect(False);
except
end;
if FIdIRC.IOHandler <> nil then
FIdIRC.IOHandler.InputBuffer.Clear;
FView.ServerMessage(Format('Cannot connect to server: %s', [E.Message]));
Abort;
end;
end;
end;
procedure TIRC.HandleIdException(E: EIdException);
begin
SendServerMessage(E.Message);
end;
procedure TIRC.Connect;
begin
Disconnect;
ConfigureEvents;
TIdIRCConfig.Configure(FIdIRC, FAutoJoinChannels);
DoConnect;
FChannelList.NickName := FIdIRC.UsedNickname;
TIdIRCConfig.ConfigureEncoding(FIdIRC);
AutoJoinChannels;
end;
procedure TIRC.Disconnect;
begin
if not IsConnected then
Exit;
// It's necessary to remove the event handlers or
// the thread can try to notify the interface
// and cause a deadlock here see Issue #18
RemoveEvents;
{$IFDEF UNIX}
Raw('QUIT');
sleep(500); //Issue #18 - The thread deadlocks if we don't wait >(
{$ENDIF}
DoDisconnect;
end;
procedure TIRC.Join(const Name: string);
begin
try
FIdIRC.Join(Name);
except
on E: EIdException do
HandleIdException(E);
end;
end;
procedure TIRC.Part(const Name: string);
begin
try
FIdIRC.Part(Name);
except
on E: EIdException do
HandleIdException(E);
end;
end;
procedure TIRC.Ping;
begin
try
FIdIRC.Ping(FIdIRC.Host);
except
on E: EIdException do
HandleIdException(E);
end;
end;
procedure TIRC.SendMessage(const Message: string);
var
IsCommand: boolean;
RawString: string;
begin
IsCommand := IsInputCommand(Message);
if (FActiveChannel = '') or IsCommand then
begin
RawString := Message;
if IsCommand then
RawString := FCommands.GetRawCommand(RawString);
Raw(RawString);
end
else
MessageToChannel(Message);
end;
constructor TIRC.Create(ChannelList: TChannelList);
begin
inherited Create;
FChannelList := ChannelList;
FQuitCommand := TQuitCommand.Create(FChannelList);
FPartedCommand := TPartedCommand.Create(FChannelList);
FJoinedCommand := TJoinedCommand.Create(FChannelList);
FView := ChannelList.View;
FIdIRC := TIdIRC.Create(nil);
FCommands := TIRCCommand.Create;
FAutoJoinChannels := TStringList.Create;
end;
destructor TIRC.Destroy;
begin
FPartedCommand.Free;
FQuitCommand.Free;
FJoinedCommand.Free;
FIdIRC.Free;
FAutoJoinChannels.Free;
FCommands.Free;
inherited;
end;
end.