summaryrefslogtreecommitdiff
path: root/lib/Multi/IRC.pm
blob: 4909cd437d3ba350b8cc27639d509265d6e18e38 (plain)
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

#
#  Multi::IRC  -  HMX-12 Multi, the IRC bot
#

package Multi::IRC;

use strict;
use warnings;
use POE qw|
  Component::IRC::State
  Component::IRC::Plugin::Connector
  Component::IRC::Plugin::CTCP
  Component::IRC::Plugin::Logger
|;
use POE::Component::IRC::Common ':ALL';
use URI::Escape 'uri_escape_utf8';

use constant {
  USER => ARG0,
  DEST => ARG1,
  ARG  => ARG2,
  MASK => ARG3,

  # long subquery used in several places
  GETBOARDS => q{array_to_string(array(
      SELECT tb.type||COALESCE(':'||COALESCE(u.username, vr.title, pr.name), '')
      FROM threads_boards tb
      LEFT JOIN vn v ON tb.type = 'v' AND v.id = tb.iid
      LEFT JOIN vn_rev vr ON vr.id = v.latest
      LEFT JOIN producers p ON tb.type = 'p' AND p.id = tb.iid
      LEFT JOIN producers_rev pr ON pr.id = p.latest
      LEFT JOIN users u ON tb.type = 'u' AND u.id = tb.iid
      WHERE tb.tid = t.id
      ORDER BY tb.type, tb.iid
    ), ', ') AS boards},
};

my $irc;


sub spawn {
  my $p = shift;
  $irc = POE::Component::IRC::State->spawn(
    alias => 'circ',
    NoDNS => 1,
  );
  POE::Session->create(
    package_states => [
      $p => [qw|
        _start shutdown irc_001 irc_public irc_ctcp_action irc_msg command reply
        cmd_info cmd_list cmd_uptime cmd_uptime cmd_say cmd_me
        cmd_eval cmd_die cmd_post vndbid formatid
      |],
    ],
    heap => {
      nick => 'Multi_test'.$$,
      server => 'irc.synirc.net',
      ircname => 'VNDB.org Multi',
      channels => [ '#vndb' ],
      masters => [ 'yorhel!*@*' ],
      @_,
      log => {},
      privpers => {},
      notify => [],
      commands => {
        info     => 0,   # argument = authentication level/flags,
        list     => 0,   #   0: everyone,
        uptime   => 0,   #   1: only OPs in the first channel listed in @channels
        say      => 1|8, #   2: only users matching the mask in @masters
        me       => 1|8, #  |8: has to be addressed to the bot (e.g. 'Multi: eval' instead of '!eval')
        eval     => 2|8,
        die      => 2|8,
        post     => 2|8,
      },
    }
  );
}


sub _start {
  $_[KERNEL]->alias_set('irc');

  $irc->plugin_add(
    Logger => POE::Component::IRC::Plugin::Logger->new(
      Path => $VNDB::M{log_dir},
      Private => 0,
      Public => 1,
  ));
  $irc->plugin_add(
    Connector => POE::Component::IRC::Plugin::Connector->new()
  );
  $irc->plugin_add(
    CTCP => POE::Component::IRC::Plugin::CTCP->new(
      version => $_[HEAP]{ircname}.' v'.$VNDB::S{version},
      userinfo => $_[HEAP]{ircname},
  ));
  if($_[HEAP]{pass}) {
    require POE::Component::IRC::Plugin::NickServID;
    $irc->plugin_add(
      NickServID => POE::Component::IRC::Plugin::NickServID->new(
        Password => $_[HEAP]{pass}
    ))
  }
  if($_[HEAP]{console}) {
    require POE::Component::IRC::Plugin::Console;
    $irc->plugin_add(
      Console => POE::Component::IRC::Plugin::Console->new(
        bindport => 3030,
        password => $_[HEAP]{console}
    ))
  }

  $irc->yield(register => 'all');
  $irc->yield(connect => {
    Nick  => $_[HEAP]{nick},
    Username => 'u1',
    Ircname => $_[HEAP]{ircname},
    Server => $_[HEAP]{server},
  });

  $_[KERNEL]->sig(shutdown => 'shutdown');
}


sub shutdown {
  $irc->yield(shutdown => $_[ARG1]);
  $_[KERNEL]->alias_remove('irc');
}


sub irc_001 {
  $irc->yield(join => $_) for (@{$_[HEAP]{channels}});
  $_[KERNEL]->call(core => log => 'Connected to IRC');
}


