forked from wridgers/talon
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtalon
More file actions
executable file
·423 lines (336 loc) · 9.91 KB
/
Copy pathtalon
File metadata and controls
executable file
·423 lines (336 loc) · 9.91 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
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
#!/usr/bin/perl
use strict;
# External modules
use DBI;
use POE;
use POE::Component::IRC;
use Module::Load;
use Module::Refresh;
use Config::Simple;
use Getopt::Std;
# Load talon common subs.
use taloncommon;
# Get command line options.
my (%opts, $cfile);
getopts('hc:', \%opts);
# Create the hash array 'stack'.
# my %stack;
# Set command trigger.
# %stack{'trigger'} = "!";
usage() if $opts{'h'};
$cfile = 'default.conf';
$cfile = $opts{'c'} if ($opts{'c'});
my $cfg = new Config::Simple('conf/'.$cfile);
print "[config] Loaded conf/$cfile.\n";
## Before we go any farther, lets see if the database exists
unless (-e $cfg->param('db')) { print "Unable to start. Database missing. Maybe you should check the README.\n"; exit; }
# Modules hash array.
my %modules = ( );
# Load all modules in talonplug, ignore skipped in config.
load_all_modules();
# Setup SQLite database.
my $dbh = DBI->connect("dbi:SQLite:dbname=".$cfg->param('db'),"","",{AutoCommit => 1, PrintError => 1});
# Initiate connection to IRC server.
print "[kernel] Creating connection to IRC server...\n";
print '[kernel] '.$cfg->param('server').':'.$cfg->param('port').' as '.$cfg->param('nick')."\n";
# Spawn.
my $poeirc = POE::Component::IRC->spawn( Nick => $cfg->param('nick'),
Server => $cfg->param('server'),
Port => $cfg->param('port'),
UseSSL => $cfg->param('ssl') )
or die "[kernel] Cannot connect to server.\n";
POE::Session->create(
package_states => [
main => [ qw( _default _start irc_001 irc_public irc_msg irc_join irc_part irc_quit) ]
],
heap => { poeirc => $poeirc }
);
POE::Kernel->run();
print "[kernel] Kernel initiated\n";
##################################################################
##################################################################
sub load_all_modules {
my @s = split(/,/, $cfg->param('skip'));
print "[modules] Skip: ".$cfg->param('skip')."\n";
while ( <talonplug/*.pm> ) {
$_ =~ /talonplug\/([^.]*)\.pm/;
my $m = $1;
if (not grep {$_ eq $m} @s) {
if ( check_module($m) eq 1 ) {
load 'talonplug::'.$m;
$modules{$m} = "talonplug::$m"->new();
print "[modules] Loaded $m\n";
} else {
print "[modules] $m contains errors.\n";
}
}
}
}
sub check_module {
Module::Refresh->unload_module('talonplug::'.$1);
my $data;
open( HANDLE, '<talonplug/'.$1.'.pm' );
while (<HANDLE>) {
$data = $data.$_;
}
close(HANDLE);
eval $data;
if ($@) {
my @err = split(/\n/, $@);
print '[error] '.$_."\n" foreach(@err);
return $@;
}
Module::Refresh->unload_module('talonplug::'.$1);
return 1;
}
sub module_panic {
my ( $m, $channel, $err ) = @_;
if ( $channel ne 0 ) {
$poeirc->yield( privmsg => $channel => '>> Module '.$m.' auto unloaded due to error.');
$poeirc->yield( privmsg => $channel => '>> '.$_) foreach($err);
}
print '[error] '.$_."\n" foreach($err);
delete $modules{$m};
}
##################################################################
##################################################################
sub _start {
my $heap = $_[HEAP];
my $poeirc = $heap->{poeirc};
$poeirc->yield( register => 'all' );
$poeirc->yield( connect => { } );
return;
}
sub _default {
my ($event, $args) = @_[ARG0 .. $#_];
my @output = ( "$event: " );
for my $arg (@$args) {
if ( ref $arg eq 'ARRAY' ) {
push( @output, '[' . join(' ,', @$arg ) . ']' );
} else {
push ( @output, "'$arg'" );
}
}
return 0;
}
sub irc_001 {
my $sender = $_[SENDER];
my $poeirc = $sender->get_heap();
print "[kernel] Connected!\n";
print "[kernel] Ident with nickserv\n";
$poeirc->yield(privmsg => 'nickserv' => 'identify '.$cfg->param('nickserv') );
my @chans = split(/,/, $cfg->param('chans'));
foreach(@chans) {
$poeirc->yield( join => $_);
print "[kernel] Joined $_\n";
}
return;
}
sub irc_public {
my ($sender, $who, $where, $message) = @_[SENDER, ARG0 .. ARG2];
my @who = split(/!/, $who);
my $channel = $where->[0];
global_commands( $who[0], $who[1], $channel, $message );
}
sub irc_msg {
my ($sender, $who, $where, $message) = @_[SENDER, ARG0 .. ARG2];
my @who = split(/!/, $who);
global_commands( @who[0], @who[1], @who[0], $message );
foreach my $m (values %modules) {
eval {
if ( $m->can('on_private') ) {
$m->on_private($poeirc, $dbh, $message, @who[0]);
}
};
if ($@) {
module_panic($m, @who[0], $@);
}
}
}
sub irc_join {
my ($who, $channel) = @_[ ARG0 .. ARG1 ];
my @who = split(/!/, $who);
foreach my $m (values %modules) {
eval {
if ( $m->can('on_join') ) {
$m->on_join($poeirc, $dbh, @who[0], @who[1], $channel);
}
};
if ($@) {
module_panic($m, $channel, $@);
}
}
}
sub irc_part {
my ($who, $channel, $qmsg) = @_[ ARG0 .. ARG2 ];
my @who = split(/!/, $who);
foreach my $m (values %modules) {
eval {
if ( $m->can('on_part') ) {
$m->on_part($poeirc, $dbh, @who[0], @who[1], $channel, $qmsg);
}
};
if ($@) {
module_panic($m, $channel, $@);
}
}
}
sub irc_quit {
my ($who, $qmsg) = @_[ ARG0 .. ARG1 ];
my @who = split(/!/, $who);
foreach my $m (values %modules) {
eval {
if ( $m->can('on_quit') ) {
$m->on_quit($poeirc, $dbh, @who[0], @who[1], $qmsg);
}
};
if ($@) {
module_panic($m, 0, $@);
}
}
}
######################################################################
######################################################################
######################################################################
sub global_commands {
my ( $nick, $host, $channel, $message ) = @_;
eval {
## ADMIN ONLY COMMANDS
if (taloncommon->is_admin($dbh, $nick, $host)) {
if ( $message =~ /^!check/ ) {
if ($message =~ /^!check ([^ ]*)/ ) {
my $n = $1;
my $p = "talonplug/$1.pm";
my $m = "talonplug::$1";
if (-e $p) {
if ( check_module($n) eq 1 ) {
$poeirc->yield( privmsg => $channel => '>> '.$m.' is fine!' );
} else {
my @err = split(/\n/, $@);
$poeirc->yield( privmsg => $channel => '>> '.$_ ) foreach(@err);
}
} else {
$poeirc->yield( privmsg => $channel => '>> No such module');
}
} else {
$poeirc->yield( privmsg => $channel => '>> !check <module>');
}
}
if ( $message =~ /^!flush/ ) {
Module::Refresh->unload_module('talonplug::'.$_) foreach (keys %modules);
%modules = ();
$poeirc->yield( privmsg => $channel => '>> Flushed modules');
print "[modules] Flushed\n";
}
if ( $message =~ /^!reload/ ) {
Module::Refresh->unload_module('talonplug::'.$_) foreach (keys %modules);
%modules = ();
load_all_modules();
$poeirc->yield( privmsg => $channel => '>> Reloaded all modules');
print "[modules] Reloaded\n";
}
if ( $message =~ /^!refresh/ ) {
Module::Refresh->refresh;
$poeirc->yield( privmsg => $channel => '>> Refreshed');
print "[modules] Rehashed\n";
}
if ( $message =~ /^!load ([^ ]*)/ ) {
if (-e "talonplug/$1.pm") {
if (exists $modules{$1}) {
$poeirc->yield( privmsg => $channel => '>> '.$1.' is already loaded!' );
} else {
if ( check_module($1) eq 1 ) {
load 'talonplug::'.$1;
Module::Refresh->refresh_module('talonplug::'.$1);
$modules{$1} = "talonplug::$1"->new();
print '[modules] Loaded '.$1."\n";
$poeirc->yield( privmsg => $channel => '>> Loaded '.$1 );
} else {
$poeirc->yield( privmsg => $channel => '>> '.$1.' contains errors!' );
}
}
} else {
$poeirc->yield( privmsg => $channel => '>> '.$1.' doesn\'t exist!' );
}
}
if ( $message =~ /^!unload ([^ ]*)/ ) {
if (-e "talonplug/$1.pm") {
if (exists $modules{$1}) {
Module::Refresh->unload_module('talonplug::'.$1);
delete $modules{$1};
$poeirc->yield( privmsg => $channel => '>> Unloaded '.$1 );
print '[modules] Unloaded '.$1."\n";
} else {
$poeirc->yield( privmsg => $channel => '>> '.$1.' isn\'t loaded!' );
}
} else {
$poeirc->yield( privmsg => $channel => '>> '.$1.' doesn\'t exist!' );
}
}
if ( $message =~ /^!modules/ ) {
while ( my ($name, $plug) = each (%modules)) {
$poeirc->yield( privmsg => $channel => '>> '.$name.' - '.$plug->about() );
}
}
}
if ( $message =~ /^!help/ ) {
if ( $message =~ /^!help ([^ ]*)/ ) {
if (exists $modules{$1}) {
my @h = split(/\n/, $modules{$1}->help());
$poeirc->yield( privmsg => $channel => '>> '.$_ ) foreach (@h);
} else {
$poeirc->yield( privmsg => $channel => '>> No such module!' );
}
} else {
$poeirc->yield( privmsg => $channel => '>> !help <module>');
my $topics = '';
while ( my ($name, $plug) = each (%modules)) {
$topics = $topics.', '.$name;
}
$topics =~ s/^, //;
$poeirc->yield( privmsg => $channel => '>> Modules: '.$topics);
}
}
## END ADMIN ONLY COMMANDS
if ( $message =~ /^!about/ ) {
if ( $message =~ /^!about ([^ ]*)/ ) {
my $aboutmod = $1;
if (exists $modules{$aboutmod}) {
$poeirc->yield( privmsg => $channel => '>> '.$aboutmod.' - '.$modules{$aboutmod}->about() );
} else {
$poeirc->yield( privmsg => $channel => '>> No such module!' );
}
} else {
$poeirc->yield( privmsg => $channel => '>> Powered by Talon v0.6.');
$poeirc->yield( privmsg => $channel => '>> Written in Perl. Database managed with SQLite.');
$poeirc->yield( privmsg => $channel => '>> http://github.com/mindfuzz/talon');
}
}
# Proccess all modules.
foreach my $m (values %modules) {
eval {
if ( $m->can('on_public') ) {
$m->on_public($poeirc, $dbh, $message, $nick, $channel, $host);
}
};
if ($@) {
module_panic($m, $channel, $@);
}
}
};
if ($@) {
$poeirc->yield( privmsg => $channel => '>> An error occured!');
$poeirc->yield( privmsg => $channel => '>> '.$@);
print '[error] '.$@."\n";
}
return;
}
#########################################################################################
sub usage {
die <<EOH
Usage: $0 [options]
Options:
-h Show help
-c [cfgfile] Specify config file, default to default.conf
EOH
}