OSDN Git Service

split DB access class
[mubot4fb/mubot4fb.git] / mubot4fb.pl
1 #!/usr/bin/perl
2 #
3 # Copyright (c) 2012 ISHIKAWA Mutsumi <ishikawa@hanzubon.jp>
4 # This program is covered by the GNU General Public License 2
5 #
6 package Mubot4FB::FB;
7 use strict;
8 use utf8;
9
10 use Facebook::Graph;
11 use LWP::UserAgent;
12 use HTTP::Request::Common;
13
14 use Data::Dumper;
15
16 sub new {
17         my $proto = shift;
18         my $class = ref $proto || $proto;
19         my $self = {cfg => shift};
20         bless $self, $class;
21
22         $self->init();
23         return $self;
24 }
25
26 sub init {
27         my ($me) = @_;
28         my $fb = Facebook::Graph->new(app_id   => $me->{cfg}->{fb_app_id},
29                                       secret   => $me->{cfg}->{fb_app_secret},
30                                       postback => $me->{cfg}->{fb_postback_url});
31
32         my $res_token = $fb->request_access_token($me->{cfg}->{fb_access_code});
33         die 'token get error' if (!defined $res_token || !$res_token->response->is_success);
34
35         my $acts = $fb->fetch('me/accounts');
36         die 'can not get account list' if(!defined $acts || !$acts);
37
38         my $page_access_token = '';
39         foreach my $d (@{$acts->{data}}) {
40                 if ($d->{id} eq $me->{cfg}->{fb_page_id}) {
41                         $page_access_token = $d->{'access_token'};
42                 }
43         }
44         die 'can not get access tokenfor page_id=' . $me->{cfg}->{fb_page_id} if ($page_access_token eq '');
45
46         return $me->{fbo} = Facebook::Graph->new(access_token => $page_access_token);
47 }
48
49 sub publish {
50         my ($me, $text, $uri) = @_;
51
52         return $me->{fbo}->add_post($me->{cfg}->{fb_page_id})
53             ->set_message($text)
54             ->set_link_uri($uri)
55             ->publish()
56             ->as_hashref();
57 }
58
59 sub post_uri {
60         my ($me, $post_id) = @_;
61
62         return $me->{cfg}->{fb_page_url} . 'posts/' . $post_id;
63 }
64
65 sub remove {
66         my ($me, $post_id) = @_;
67
68         my $uri = $me->{fbo}->query->find($me->{cfg}->{fb_page_id}.'_'.$post_id)->uri_as_string;
69         my $req = HTTP::Request::Common::DELETE($uri);
70         warn Dumper($req) if ($me->{cfg}->{debug});
71         my $resp;
72         $resp = LWP::UserAgent->new->request($req);
73         warn Dumper($resp) if ($me->{cfg}->{debug});
74         if ($resp->is_success && $resp->code == 200 && $resp->content eq 'true') {
75                 return 1;
76         } else {
77                 warn 'DELETE ERROR: http code: ' . $resp->code() . ' , http content: ' . $resp->content;
78                 return 0;
79         }
80 }
81
82 1;
83
84 package Mubot4FB::FB;
85 use strict;
86 use utf8;
87
88 use DBI qw/:sql_types/;
89
90 use Data::Dumper;
91
92 sub new {
93         my $proto = shift;
94         my $class = ref $proto || $proto;
95         my $self = {cfg => shift};
96         bless $self, $class;
97
98         $self->init();
99         return $self;
100 }
101
102 sub init {
103         my ($me) = @_;
104         return $me->{dbh} = DBI->connect('DBI:mysql:'.$me->{cfg}->{database}, $me->{cfg}->{db_user}, $me->{cfg}->{db_pass},{mysql_enable_utf8 => 1}) || die $DBI::errstr;
105 }
106
107 sub check_dup {
108         my ($me, $db_args) = @_;
109         my $sth = $me->{dbh}->prepare('select * from posts where uri = ? order by post_time desc limit 1');
110         my $rv = $sth->execute($db_args->{uri});
111         my $ret = $sth->fetchrow_hashref;
112
113         $sth->finish;
114         return $ret;
115 }
116
117 sub add {
118         my ($me, $db_args) = @_;
119
120         my ($scheme, $path) = split(/:\/\//, $db_args->{uri});
121         my $sth = $me->{dbh}->prepare("insert into posts (submitter, fb_post_id, uri, prefix, comment, scheme, path, post_time) values (?, ?, ?, ?, ?, ?, ?, ?)");
122         $sth->bind_param(1, $db_args->{submitter}, SQL_VARCHAR);
123         $sth->bind_param(2, $db_args->{fb_post_id}, SQL_BIGINT);
124         $sth->bind_param(3, $db_args->{uri}, SQL_VARCHAR);
125         $sth->bind_param(4, $db_args->{prefix}, SQL_VARCHAR);
126         $sth->bind_param(5, $db_args->{comment}, SQL_VARCHAR);
127         $sth->bind_param(6, $scheme, SQL_VARCHAR);
128         $sth->bind_param(7, $path, SQL_VARCHAR);
129         $sth->bind_param(8, time, SQL_BIGINT);
130         my $rv = $sth->execute();
131         $sth->finish;
132
133         return $rv;
134 }
135
136 sub remove {
137         my ($me, $db_args) = @_;
138         $db_args->{submitter_type} ||= 1;
139
140         my $sth = $me->{dbh}->prepare("delete from posts where fb_post_id = ? and submitter = ? and submitter_type = ?");
141
142         $sth->bind_param(1, $db_args->{fb_post_id}, SQL_BIGINT);
143         $sth->bind_param(2, $db_args->{submitter}, SQL_VARCHAR);
144         $sth->bind_param(3, $db_args->{submitter_type}, SQL_INTEGER);
145         my $rv = $sth->execute();
146         my $ret = $rv ? $sth->rows : 0;
147
148         $sth->finish;
149
150         return $ret;
151 }
152
153 sub search_by_word {
154         my ($me, $db_args) = @_;
155
156         my $column = $db_args->{word} =~ /:\/\// ? 'uri' : 'path';
157         my $w = '%' . $db_args->{word} . '%';
158         my $sth = $me->{dbh}->prepare('select * from posts where prefix like ? or '.$column.' like ? or comment like ? order by post_time desc limit 1000');
159         $sth->bind_param(1, $w, SQL_VARCHAR);
160         $sth->bind_param(2, $w, SQL_VARCHAR);
161         $sth->bind_param(3, $w, SQL_VARCHAR);
162         $sth->execute();
163
164         my $ret = $sth->fetchall_arrayref({});
165         $sth->finish;
166
167         return $ret;
168 }
169
170 sub search_lastpost_by_submitter {
171         my ($me, $db_args) = @_;
172
173         my $sth = $me->{dbh}->prepare('select * from posts where submitter = ? order by post_time desc limit 1');
174         $sth->bind_param(1, $db_args->{who}, SQL_VARCHAR);
175         $sth->execute();
176
177         my $ret = $sth->fetchrow_hashref();
178         $sth->finish;
179
180         return $ret;
181 }
182
183 1;
184 package Mubot4FB;
185
186 use strict;
187 use utf8;
188
189 use base 'Bot::BasicBot';
190 use DBI qw/:sql_types/;
191 use POSIX 'strftime';
192
193 use Data::Dumper;
194
195 my $mu_re = qr/^([^\s]+)\s+((?:https?|ftps?):\/\/[^\s]+)\s+(.+)$/i;
196 my $irc_type = 1;
197
198 sub misc_init {
199         my ($me) = @_;
200
201         $me->{last_search} = {};
202 }
203
204 sub init {
205         my ($me) = @_;
206         $me->{fb} = Mubot4FB::FB->new($me->{cfg});
207         $me->{db} = Mubot4FB::DB->new($me->{cfg});
208 }
209
210 sub _format_submit {
211         my ($me, $e) = @_;
212
213         return $e->{submitter}.'が『'.$e->{prefix}.' '.$e->{uri}.' '.$e->{comment}.'』と'.strftime('%Y-%m-%d %H:%M:%S', localtime($e->{post_time}));
214 }
215
216 sub _response {
217         my ($me, $args, $msg) = @_;
218
219         $me->say(channel => $args->{channel},
220                  body => $msg);
221 }
222
223 sub _add {
224         my ($me, $args)  =@_;
225         my ($resp, $resp_msg);
226
227         if ($args->{body} =~ /$mu_re/) {
228                 my $prefix = $1;
229                 my $uri = $2;
230                 my $comment = $3;
231                 my $text = $args->{who} . '曰く、'.$prefix.' '.$comment;
232
233                 if (my $res = $me->{db}->check_dup({uri =>$uri})) {
234                         if ($res->{post_time} < time() - 7 * 24 * 60 * 60) {
235                                 $resp_msg = 'だいぶ前 '.$me->_format_submit($res).'にいってたにゃー '.$me->{fb}->post_uri($res->{fb_post_id});
236                         } else {
237                                 $resp_msg = '既に '.$me->_format_submit($res).'に言ってますよ? '.$me->{fb}->post_uri($res->{fb_post_id});
238                         }
239                 } else {
240                         my $post_ok = 1;
241                         eval{$resp = $me->{fb}->publish($text, $uri)};
242                         if ($@) {
243                                 $me->{fb}->init();
244                                 eval{$resp = $me->{fb}->publish($text, $uri)};
245                                 $post_ok = 0 if ($@);
246                         }
247
248                         if ($post_ok) {
249                                 my (undef, $post_id) = split(/_/, $resp->{id});
250                                 $me->{db}->add({submitter => $args->{who},
251                                                 fb_post_id => $post_id,
252                                                 uri => $uri,
253                                                 prefix => $prefix,
254                                                 comment => $comment});
255                                 $resp_msg = $args->{who} . ': うい  '.$me->{fb}->post_uri($post_id).' で登録';
256                         } else {
257                                 $resp_msg = 'can not post to facebook';
258                         }
259                 }
260                 return $resp_msg;
261         }
262         return 0;
263 }
264
265 sub _delete_prev {
266         my ($me, $args) = @_;
267
268         my $last_post = $me->{db}->search_lastpost_by_submitter({who => $args->{who}});
269
270         if (!defined $last_post) {
271                 return $args->{who}.': いまのっていつの? というか ないし';
272         } elsif ($last_post->{post_time} < time() - 3600) {
273                 return $args->{who}.': いまのっていつの? 最後のはこれだけど古いんだにゃ ' . $me->{fb}->post_uri($last_post->{fb_post_id});
274         } else {
275                 return $me->_delete($args, $last_post->{'fb_post_id'});
276         }
277 }
278
279 sub _delete {
280         my ($me, $args, $post_id)  =@_;
281         my ($resp_msg, $resp);
282
283         $me->{dbh}->begin_work;
284         if ($resp = $me->{db}->remove({fb_post_id => $post_id, submitter => $args->{who}})) {
285                 # fb 側のエントリを削除しないといけない
286                 if ($me->{fb}->remove($post_id)) {
287                         $me->{dbh}->commit;
288                         $resp_msg = $args->{who} . ': 削除しました ' . $me->{fb}->post_uri($post_id);
289                 } else {
290                         $resp_msg = $args->{who} . ': 削除に失敗しましたよ? ' . $me->{fb}->post_uri($post_id);
291                         $me->{dbh}->rollback;
292                 }
293         } else {
294                 $resp_msg = $args->{who} . ': そんな投稿ないよ? ' . $me->{fb}->post_uri($post_id);
295                 $me->{dbh}->rollback;
296         }
297         return $resp_msg;
298 }
299
300 sub _search_start {
301         my ($me, $args)  = @_;
302
303         if ($args->{body} =~ /^ふみくん\s+(.+)\?\s*$/) {
304                 $me->{last_search}->{$args->{who}} = undef;
305                 $me->{last_search}->{$args->{who}} = $me->{db}->search_by_word({word => $1});
306                 return $me->_search_next($args);
307         }
308 }
309
310 sub _search_next {
311         my ($me, $args)  = @_;
312
313         my $resp_msg = 'ないっす';
314         if (defined $me->{last_search}->{$args->{who}}) {
315                 my $ent = pop($me->{last_search}->{$args->{who}});
316                 if ($ent) {
317                         my $count = @{$me->{last_search}->{$args->{who}}};
318                         if ($count) {
319                         }
320                         $resp_msg = $args->{who} . ': ' . $me->_format_submit($ent).'に言ってた '.($count ? '[ほか'.$count.'件] ' : '[ほかにはもうないよ] ').$me->{fb}->post_uri($ent->{fb_post_id});
321                 }
322         }
323         return $resp_msg;
324 }
325
326 sub _not_yet {
327         return 'まだ実装してないです';
328 }
329
330 sub said {
331         my ($me, $args) = @_;
332         my $resp_msg;
333
334         if ($args->{body} =~ /$mu_re/) {
335                 $resp_msg = $me->_add($args) unless ($1 eq 'deb');
336         } elsif ($args->{body} =~ /^ふみくん\s+(.+)\s*$/) {
337                 my $cmd = $1;
338                 if ($cmd eq 'いまのなし') {
339                         $resp_msg = $me->_delete_prev($args);
340                 } elsif ($cmd =~ /削除\s+(?:$me->{cfg}->{fb_page_url}posts\/)?([0-9]+)$/) {
341                         $resp_msg = $me->_delete($args, $1);
342                 } elsif ($cmd =~ /\?$/) {
343                         $resp_msg = $me->_search_start($args);
344                 } elsif ($cmd =~ /つぎ/) {
345                         $resp_msg = $me->_search_next($args);
346                 }
347         }
348
349         $me->_response($args, $resp_msg) if ($resp_msg);
350 }
351
352 package main;
353 use strict;
354 use utf8;
355
356 use Config::Any;
357 use Hash::Merge::Simple;
358 use Data::Recursive::Encode;
359
360 use Data::Dumper;
361
362 my $config_name = $ARGV[0] || 'not_found';
363
364 my $cfg = {};
365 my $config_path = ['/etc/mubot4fb/'.$config_name,
366                    $ENV{HOME} . '/.mubot4fb/'. $config_name,
367                    $ENV{PWD} . '/mubot4fb_' . $config_name];
368
369 my $c = Config::Any->load_stems({stems => $config_path,  use_ext => 1, flatten_to_hash => 1});
370 foreach my $i (keys %$c) {
371         $cfg = Hash::Merge::Simple->merge($cfg, $c->{$i});
372 }
373 die 'missing config file' unless (keys %$cfg);
374
375 die 'missing some config parameters should be defined (irc_server, fb_app_id, fb_app_secret, fb_access_code, fb_page_id fb_postback_url)'
376   if (!defined $cfg->{'irc_server'}
377       || !defined $cfg->{'fb_app_id'}
378       || !defined $cfg->{'fb_app_secret'}
379       || !defined $cfg->{'fb_access_code'}
380       || !defined $cfg->{'fb_page_id'}
381       || !defined $cfg->{'fb_postback_url'}
382       || !defined $cfg->{'db_user'}
383       || !defined $cfg->{'db_pass'}
384     );
385 $cfg = Data::Recursive::Encode->decode('utf8', $cfg);
386
387 $cfg->{irc_port} ||= 6667;
388 $cfg->{irc_channels} ||= ['#mubot4fb'];
389 $cfg->{irc_nick} ||= 'mubot4fb';
390 $cfg->{irc_name}||= $cfg->{irc_nick};
391 $cfg->{irc_charset} ||= 'utf8';
392 $cfg->{database} ||= 'mubot4fb';
393 $cfg->{debug} ||= 0;
394
395 my $bot = Mubot4FB->new(server => $cfg->{'irc_server'},
396                         port => $cfg->{'irc_port'},
397                         channels => $cfg->{'irc_channels'},
398                         nick => $cfg->{'irc_nick'},
399                         username => $cfg->{'irc_name'},
400                         name => $cfg->{'irc_name'},
401                         charset => $cfg->{'irc_charset'},
402                         cfg => $cfg)->run();
403
404 1;