sub irc_public { # mask, dest, msg
  return if $_[KERNEL]->call($_[SESSION] => command => @_[ARG0..$#_]);
  $_[KERNEL]->call($_[SESSION] => vndbid => $_[ARG1], $_[ARG2]);
}


sub irc_ctcp_action { # mask, dest, msg
  $_[KERNEL]->call($_[SESSION] => vndbid => $_[ARG1], $_[ARG2]);
}


sub irc_msg { # mask, dest, msg
  return if $_[KERNEL]->call($_[SESSION] => command => $_[ARG0], [scalar parse_user($_[ARG0])], $_[ARG2]);

  my $usr = parse_user($_[ARG0]);
  return if ($_[HEAP]{privpers}{$usr}||0) > time-300;
  $irc->yield(notice => $usr, 'I am not human, join #vndb or PM Yorhel if you need something.');
  $_[HEAP]{privpers}{$usr} = time;
}


sub command { # mask, dest, msg
  my($mask, $dest, $msg) = @_[ARG0..$#_];

  my $me = $irc->nick_name();
  my $addressed = $dest->[0] !~ /^#/ || $msg =~ s/^\s*\Q$me\E[:,;.!?~]?\s*//;
  return 0 if !$addressed && !($msg =~ s/^\s*!//);

  return 0 if $msg !~ /^([a-z]+)(?:\s+(.+))?$/;
  my($cmd, $arg) = ($1, $2);
  return 0 if !exists $_[HEAP]{commands}{$cmd} || ($_[HEAP]{commands}{$cmd} & 8) && !$addressed;

  my $usr = parse_user($mask);
  return $_[KERNEL]->yield(reply => $dest,
      $dest eq $_[HEAP]{channels}[0] ? 'Only OPs can do that!' : "Only $_[HEAP]{channel}[0] OPs can do that!", $usr) || 1
    if $_[HEAP]{commands}{$cmd} == 1 && !$irc->is_channel_operator($_[HEAP]{channels}[0], $usr);
  return $_[KERNEL]->yield(reply => $dest, 'You are not my master!', $usr) || 1
    if $_[HEAP]{commands}{$cmd} == 2 && !grep matches_mask($_, $mask), @{$_[HEAP]{masters}};

  return $_[KERNEL]->yield('cmd_'.$cmd, $usr, $dest, $arg, $mask) || 1;
}


# convenience function
sub reply { # target, msg [, mask/user]
  my $usr = $_[ARG0][0] =~ /^#/ && parse_user($_[ARG2]);
  $irc->yield($_[ARG0][0] =~ /^#/ ? 'privmsg' : 'notice', $_[ARG0], ($usr ? "$usr, " : '').$_[ARG1]);
}




#
#  I R C   C O M M A N D S
#


sub cmd_info {
  $_[KERNEL]->yield(reply => $_[DEST],
    'Hi! I am HMX-12 Multi '.$VNDB::S{version}.', the IRC bot of '.$VNDB::S{url}.'/, written by the great Yorhel!');
}


sub cmd_list {
  $_[KERNEL]->yield(reply => $_[DEST],
    $_[DEST][0] =~ /^#/ ? 'This is not a warez channel!' : 'I am not a warez bot!', $_[USER]);
}


sub cmd_uptime {
  my $age = sub {
    return '...down!?' if !$_[0];
    my $d = int $_[0] / 86400;
    $_[0] %= 86400;
    my $h = int $_[0] / 3600;
    $_[0] %= 3600;
    my $m = int $_[0] / 60;
    $_[0] %= 60;
    return sprintf '%s%02d:%02d:%02d', $d ? $d.' day'.($d>1?'s':'').', ' : '', $h, $m, int $_[0];
  };

  open my $R, '<', '/proc/uptime';
  my $server = <$R> =~ /^\s*([0-9]+)/ ? $1 : 0;
  close $R;
  my $multi = time - $^T;

  $_[KERNEL]->yield(reply => $_[DEST], sprintf 'Server uptime: %s -- mine: %s', $age->($server), $age->($multi));
}


sub cmd_say {
  my $chan = $_[ARG] =~ s/^(#[a-zA-Z0-9-_.]+) // ? $1 : $_[DEST];
  $irc->yield(privmsg => $chan, $_[ARG]);
}


sub cmd_me {
  my $chan = $_[ARG] =~ s/^(#[a-zA-Z0-9-_.]+) // ? $1 : $_[DEST];
  $irc->yield(ctcp => $chan, 'ACTION '.$_[ARG]);
}


sub cmd_eval {
  $_[KERNEL]->yield(reply => $_[DEST], 'eval: '.$_)
    for (split /\r?\n/, eval($_[ARG])||$@);
}


sub cmd_die {
  $irc->yield(ctcp => $_[DEST] => 'ACTION dies');
  $_[KERNEL]->signal(core => shutdown => "Killed on IRC by $_[USER]");
}


sub cmd_post {
  $_[KERNEL]->yield(reply => $_[DEST], $_[KERNEL]->post(split /\s+/, $_[ARG])
    ? 'Sent your message to the post office, it will be processed shortly!'
    : "Oh no! The post office wouldn't accept your message! Wrong destination address?", $_[USER]);
}




#
#  D B   I T E M   L I N K S
#


sub vndbid { # dest, msg
  my($dest, $msg) = @_[ARG0, ARG1];

  $_[HEAP]{log}{$_} < time-60 and delete $_[HEAP]{log}{$_}
    for (keys %{$_[HEAP]{log}});

  my @id; # [ type, id, ref ]
  for (split /[, ]/, $msg) {
    next if length > 15 or m{[a-z]{3,6}://}i; # weed out URLs and too long things
    push @id, /^(?:.*[^\w]|)([dvprt])([1-9][0-9]*)\.([1-9][0-9]*)(?:[^\w].*|)$/ ? [ $1, $2, $3 ] # x+.+
           :  /^(?:.*[^\w]|)([dvprtug])([1-9][0-9]*)(?:[^\w].*|)$/ ? [ $1, $2, 0 ] : ();         # x+
  }

  for (@id) {
    my($t, $id, $rev) = @$_;

    next if $_[HEAP]{log}{$t.$id.'.'.$rev};
    $_[HEAP]{log}{$t.$id.'.'.$rev} = time;

    # plain vn/user/producer/thread/tag/release
    $_[KERNEL]->post(pg => query => 'SELECT ?::text AS type, ?::integer AS id, '.(
      $t eq 'v' ? 'vr.title FROM vn_rev vr JOIN vn v ON v.latest = vr.id WHERE v.id = ?' :
      $t eq 'u' ? 'u.username AS title FROM users u WHERE u.id = ?' :
      $t eq 'p' ? 'pr.name AS title FROM producers_rev pr JOIN producers p ON p.latest = pr.id WHERE p.id = ?' :
      $t eq 't' ? 'title, '.GETBOARDS.' FROM threads t WHERE id = ?' :
      $t eq 'g' ? 'name AS title FROM tags WHERE id = ?' :
                  'rr.title FROM releases_rev rr JOIN releases r ON r.latest = rr.id WHERE r.id = ?'),
      [ $t, $id, $id ], 'formatid', $dest
    ) if !$rev && $t =~ /[vprtug]/;

    # edit/insert of vn/release/producer or discussion board post
    $_[KERNEL]->post(pg => query => 'SELECT ?::text AS type, ?::integer AS id, ?::integer AS rev, '.(
      $t eq 'v' ? 'vr.title, u.username, c.comments FROM changes c JOIN vn_rev vr ON c.id = vr.id JOIN users u ON u.id = c.requester WHERE vr.vid = ? AND c.rev = ?' :
      $t eq 'r' ? 'rr.title, u.username, c.comments FROM changes c JOIN releases_rev rr ON c.id = rr.id JOIN users u ON u.id = c.requester WHERE rr.rid = ? AND c.rev = ?' :
      $t eq 'p' ? 'pr.name AS title, u.username, c.comments FROM changes c JOIN producers_rev pr ON c.id = pr.id JOIN users u ON u.id = c.requester WHERE pr.pid = ? AND c.rev = ?' :
                  't.title, u.username, '.GETBOARDS.' FROM threads t JOIN threads_posts tp ON tp.tid = t.id JOIN users u ON u.id = tp.uid WHERE t.id = ? AND tp.num = ?'),
      [ $t, $id, $rev, $id, $rev], 'formatid', $dest
    ) if $rev && $t =~ /[vprt]/;

    # documentation page (need to parse the doc pages manually here)
    if($t eq 'd') {
      my $f = sprintf $VNDB::ROOT.'/data/docs/%d', $id;
      my($title, $sec, $sub) = (undef, 0);
      open my $F, '<', $f or next;
      while(<$F>) {
        chomp;
        $title = $1 if /^:TITLE:(.+)$/;
        $sub = $1 if $rev && /^:SUB:(.+)$/ && ++$sec == $rev;
      }
      close $F;
      next if $rev && !$sub;
      $_[KERNEL]->yield(formatid => 1, [{type => 'd', id => $id, title => $title, rev => $rev, section => $sub}], $dest);
    }
  }
}


# formats and posts database items listed in @res, where each item is a hashref with:
#   type      database item in [dvprtug]
#   id        database id
#   title     main name or title of the DB entry
#   rev       (optional) revision, post number or section number
#   username  (optional) relevant username
#   section   (optional, for d+.+) section title
#   boards    (optional) board titles the thread has been posted in
#   comments  (optional) edit summary
sub formatid {
  my($num, $res, $dest) = @_[ARG0..$#_];

  # only the types for which creation/edit announcements matter
  my %types = (
    v => 'visual novel',
    p => 'producer',
    r => 'release',
    g => 'tag',
    t => 'thread',
  );

  for (@$res) {
    my $id = $_->{type}.$_->{id} . ($_->{rev} ? '.'.$_->{rev} : '');

    # (always) [x+.+]
    my @msg = (
      BOLD.RED.'['.NORMAL.BOLD.$id.RED.']'.NORMAL
    );

    # (only if username key is present) Edit of / New item / reply to / whatever
    push @msg, RED.(
      ($_->{rev}||1) == 1 ? 'New '.$types{$_->{type}} :
      $_->{type} eq 't' ? 'Reply to' : 'Edit of'
    ).NORMAL if $_->{username};

    # (always) main title
    push @msg, $_->{title};

    # (only if boards key is present) Posted in [boards]
    push @msg, RED.'Posted in'.NORMAL.' '.$_->{boards} if $_->{boards};

    # (only if username key is present) By [username]
    push @msg, RED.'By'.NORMAL.' '.$_->{username} if $_->{username};

    # (only if comments key is present) Summary:
    push @msg, RED.'Summary:'.NORMAL.' '.(
      length $_->{comments} > 40 ? substr($_->{comments}, 0, 37).'...' : $_->{comments}
    ) if defined $_->{comments};

    # (for d+.+) -> section title
    push @msg, RED.'->'.NORMAL.' '.$_->{section} if $_->{section};

    # (always) @ URL
    push @msg, RED.'@ '.NORMAL.LIGHT_GREY.$VNDB::S{url}.'/'.$id.NORMAL;

    # now post it
    $_[KERNEL]->yield(reply => $dest, join ' ',  @msg);
  }
}


1;


__END__


sub cmd_vn { # $arg = search string
  $_[ARG] =~ s/%//g;
  return $_[KERNEL]->post(circ => privmsg => $_[DEST], 'You forgot the search query, idiot~~!.') if !$_[ARG];

  my $q = $Multi::SQL->prepare(q|
    SELECT v.id
    FROM vn v
    JOIN vn_rev vr ON vr.id = v.latest
    WHERE vr.title ILIKE $1
       OR vr.alias ILIKE $1
       OR v.id IN(
         SELECT rv.vid
         FROM releases r
         JOIN releases_rev rr ON rr.id = r.latest
         JOIN releases_vn rv ON rv.rid = rr.id
         WHERE rr.title ILIKE $1
            OR rr.original ILIKE $1
       )
    ORDER BY vr.id
    LIMIT 6|);
  $q->execute('%'.$_[ARG].'%');

  my $res = $q->fetchall_arrayref([]);
  return $_[KERNEL]->post(circ => privmsg => $_[DEST],
    sprintf 'No results found for %s', $_[ARG]) if !@$res;
  return $_[KERNEL]->post(circ => privmsg => $_[DEST],
    sprintf 'Too many results found, see %s/v/search?q=%s',
      $VNDB::S{url}, uri_escape_utf8($_[ARG])) if @$res > 5;
  $_[KERNEL]->yield(vndbid => $_[DEST], join(' ', map 'v'.$_->[0], @$res), 1);
}


sub cmd_notifications { # $arg = '' or 'on' or 'off'
  return unless &mymaster;
  if($_[ARG] =~ /^on$/i) {
    push @{$_[HEAP]{notify}}, $_[DEST] if !grep $_ eq $_[DEST], @{$_[HEAP]{notify}};
    $_[KERNEL]->post(circ => privmsg => $_[DEST], 'Notifications enabled.');
  } elsif($_[ARG] =~ /^off$/i) {
    $_[HEAP]{notify} = [ grep $_ ne $_[DEST], @{$_[HEAP]{notify}} ];
    $_[KERNEL]->post(circ => privmsg => $_[DEST], 'Notifications disabled.');
  } else {
    $_[KERNEL]->post(circ => privmsg => $_[DEST], sprintf 'Notifications %s, type !notifications %s to %s.',
      (grep $_ eq $_[DEST], @{$_[HEAP]{notify}}) ? ('enabled', 'off', 'disable') : ('disabled', 'on', 'enable'));
  }
}