OSDN Git Service

95a3dec2db87877f26aa86fa1c12935e955767a1
[rec10/rec10-git.git] / rectool / trunk / rectool.pl
1 #!/usr/bin/perl
2 # -d:SmallProf
3 #use Perl6::Slurp;
4 #use XML::Simple;
5 #use CGI;
6 #use CGI::Lite;
7 #use Date::Manip;
8 #Date_Init("TZ=JST","ConvTZ=JST");
9 #use SVG;
10 #use KCatch;
11 use warnings;
12 use utf8;
13 use Algorithm::Diff qw(LCS);
14 use Archive::Zip;
15 use CGI;
16 use CGI::Carp qw( fatalsToBrowser warningsToBrowser );
17 use Config::Simple;
18 use Data::Dumper::Concise;
19 use Date::Simple;
20 use DateTime;
21 use DBI;
22 use Encode;
23 use File::Slurp;
24 use List::Compare;
25 use List::Util;
26 use MIME::Base64;
27 use Sort::Naturally;
28 use SVG;
29 use Time::Piece;
30 use Time::Seconds;
31 use Time::HiRes;
32 use Tie::IxHash;
33 use XML::Atom::Feed;
34 use XML::Atom::Entry;
35 use XML::Generator::DBI;
36 use XML::SAX::Writer;
37 #%DB::packages = ( 'main' => 1 );
38
39
40 ################ バージョン定義 ################
41
42
43 my $rectool_version = 102;
44
45
46 ################ 初期化ここから ################
47
48
49 my $tz = DateTime::TimeZone->new( name => 'local' );
50 my $hires = Time::HiRes::time();
51
52 my $cfg = new Config::Simple;
53 if ( -e 'rec10.conf' ) {
54         $cfg->read( 'rec10.conf' );
55 }
56 elsif ( -e '/etc/rec10.conf' ) {
57         $cfg->read( '/etc/rec10.conf' );
58 }
59 else { 
60         die 'rec10.confが見つかりません。';
61 }
62
63 my $sql = $cfg->param( 'db.db' );
64
65 if ( $sql eq 'MySQL' ) {
66         my $name = $cfg->param( 'db.mysql_dbname' );
67         my $host = $cfg->param( 'db.mysql_host' );
68         my $port = $cfg->param( 'db.mysql_port' );
69         my $user = $cfg->param( 'db.mysql_user' );
70         my $pass = $cfg->param( 'db.mysql_passwd' );
71         $dbh = DBI->connect("dbi:mysql:$name:$host:$port", $user, $pass, {
72                 AutoCommit => 1,
73                 RaiseError => 1,
74                 mysql_enable_utf8 => 1, # only availavle for MySQL
75         });
76         $dbh->do( 'SET NAMES utf8' );
77 }
78
79 my $rec10_version = eval {
80         $dbh->selectrow_array( "SELECT version FROM in_status " );
81 };
82
83 my $HTML;
84
85 $HTTP_HEADER = "Content-Type: text/html\n\n";
86 $HTML .= <<EOM;
87 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
88 <html lang="ja">
89 <head>
90 <title>Rec10%HTML_TITLE_OPT%</title>
91 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
92 <meta http-equiv="Content-Script-Type" content="text/javascript">
93 <meta http-equiv="Content-Style-Type" content="text/css">
94 <meta name="robots" content="noindex,nofollow,noarchive">
95 <link rev="made" href="Rea10">
96 <link rel="alternate" type="application/atom+xml" title= "Rec10 Atom Feed" href="./rectool.pl?mode=atom">
97 %REFRESH%
98 %SCRIPT%
99 %CSS%
100 </head>
101 <body>
102 %HTML_HEADER%
103 EOM
104
105 my ( $user, $pass, $auth );
106 ( $user, $pass ) = eval {
107         $dbh->selectrow_array( "SELECT webuser, webpass FROM in_settings " );
108 };
109
110 if ( $user and $pass ) {
111         if ( $ENV{'HTTP_AUTHORIZATION'} ) {
112                 my ( $base64 ) = $ENV{'HTTP_AUTHORIZATION'} =~ /Basic\s(.*)/;
113                 if ( $base64 eq encode_base64( "$user:$pass" ) ) {
114                         $auth = 1;
115                 }
116                 else {
117                         $auth = 0;
118                 }
119         }
120         else {
121                 $auth = 0;
122         }
123 }
124 else {
125         $auth = 1;
126 }
127
128 if ( !$auth ) {
129         my ( $base64 ) = $ENV{'REMOTE_USER'} =~ /Basic (.*)/;
130         $HTTP_HEADER = qq {Status: 401 Authorization Required\nWWW-Authenticate: Basic realm="Protected Rec10 $ENV{'HTTP_AUTHORIZATION'}"\n} . $HTTP_HEADER;
131         goto end;
132 }
133
134 if ( $rec10_version != $rectool_version ) {
135         $HTML .= qq {<div style="font-size: 200%; font-weight: bold; color: red">\n};
136
137         if ( $rec10_version > $rectool_version ) {
138                 $HTML .= qq {Rec10本体のバージョンが新しいため、実行できません。<br>\n};
139                 $HTML .= qq {rectoolのバージョンアップを行ってください。<br>\n};
140         }
141
142         if ( $rec10_version < $rectool_version ) {
143                 $HTML .= qq {Rec10本体のバージョンが古いため、実行できません。<br>\n};
144                 $HTML .= qq {Rec10のバージョンアップを行ってください。<br>\n};
145         }
146
147         $HTML .= qq {Rec10のバージョンは$rec10_version 、rectoolのバージョンは$rectool_version です。<br>\n};
148         $HTML .= qq {<a href="http://sourceforge.jp/projects/rec10/">公式ページ</a>\n};
149         goto end;
150 }
151
152 $q = new CGI;
153 %params = $q->Vars;
154 $mode = $params{ 'mode' };
155 $mode_sub = $params{ 'mode_sub' };
156
157 ################ %chtxt_chnameの準備 ################
158
159 my %chtxt_chname;
160 my %chtxt_0_chname;
161 tie %chtxt_0_chname, 'Tie::IxHash';
162
163 my $ary_ref = $dbh->selectall_arrayref(
164         "SELECT chtxt, chname, ch, bctype FROM epg_ch
165         WHERE visible = 1
166         AND chname != ''
167         ORDER BY chtxt"
168 );
169
170 %chtxt_chname = map { $_->[0], $_->[1] } @{$ary_ref};
171
172 # te: 地上波
173 # bc: BS、CS
174 my @te_ary = grep $_->[0]=~ /^\d/, @{$ary_ref};
175 my @bc_ary = grep $_->[0]!~ /^\d/, @{$ary_ref};
176
177 # teの操作(まとめる)
178 foreach my $line ( @te_ary ) {
179         # te xx_yyyy(chtxt) -> xx(ch)
180         if ( $line->[3] =~ /te/ ) {
181                 push @{ $chtxt_0_chname{        $line->[2] . '_0'} }, $line->[1];
182         }
183         else {
184                 push @{ $chtxt_0_chname{'BS_' . $line->[2]       } }, $line->[1];
185         }
186 }
187 foreach my $key ( keys %chtxt_0_chname ) {
188         my @chname = @{ $chtxt_0_chname{$key} };
189         if ( @chname >= 2 ) {
190                 # 2つ以上ある場合
191                 my @tmp = map { my @ary = split //, $_; \@ary } @chname;
192                 # 1つ目と2つ目のみ比較
193                 # FIXME: すべてを比較するべき
194                 $chtxt_0_chname{$key} = join '', LCS( $tmp[0], $tmp[1] );
195         }
196         else {
197                 # 1つしかない場合
198                 $chtxt_0_chname{$key} = $chname[0];
199         }
200 }
201
202 # bs/csの操作(そのまま)
203 foreach my $line ( @bc_ary ) {
204         $chtxt_0_chname{$line->[0]} = $line->[1];
205 }
206 undef $ary_ref;
207
208
209 ################ 定数宣言 ################
210
211
212 tie %type, 'Tie::IxHash';
213 %type = (
214         'search_everyday'          => '隔日検索',
215         'search_today'             => '当日検索',
216         'reserve_flexible'         => '浮動予約',
217         'reserve_fixed'            => '確定予約',
218
219         'reserve_running'          => '録画途中',
220
221         'convert_b25_ts'           => '解読予約',
222         'convert_b25_ts_running'   => '解読途中',
223         'convert_b25_ts_miss'      => '解読失敗',
224
225         'convert_ts_mp4'           => '縁故予約',
226         'convert_ts_mp4_running'   => '縁故於鯖',
227         'convert_ts_mp4_network'   => '縁故於網',
228         'convert_ts_mp4_finished'  => '縁故完了',
229
230         'convert_avi_mkv'          => '変換旧露',
231         'convert_avi_mp4'          => '変換旧四',
232         'convert_mkv_mp4'          => '変換露四',
233         'convert_mkv_mp4_runnings' => '換途露四',
234
235         'auto_suggest_dec'         => '予測解読',
236         'auto_suggest_enc'         => '予測縁故',
237         'auto_suggest_avi2fp'      => '予測旧四',
238         'auto_suggest_ap2fp'       => '予測露四',
239
240         'move_end'                 => '移動完了',
241 );
242
243 %type_suggest = (
244         'auto_suggest_dec'    => 'convert_b25_ts',
245         'auto_suggest_enc'    => 'convert_ts_mp4',
246         'auto_suggest_avi2fp' => 'convert_avi_mkv',
247         'auto_suggest_ap2fp'  => 'convert_mp4_mkv',
248 );
249
250 %color = (
251         'search_everyday'        => '#8B008B',
252         'search_today'           => '#8B008B',
253         'reserve_flexible'       => '#4169E1',
254         'reserve_fixed'          => '#4169E1',
255         'reserve_running'        => '#FF8C00',
256         'convert_b25_ts'         => '#CD5C5C',
257         'convert_b25_ts_running' => '#DC143C',
258         'convert_ts_mp4'         => '#32CD32',
259         'convert_ts_mp4_running' => '#2E8B57',
260         'convert_ts_mp4_network' => '#808000',
261
262         'other'                  => '#A0A0A0',
263 );
264
265 $type_user_made = "( 'search_everyday', 'search_today', 'reserve_flexible', 'reserve_fixed', 'reserve_running' )";
266
267 tie %category, 'Tie::IxHash';
268 %category = (
269         'news'        => { name => 'ニュース・報道'          , color => '#ff0000' }, 
270         'sports'      => { name => 'スポーツ'                , color => '#ff8000' }, 
271         'information' => { name => '情報'                    , color => '#ffff00' }, 
272         'drama'       => { name => 'ドラマ'                  , color => '#80ff00' }, 
273         'music'       => { name => '音楽'                    , color => '#00ff00' }, 
274         'variety'     => { name => 'バラエティ'              , color => '#00ff80' }, 
275         'cinema'      => { name => '映画'                    , color => '#00ffff' }, 
276         'anime'       => { name => 'アニメ・特撮'            , color => '#0080ff' }, 
277         'documentary' => { name => 'ドキュメンタリー・教養'  , color => '#0000ff' }, 
278         'stage'       => { name => '演劇'                    , color => '#8000ff' }, 
279         'hobby'       => { name => '趣味・実用'              , color => '#ff00ff' }, 
280         'etc'         => { name => 'その他'                  , color => '#ff0080' }, 
281 );
282
283 ################ 初期化ここまで ################
284
285
286 ################ mode=schedule ################
287
288 if ( $mode eq 'schedule' ) {
289
290         $HTML =~ s/%HTML_TITLE_OPT%/ - Schedule Viewer/;
291         #$HTML =~ s|%REFRESH%|<meta http-equiv="refresh" content="300">|;
292         $css = <<EOM;
293                 <style type="text/css">
294                 td {
295                         white-space: nowrap;
296                 }
297                 </style>
298 EOM
299         $css =~ s/^\t{2}//gm;
300         $HTML =~ s/%CSS%/$css/;
301
302         my $order = $params{ 'order' };
303         my $extra = $params{ 'extra' };
304         if ( $order ne 'id' ) {
305                 $order = 'btime';
306         }
307         $reverse_extra = $extra            ? '' : '&amp;extra=1';
308         $forward_order = $order eq 'btime' ? '' : '&amp;order=id';
309
310         my $ary_ref = $dbh->selectall_arrayref(
311                 "SELECT id, type, timeline.chtxt, epg_ch.chname, title, btime, etime, opt, deltaday, deltatime, 
312                 epgtitle, epgbtime, epgetime, epgexp, epgduplicate, epgchange, counter 
313                 FROM timeline 
314                 LEFT OUTER JOIN epg_ch ON timeline.chtxt = epg_ch.chtxt 
315                 ORDER BY $order"
316                 , {Slice=>{}});
317
318         $HTML .= qq {<div style="font-size: 80%; float: left">\n};
319         $HTML .= qq {<form method="get" action="rectool.pl">\n};
320         $HTML .= qq {<div>\n};
321         $HTML .= qq {<input type="hidden" name="mode" value="change">\n};
322         $HTML .= qq {<table summary="rectimetable" border=1 cellspacing=0>\n<tr>\n};
323         $HTML .= qq {<th><a href="rectool.pl?mode=schedule$forward_order$reverse_extra">■</a></th>\n};
324         $HTML .= qq {<th><a href="rectool.pl?mode=schedule&amp;order=id">ID</a></th>\n};
325         $HTML .= qq {<th>タイプ</th>\n};
326         $HTML .= qq {<th>チャンネル</th>\n};
327         $HTML .= qq {<th>タイトル</th>\n};
328         $HTML .= qq {<th><a href="rectool.pl?mode=schedule">開始時刻</a></th>\n};
329         $HTML .= qq {<th>終了時刻</th>\n};
330         $HTML .= qq {<th>録画時間</th>\n};
331         $HTML .= qq {<th>オプション</th>\n};
332         $HTML .= qq {<th>dd</th>\n};
333         $HTML .= qq {<th>dt</th>\n};
334         $HTML .= qq {<th>残り</th>\n};
335         $HTML .= qq {</tr>\n};
336         foreach my $line ( @{ $ary_ref } ) {
337
338                 $type = $type{$line->{type}} || $line->{type};
339                 if    ( $line->{type} =~ /^search/ ) {
340                         $type = qq {<span style="color: #8B008B">$type</span>};
341                         $line->{deltaday} = qq {<span style="color: #FF0000">空</span>} if ( !$line->{deltaday} && $line->{type} eq 'search_everyday' );
342                         $line->{deltatime} = qq {<span style="color: #FF0000">空</span>} if ( !$line->{deltatime} );
343                 }
344                 else {
345                         my $color = $color{$line->{type}} ? $color{$line->{type}} : $color{'other'};
346                         $type = qq {<span style="color: $color">$type</span>};
347                 }
348                 # 地上波の場合、xx_yyyをxx_0に置換する
349                 ( $line->{chtxt_0} = $line->{chtxt} ) =~ s/(\d+)_/$1_0/;
350                 # chnameが無いとき(移動縁故など)、chtxtを代わりに使う
351                 $line->{chname} = 
352                         $line->{chname} || 
353                         $chtxt_0_chname{$line->{chtxt}} || 
354                         $chtxt_0_chname{$line->{chtxt_0}};
355                 if ( !$line->{chname} ) {
356                         # chnameが無いとき、リンクを作成しない
357                         $line->{chname} = $line->{chtxt};
358                         $line->{chname_link} = qq {$line->{chname}</a>};
359                 }
360                 else {
361                         $line->{chname_link} = qq {<a href="rectool.pl?mode=program&amp;chtxt=$line->{chtxt}">$line->{chname}</a>};
362                 }
363                 $line->{title} = 'タイトルなし' if ( !$line->{title} );
364                 $line->{tr_style} = '';
365                 $line->{title_2} = '';
366                 my $unix_b = str2datetime( $line->{btime} );
367                 my $unix_e = str2datetime( $line->{etime} );
368
369                 my $btime = $unix_b->strftime( '%Y%m%d%H%M%S' );
370                 my $etime = $unix_e->strftime( '%Y%m%d%H%M%S' );
371                 if ( $extra and $line->{type} =~ /^search_|^reserve_(?!running)/ ) {
372                         #my @ary = $dbh->selectrow_array(
373                         #       "SELECT title, exp FROM epg_timeline 
374                         #       WHERE channel = '$line->{chname}' 
375                         #       AND start = '$btime' 
376                         #       AND stop  = '$etime' ");
377                         #my @ary = ( $line->{epgtitle}, $line->{epgexp} );
378                         my ( $epgtitle, $epgexp ) = ( $line->{epgtitle}, $line->{epgexp} );
379
380                         if ( $epgtitle ) {
381                                 $epgtitle =~ s/無料≫//;
382
383                                 if ( $epgtitle ne $line->{title} ) {
384                                         # epgtitleとtitleが一致しない
385                                         # []に囲まれた部分を除去して比較
386                                         my @brackets = $line->{title} =~ /(\[.+\])+/;
387                                         my $epgtitle_nobrackets = $epgtitle;
388                                         my $title_nobrackets = $line->{title};
389                                         if ( @brackets && $epgtitle =~ /(\[.+\])+/ >= @brackets ) {
390                                                 foreach ( @brackets ) {
391                                                         $epgtitle_nobrackets =~ s/\Q$_\E//;
392                                                 }
393                                         }
394                                         $title_nobrackets =~ s/(\[.+\])+//;
395                                         if ( !scalar $epgtitle_nobrackets =~ s/\Q$title_nobrackets\E// ) {
396                                                 # epgtitleにtitleが含まれていない
397                                                 my $href  = qq {<a href="rectool.pl?mode=edit&amp;id=$line->{id}&amp;suggest=auto">自動検索</a>};
398                                                 $epgtitle = qq {<span style="color: #FF4000">$epgtitle■$href■</span>};
399                                         }
400                                         else {
401                                                 # epgtitleにtitleが含まれている
402                                                 $epgtitle = $epgtitle_nobrackets;
403                                         }
404                                 }
405                                 else {
406                                         # epgtitleとtitleが一致している
407                                         $epgtitle = '説明';
408                                 }
409
410                                 $line->{title_2} = qq {<div style="float: right; cursor: help" title="$epgexp">$epgtitle</div>};
411                         }
412                         else {
413                                 # epgtitleがない
414                                 my $href    = qq {<a href="rectool.pl?mode=edit&amp;id=$line->{id}&amp;suggest=auto">自動検索</a>};
415                                 $line->{title_2}  = qq {<span style="float: right; color: #FF0000">■$href■</span>};
416                                 $line->{tr_style} = qq {style="background-color: #A0A0A0"};
417                         }
418                 }
419
420                 my ( $begin, $end, $diff ) = &str2readable( $unix_b, $unix_e );
421
422                 my $hr = '';
423                 if ( 
424                         $line->{type} eq 'reserve_running' 
425                                 &&
426                         $unix_b->epoch <= time && time <= $unix_e->epoch
427                 )
428                 {
429                         $percent = int( ( 100 * ( time - $unix_b->epoch ) ) / ( $unix_e->epoch - $unix_b->epoch ) );
430                         $hr .= qq {<hr style="margin: 0 auto 0 0; height: 4px; width: $percent%;};
431                         $hr .= qq { background-color: blue; border: none" title="$percent%">};
432                 }
433
434                 $line->{title} = qq {<a href="rectool.pl?mode=edit&amp;id=$line->{id}">$line->{title}</a>};
435                 #$line->{title} = qq {<div style="float: left">$line->{title}</div>} if ( $line->{title_2} );
436                 $HTML .= qq {<tr align="center" $line->{tr_style}>\n};
437                 $HTML .= qq {<td><input type="checkbox" name="id" value="$line->{id}"></td>\n};
438                 $HTML .= qq {<td>$line->{id}</td>\n};
439                 $HTML .= qq {<td>$type</td>\n};
440                 $HTML .= qq {<td>$line->{chname_link}</td>\n};
441                 $HTML .= qq {<td align="left" style="white-space: normal">$line->{title}$line->{title_2}</td>\n};
442                 $HTML .= qq {<td>$begin</td>\n<td>$end</td>\n};
443                 $HTML .= qq {<td>$hr$diff</td>\n};
444                 $HTML .= qq {<td>$line->{opt}</td>\n<td>$line->{deltaday}</td>\n<td>$line->{deltatime}</td>\n<td>$line->{counter}</td>\n};
445                 $HTML .= qq {</tr>\n};
446         }
447         $HTML .= qq {</table>\n};
448         #$HTML .= qq {<input type="submit" name="edit" value="編集(要JS)">\n};
449         $HTML .= qq {<input type="submit" name="delete" value="削除">\n</div>\n</form>\n};
450         goto end;
451 }
452
453 ################ mode=graph ################
454
455 if ( $mode eq 'graph' ) {
456
457         my $date = $params{ 'date' };
458
459         if ( $date )
460         {
461                 print "Content-Type: image/svg+xml\n\n";
462
463                 $date = Date::Simple->new( split /-/, $date );
464                 $graph_bgn = $date->format('%Y-%m-%d');
465                 $graph_end = $date->next->format('%Y-%m-%d');
466                 $day = $date->day;
467                 $today = $date eq Date::Simple->today() ? 1 : 0;
468
469                 $tuner{terrestrial} = $cfg->param( 'env.te_max'   );# 2;
470                 $tuner{satellite}   = $cfg->param( 'env.bscs_max' );# 2;
471                 $tuner{all} = $tuner{terrestrial} + $tuner{satellite};
472                 $hours = 24;
473                 $width = 30 * $hours;
474                 my %category_color = map { $_->{name}, $_->{color} } values %category;
475
476                 $svg = new SVG( width => 820, height => $tuner{all} * 20 + 40 );
477                 $svg->rectangle( 'x' => 40, 'y' => 20, 
478                         width => $width + 20, height => $tuner{all} * 20 + 10, 
479                         rx => 15, ry => 15, 
480                         style => { stroke => 'blue', fill => 'white' } );
481                 for ( 1..$tuner{terrestrial} ) {
482                         $svg->text( 'x' => 10, 'y' => ( $_ + 1 ) * 20 )
483                                 ->cdata( "T$_" );
484                 }
485                 for ( 1..$tuner{satellite} ) {
486                         $svg->text( 'x' => 10, 'y' => ( $_ + $tuner{terrestrial} + 1 ) * 20 )
487                                 ->cdata( "S$_" );
488                 }
489                 for ( 0..$hours ) {
490                         $svg->text( 'x' => $_ * 30 + 65, 'y' => 15, 
491                                 style => { 'text-anchor' => 'middle' } )
492                                 ->cdata( sprintf( '%02d', $_ ) ) if ( $_ < $hours );
493                         # $svg->line( ); # can't be used when required
494                         $svg->tag( 'line', x1 => $_ * 30 + 50, x2 => $_ * 30 + 50, y1 => 30, y2 => $tuner{all} * 20 + 20, 
495                                 style => { stroke => 'gray' } );
496                 }
497                 for ( 1..$tuner{all} ) {
498 #                       $svg->tag( 'line', x1 =>50, x2 => 50 + $width, y1 => $_ * 20 + 10, y2 => $_ * 20 + 10, 
499 #                               style => { stroke => 'gray' } );
500 #                       $svg->rectangle( 'x' => 50, 'y' => $_ * 20 + 10, width => $width, height => 10 );
501                         $svg->rectangle( 'x' => 50, 'y' => $_ * 20 + 14, width => $width, height => 2 );
502                 }
503                 if ( $today ) {
504                         my $time = Time::Piece->localtime;
505                         my $x = ( $time->hour * 60 + $time->minute ) * 0.5 + 50;
506                         $svg->tag( 'line', x1 => $x, x2 => $x, y1 => 30, y2 => $tuner{all} * 20 + 20, 
507                                 style => { stroke => 'red', 'fill-opacity' => '1.0' } );
508                 }
509                 my $ary_ref = $dbh->selectall_arrayref(
510                         #       epg_timeline.channel = timeline.chtxt && 
511                         "SELECT id, title, chtxt, btime, etime, epgcategory, opt FROM timeline 
512                         WHERE type IN $type_user_made 
513                         AND 
514                         (
515                                 '$graph_bgn 00:00' <= btime AND btime <  '$graph_end 00:00'
516                                         OR
517                                 '$graph_bgn 00:00' <  etime AND etime <= '$graph_end 00:00'
518                         )
519                         ORDER BY btime"
520                         , {Slice=>{}}
521                 );
522
523                 foreach my $bctype ( '\d+_', 'S_' ) {
524                         my $tuner = $bctype eq '\d+_' ? $tuner{terrestrial} : $tuner{satellite};
525                         my @ary_ref = grep { $_->{chtxt} =~ /$bctype/ } @{ $ary_ref };
526                         my @y_drawn = ('') x $tuner;
527                         foreach my $line ( @ary_ref ) {
528                                 @start = $line->{btime} =~ /(.{4})-(.{2})-(.{2}) (.{2}):(.{2})/;
529                                 @stop  = $line->{etime} =~ /(.{4})-(.{2})-(.{2}) (.{2}):(.{2})/;
530                                 $start = ( ( $day == $start[2] ? 0 : 24 * 60 ) + $start[3] * 60 + $start[4] ) * 0.5;
531                                 $stop  = ( ( $day == $stop [2] ? 0 : 24 * 60 ) + $stop [3] * 60 + $stop [4] ) * 0.5;
532                                 $start = 0      if ( $start < 0 || $day > $start[2] ); # 月の変わり目はスルー
533                                 $stop  = $width if ( $stop  > $width );
534                                 $begin = $line->{btime};
535                                 $end   = $line->{etime};
536
537                                 my @ary = grep { ( $_->{etime} cmp $line->{btime} ) > 0 and ( $_->{btime} cmp $line->{etime} ) < 0 and $_->{id} != $line->{id} } @ary_ref;
538                                 foreach my $i ( 0..$tuner - 1 ) {
539                                         next if ( ( $y_drawn[$i] cmp $line->{btime} ) > 0 );
540                                         #for ( 'chtxt', 'btime', 'etime' ) {
541                                         #       $f = 0 if ( $line->{$_} ne $ary[$i]->{$_} );
542                                         #}
543                                         $line->{slot} = $i;
544                                         $y_drawn[$i] = $line->{etime};
545                                         last;
546                                 }
547                                 my ( $r, $g, $b ) = ( 0, 0, 0 );
548                                 $r += 255 if ( $line->{opt} =~ /a/ );
549                                 $g += 255 if ( $line->{opt} =~ /H/ );
550                                 $b += 255 if ( $line->{opt} =~ /I/ );
551                                 if ( $r + $g + $b == 255 * 3 ){
552                                         $r = 0;
553                                         $g = 255;
554                                         $b = 255;
555                                 }
556                                 if ( $r + $g + $b == 0 ){
557                                         $r = $g = $b = 128;
558                                 }
559                                 my %escaped = ( '&' => 'amp', '<' => 'lt', '>' => 'gt', '"' => 'quot' );
560                                 sub html_escape{
561                                         my $str = shift or return;
562                                         my $result = '';
563                                         $result .= $escaped{$_} ? '&' . $escaped{$_} . ';' : $_
564                                                 for (split //, $str);
565                                         $result;
566                                 }
567                                 $svg->anchor(
568                                         -href  => "rectool.pl?mode=edit&amp;id=$line->{id}",
569                                         target => '_blank',
570                                         -title => html_escape( $line->{title} ),
571                                 )->rectangle( 
572                                         'x' => 50 + $start, 
573                                         'y' => 30 + ( $bctype eq '\d+_' ? 0 : $tuner{terrestrial} * 20 ) + $line->{slot} * 20, 
574                                         width  => $stop - $start, 
575                                         height => 10, 
576                                         style  => { fill => $category_color{$line->{epgcategory}} || $category_color{'その他'} } );
577                                         #style  => { fill => "rgb($r,$g,$b)" } );
578                         }
579                 }
580                 my $xml = $svg->xmlify;
581                 utf8::encode( $xml );
582                 print $xml;
583                 #warningsToBrowser(true);
584                 exit;
585         }
586         else
587         {
588                 $HTML =~ s/%HTML_TITLE_OPT%/ - Schedule Viewer - Graphical/;
589                 $HTML .= qq {<div style="float: left">\n};
590                 # $base64 = encode_base64( $svg->xmlify );
591                 # $HTML .= qq {<object data="data:image/svg+xml;base64,$base64">\n</object>\n};
592                 $HTML .= qq {予約状況一覧です。T1,T2は地上波、S1,S2はBS/CSを示しています。<br>\n};
593                 $HTML .= qq {SVGが利用可能なブラウザでご覧ください。<br>\n};
594                 $HTML .= qq {色とジャンルの対応\n};
595                 map { 
596                         $HTML .= qq {<span style="background: $_->{color}; top: 10px; left: 250px;">$_->{name}</span>\n};
597                 } values %category;
598                 $HTML .= qq {<br>\n};
599
600                 $ary_ref = $dbh->selectcol_arrayref(
601                         "SELECT DISTINCT DATE( btime ) 
602                         FROM timeline 
603                         WHERE type in $type_user_made 
604                         ORDER BY btime"
605                 );
606                 foreach my $date ( @{ $ary_ref } ) {
607                         my @date = $date =~ /(.{4})-(.{2})-(.{2})/;
608                         my $dn = DateTime->new( year => $date[0], month => $date[1], day => $date[2], locale => 'ja_JP' )->day_name;
609                         #utf8::encode( $dn );
610                         $HTML .= qq {$date[1]/$date[2]($dn)の予約状況<br>\n};
611                         # <img src="">
612                         $HTML .= qq {<object type="image/svg+xml" data="rectool.pl?mode=graph&amp;date=$date" width="820">\n};
613                         $HTML .= qq {SVG Image $date\n</object>\n<br>\n};
614
615                         $date2 = Date::Simple->new( @date )->next->format('%Y-%m-%d');
616                         my $ary_ref = $dbh->selectall_arrayref(
617                                 "SELECT chtxt, title, btime, etime FROM timeline 
618                                 WHERE '$date 00:00' <= btime AND etime <= '$date2 01:00'
619                                 ORDER BY btime"
620                         );
621
622                         foreach my $line ( @{ $ary_ref } ) {
623                                 #$HTML .= qq {$line->[0] $line->[1] $line->[2] $line->[3]<br>\n};
624                         }
625
626                 }
627
628                 goto end;
629         }
630 }
631
632 ################ mode=atom ################
633
634 if ( $mode eq 'atom' ) {
635         my $recording_count = $encoding_count = $jbk_count = 0;
636         my $ary_ref = $dbh->selectall_arrayref(
637                 "SELECT chtxt, title, btime, etime, opt 
638                 FROM timeline 
639                 WHERE type = 'reserve_running' ");
640         foreach my $line ( @{$ary_ref} ) {
641                 my ( $begin, $end, $diff ) = &str2readable( $line->[2], $line->[3] );
642                 $recording_status .= qq {$line->[0] $line->[1] $begin - $end $diff $line->[4]<br />\n};
643                 $recording_count++;
644         }
645         $ary_ref = $dbh->selectall_arrayref(
646                 "SELECT chtxt, title, btime, etime, opt 
647                 FROM timeline 
648                 WHERE type = 'convert_ts_mp4_running' ");
649         foreach my $line ( @{$ary_ref} ) {
650                 my ( $begin, $end, $diff ) = &str2readable( $line->[2], $line->[3] );
651                 $encoding_status .= qq {$line->[0] $line->[1] $begin - $end $diff $line->[4]<br />\n};
652                 $encoding_count++;
653         }
654         $ary_ref = $dbh->selectall_arrayref(
655                 "SELECT id, chtxt, title, btime, etime 
656                 FROM auto_timeline_keyword " );
657         foreach my $line ( @{$ary_ref} ) {
658                 my ( $begin, $end, $diff ) = &str2readable( $line->[3], $line->[4] );
659                 $jbk_status .= qq {$line->[0] $line->[1] $line->[2] $begin - $end $diff<br />\n};
660                 $jbk_count++;
661         }
662
663         my $feed = XML::Atom::Feed->new( Version => 1.0 );
664         $feed->title('Rec10 フィード');
665
666         my $entry = XML::Atom::Entry->new( Version => 1.0 );
667         $entry->title("Rec10 録画状況 ($recording_count)");
668         $entry->id('tag:recording_status');
669         $entry->content($recording_status);
670         $entry->add_link(str_to_link( './rectool.pl?mode=schedule' ) );
671         $feed->add_entry($entry);
672
673         $entry = XML::Atom::Entry->new( Version => 1.0 );
674         $entry->title("Rec10 縁故状況 ($encoding_count)");
675         $entry->id('tag:encoding_status');
676         $entry->content($encoding_status);
677         $entry->add_link(str_to_link( './rectool.pl?mode=schedule' ) );
678         $feed->add_entry($entry);
679
680         $entry = XML::Atom::Entry->new( Version => 1.0 );
681         $entry->title("Rec10 地引状況 ($jbk_count)");
682         $entry->id('tag:jbk_status');
683         $entry->content($jbk_status);
684         $entry->add_link(str_to_link( './rectool.pl?mode=jbk' ) );
685         $feed->add_entry($entry);
686
687         my $xml = $feed->as_xml;
688         print "Content-Type: application/atom+xml\n\n";
689         print $xml;
690         exit;
691
692         sub str_to_link {
693                 my $link = XML::Atom::Link->new( Version => 1.0 );
694                 $link->type('text/html');
695                 $link->rel('alternate');
696                 $link->href(shift);
697                 return $link;
698         }
699 }
700
701 ################ mode=edit ################
702
703 if ( $mode eq 'edit' ) {
704         my $id = $params{ 'id' };
705
706         $HTML =~ s/%HTML_TITLE_OPT%/ - Schedule Editor/;
707         $HTML .= qq {<div style="float: left">\n};
708
709         $script = <<EOM;
710                 <script type="text/javascript" src="http://www.enjoyxstudy.com/javascript/dateformat/dateformat.js">
711                 </script>
712                 <script type="text/javascript">
713                 function setType(value){
714                         var index = document.reserve.type.selectedIndex;
715                         var value = document.reserve.type[index].value;
716                         if ( value == 'search_everyday' ) {
717                                 document.reserve.deltaday.value  = 7;
718                                 document.reserve.deltatime.value = 3;
719                         }
720                         if ( value == 'convert_b25_ts' || value == 'convert_ts_mp4' ){
721                                 var date       = new Date();
722                                 var dateFormat = new DateFormat("yyyy-MM-dd HH:mm:ss");
723                                 var minutes    = date.getMinutes();
724                                 minutes = minutes - minutes % 5 + 10;
725                                 date.setMinutes(minutes, 0, 0);
726                                 document.reserve.begin.value = dateFormat.format(date);
727                                 date.setSeconds( date.getSeconds() + 3600 );
728                                 document.reserve.end.value   = dateFormat.format(date);
729                         }
730                 }
731                 function setSuggest(start, stop){
732                         document.reserve.begin.value = start;
733                         document.reserve.end.value   = stop;
734                 }
735                 function shiftEndTime(value){
736                         var dateFormat = new DateFormat("yyyy-MM-dd HH:mm:ss");
737                         var date = dateFormat.parse(document.reserve.end.value || document.reserve.begin.value);
738                         date.setSeconds( date.getSeconds() + value );
739                         document.reserve.end.value = dateFormat.format(date);
740                 }
741                 </script>
742 EOM
743         $script =~ s/^\t{2}//gm;
744         $HTML =~ s/%SCRIPT%/$script/;
745
746         $HTML .= "スケジュール編集画面です。<br>\n";
747         $HTML .= "実装がとても適当なので、利用には細心の注意を払ってください。<br>\n<br>\n";
748         if ( $id ) {
749                 # 予約の編集
750                 &parse_program();
751                 $button_bgn = $button_end = '';
752         }
753         else {
754                 # 新規予約
755                 $type = 'reserve_flexible';
756                 $counter = -1;
757                 $datetime_now = DateTime->now( time_zone => $tz )->set_second( 0 )->add( minutes => 1)->strftime( '%Y-%m-%d %H:%M:%S' );
758                 $button_bgn = qq{<button type="button" onClick="document.reserve.begin.value='$datetime_now'">現在</button>\n<br>\n};
759                 $button_end = 
760                          qq{<button type="button" onClick="document.reserve.end.value=document.reserve.begin.value">一致</button>}
761                         .qq{<button type="button" onClick="shiftEndTime(300);">+5m</button>}
762                         .qq{<button type="button" onClick="shiftEndTime(1800);">+30m</button>};
763         }
764
765         if ( $params{ 'suggest' } eq 'auto' ) {
766                 my @btime = $begin =~ /(.{4})-(.{2})-(.{2}) (.{2}):(.{2}):(.{2})/;
767                 my @etime = $end   =~ /(.{4})-(.{2})-(.{2}) (.{2}):(.{2}):(.{2})/;
768                 my $btime = DateTime->new(
769                         year => $btime[0], month  => $btime[1], day    => $btime[2],
770                         hour => $btime[3], minute => $btime[4], second => $btime[5], 
771                 );
772                 my $etime = DateTime->new(
773                         year => $etime[0], month  => $etime[1], day    => $etime[2],
774                         hour => $etime[3], minute => $etime[4], second => $etime[5], 
775                 );
776                 my %hash = &sqlgetsuggested( $btime, $etime );
777
778                 $HTML .= qq {可能性のある番組<br>\n};
779                 $HTML .= qq {<table summary="suggesttable" border=1 cellspacing=0>\n<tr>\n};
780                 $HTML .= qq {<th>優先度</th>\n};
781                 $HTML .= qq {<th>タイトル</th>\n};
782                 $HTML .= qq {<th>開始時刻</th>\n};
783                 $HTML .= qq {<th>終了時刻</th>\n};
784                 $HTML .= qq {<th>説明</th>\n};
785                 $HTML .= qq {<th>適用</th>\n};
786                 $HTML .= qq {</tr>\n};
787
788                 foreach my $key (sort keys %hash){
789                         my $val = $hash{$key};
790                         foreach my $val ( @{$val} ) {
791                                 my $style = qq {style="white-space: nowrap"};
792                                 $val->[0] =~ s/(.{4})(.{2})(.{2})(.{2})(.{2})(.{2})/$1-$2-$3 $4:$5:$6/;
793                                 $val->[1] =~ s/(.{4})(.{2})(.{2})(.{2})(.{2})(.{2})/$1-$2-$3 $4:$5:$6/;
794                                 $HTML .= qq {<tr>\n<td>$key</td>\n<td>$val->[2]</td>\n};
795                                 $HTML .= qq {<td $style>$val->[0]</td>\n<td $style>$val->[1]</td>\n<td>$val->[3]</td>\n};
796                                 $HTML .= qq {<td><button onClick="setSuggest('$val->[0]','$val->[1]');">適用</button></td>\n</tr>\n};
797                         }
798                 }
799                 $HTML .= qq {</table>\n<br>\n};
800         }
801
802         my $len = length $id;
803         $HTML .= qq {<form method="get" action="rectool.pl" name="reserve">\n};
804         $HTML .= qq {<input type="hidden" name="mode" value="change">\n};
805         $HTML .= qq {<input type="hidden" name="mode_sub" value="update">\n};
806         $HTML .= qq {<input type="hidden" name="id" value="$id">\n};
807         $HTML .= qq {ID\n<input type="text" name="id" value="$id" size=$len disabled>\n};
808         $HTML .= qq {タイプ\n<select name="type" onChange="setType();">\n};
809         foreach my $key ( keys %type ) {
810                 next if ( $key !~ /^search|^reserve_flexible$|^reserve_fixed$|^convert_b25_ts$|^convert_ts_mp4$|^$type$/ );
811                 $value = $type{$key};
812                 if ( $key eq $type ) {
813                         $HTML .= qq {<option value="$key" selected>$value</option>\n};
814                 }
815                 else {
816                         $HTML .= qq {<option value="$key">$value</option>\n};
817                 }
818         }
819         $HTML .= qq {</select>\n};
820
821         $HTML .= qq {チャンネル\n<select name="chtxt">\n};
822         # 移動縁故など、チャンネルリスト内にchtxtが存在しない場合に備えて
823         $chtxt_0_chname{$chtxt} = $chname || $chtxt if ( !$chtxt_0_chname{$chtxt} );
824         foreach my $key ( sort keys %chtxt_0_chname ) {
825                 if ( $key eq $chtxt || $key eq $chtxt_0 ) {
826                         $HTML .= qq {<option value="$key" selected>$chtxt_0_chname{$key}</option>\n};
827                 }
828                 else {
829                         $HTML .= qq {<option value="$key">$chtxt_0_chname{$key}</option>\n};
830                 }
831         }
832         $HTML .= qq {</select><br>\n};
833         $HTML .= qq {タイトル\n<input type="text" name="title" value="$title" size=64><br>\n};
834         $HTML .= qq {開始時刻\n<input type="text" name="begin" value="$begin" maxlength=19 size=24>\n};
835         $HTML .= $button_bgn;
836         $HTML .= qq {終了時刻\n<input type="text" name="end" value="$end" maxlength=19 size=24>\n};
837         $HTML .= $button_end . "<br>\n";
838         $HTML .= qq {隔日周期\n<input type="text" name="deltaday" value="$deltaday" maxlength=2  size=2 >\n};
839         $HTML .= qq {時刻誤差\n<input type="text" name="deltatime" value="$deltatime" maxlength=2  size=2 >\n};
840         $HTML .= qq {オプション\n<input type="text" name="opt" value="$opt">\n};
841         $HTML .= qq {回数\n<input type="text" name="counter" value="$counter" size=2 >\n};
842         $HTML .= qq {<input type="submit" name="update" value="更新">\n</form>\n};
843 }
844
845 ################ mode=change ################
846
847 if ( $mode eq 'change' ) {
848         @id     = $q->param( 'id' );
849
850         $HTML =~ s/%HTML_TITLE_OPT%/ - Change/;
851         $HTML .= qq {<div style="float: left">\n};
852
853         if ( $params{ 'delete' } )
854         {
855                 if ( @id ) {
856                         foreach my $id ( @id ) {
857                                 $dbh->do( "DELETE FROM timeline WHERE id = '$id'" );
858                         }
859                         $HTML .= "削除しました。<br>\n5秒後に予約確認画面に移動します。<br>\n";
860                         $HTML =~ s|%REFRESH%|<meta http-equiv="refresh" content="5; url=rectool.pl?mode=schedule">|;
861                         goto end;
862                 }
863         }
864         if ( $params{ 'update' } )
865         {
866                 $type      = $params{ 'type' };
867                 $chtxt     = $params{ 'chtxt' };
868                 $title     = $params{ 'title' };
869                 $begin     = $params{ 'begin' };
870                 $end       = $params{ 'end' };
871                 $deltaday  = $params{ 'deltaday' };
872                 $deltatime = $params{ 'deltatime' };
873                 $opt       = $params{ 'opt' };
874                 $counter   = $params{ 'counter' };
875                 $id        = $id[0];
876                 if ( $id ) {
877                         $dbh->do( 
878                                 "UPDATE timeline SET type = '$type', chtxt = '$chtxt', title = '$title', 
879                                 btime = '$begin', etime = '$end', 
880                                 deltaday = '$deltaday', deltatime = '$deltatime', opt = '$opt', counter = '$counter' 
881                                 WHERE id = '$id'" 
882                         );
883                 }
884                 else {
885                         $dbh->do( 
886                                 "INSERT INTO timeline ( type, chtxt, title, btime, etime, deltaday, deltatime, opt, counter ) 
887                                 VALUES ( '$type', '$chtxt', '$title', '$begin', '$end', '$deltaday', '$deltatime', '$opt', '$counter' )" 
888                         );
889                 }
890                 $HTML .= "更新しました。<br>\n5秒後に予約確認画面に移動します。<br>\n";
891                 $HTML =~ s|%REFRESH%|<meta http-equiv="refresh" content="5; url=rectool.pl?mode=schedule">|;
892                 goto end;
893         }
894         if ( $mode_sub eq 'proc' ) {
895                 my $type  = $params{ 'type' };
896                 my $chtxt = $params{ 'chtxt' } || 'nhk-k';
897                 my $title = $params{ 'title' };
898                 my @opt   = $q->param( 'opt' );
899                 my $opt   = join '', @opt;
900
901                 my $datetime_now = DateTime->now( time_zone => $tz )->set_second( 0 )->add( minutes => 10);
902                 my $sql_type = $type_suggest{$type};
903                 my $begin = $datetime_now->strftime( '%Y-%m-%d %H:%M:%S' );
904                 $datetime_now = $datetime_now->add( minutes => 60 );
905                 my $end = $datetime_now->strftime( '%Y-%m-%d %H:%M:%S' );
906
907                 $dbh->do( 
908                         "INSERT INTO timeline ( type, chtxt, title, btime, etime, opt ) 
909                         VALUES ( '$sql_type', '$chtxt', '$title', '$begin', '$end', '$opt' )"
910                 );
911
912                 goto end;
913         }
914         if ( $mode_sub eq 'move' ) {
915                 my $mode_sub2  = $params{ 'mode_sub2' };
916                 my $title      = $params{ 'title' };
917                 my $response;
918
919                 $ENV{'LANG'} = 'ja_JP.UTF-8';
920                 if ( $mode_sub2 eq 'predict' ) {
921                         $HTML .= "移動後のシミュレーション結果です。\n<br>";
922                         eval '$response = `python26 ' . $cfg->param( 'path.rec10' ) . "/classify.py -s '$title'`";
923                 }
924                 elsif ( $mode_sub2 eq 'exec' ) {
925                         eval '$response = `python26 ' . $cfg->param( 'path.rec10' ) . "/classify.py -e '$title'`";
926                 }
927                 utf8::decode( $response );
928                 $HTML .= $response;
929
930                 goto end;
931         }
932         if ( $mode_sub eq 'setting' ) {
933                 my $jbk     = $params{ 'jbk' }     || '0';
934                 my $bayes   = $params{ 'bayes' }   || '0';
935                 my $del_tmp = $params{ 'del_tmp' } || '0';
936                 my $opt     = $params{ 'opt' }     || '';
937                 my $user    = $params{ 'user' }    || '';
938                 my $pass    = $params{ 'pass' }    || '';
939
940                 $dbh->do( 
941                         "UPDATE in_settings SET auto_jbk = '$jbk', auto_bayes = '$bayes', 
942                         auto_del_tmp = '$del_tmp', auto_opt = '$opt'"
943                 );
944
945                 goto end;
946         }
947         if ( $mode_sub eq 'fixstatus' ) {
948                 my $key = $params{ 'terec'  } ? 'terec'  : $params{ 'bscsrec' } ? 'bscsrec' : 
949                           $params{ 'b252ts' } ? 'b252ts' : $params{ 'ts2avi'  } ? 'ts2avi'  : '';
950
951                 $dbh->do( 
952                         "UPDATE in_status SET $key = 0"
953                 );
954
955                 goto end;
956         }
957
958 }
959
960 ################ mode=confirm ################
961
962 if ( $mode eq 'confirm' ) {
963         if ( $mode_sub eq 'reserve' ) {
964                 $HTML =~ s/%HTML_TITLE_OPT%/ - Reserver/;
965                 $HTML .= qq {<div style="float: left">\n};
966                 &parse_program();
967
968                 my $duration = ( str2datetime( $end ) - str2datetime( $begin ) )->delta_minutes;
969                 $HTML .= "番組名:$title<br>\nチャンネル:$chname<br>\n放送継続時間:$duration 分<br>\n番組内容:$desc<br>\nジャンル:$category<br>\n";
970                 if ( $longdesc ) {
971                         $longdesc =~ s/\\n/<br>\n/gs;
972                         $HTML .= "番組内容(長):$longdesc<br>\n";
973                 }
974                 my $error = &check_error();
975                 if ( $error )
976                 {
977                         # エラー
978
979                         $ary_ref = $dbh->selectall_arrayref(
980                                 "SELECT start, stop FROM epg_timeline WHERE channel = '$chtxt' AND title = '$title' "
981                         );
982                         if ( $error != 1 ) {
983                                 $HTML .= "同一の番組の他の放送予定です。<br>\n";
984                                 foreach my $line ( @{$ary_ref} ) {
985                                         $begin = $line->[0];
986                                         $end   = $line->[1];
987                                         $begin =~ s/(.{4})(.{2})(.{2})(.{2})(.{2})(.{2})/$1-$2-$3 $4:$5:$6/;
988                                         $end   =~ s/(.{4})(.{2})(.{2})(.{2})(.{2})(.{2})/$1-$2-$3 $4:$5:$6/;
989                                         $overlap = &get_overlap() >= 2 ? '不可能' : 
990                                                 qq {<a href="rectool.pl?mode=confirm&amp;mode_sub=reserve&amp;chtxt=$chtxt&amp;start=$line->[0]&amp;stop=$line->[1]">可能</a>};
991                                         $HTML .= "開始:$begin\n終了:$end\n録画は$overlap<br>\n";
992                                 }
993                         }
994                 }
995                 else {
996                         $HTML .= "録画予約の詳細設定を行ってください。<br>\n";
997                         $HTML .= qq {<form method="get" action="rectool.pl">\n};
998                         $HTML .= qq {<input type="hidden" name="mode"  value="reserve">\n};
999                         $HTML .= qq {<input type="hidden" name="chtxt" value="$chtxt">\n};
1000                         $HTML .= qq {<input type="hidden" name="start" value="$start">\n};
1001                         $HTML .= qq {<input type="hidden" name="stop"  value="$stop">\n};
1002                         $HTML .= qq {<input type="hidden" name="title" value="$title">\n} if ( $params{ 'title' } );
1003                         &draw_form_opt( 'reserve' );
1004                         $HTML .= qq {<input type="submit" value="予約">\n</form>\n};
1005                 }
1006                 goto end;
1007         }
1008         # End of $mode_sub eq 'reserve';
1009
1010         if ( $mode_sub eq 'proc' ) {
1011                 my    $type  = $params{ 'type' };
1012                 local $chtxt = $params{ 'chtxt' };
1013                 my    $title = $params{ 'title' };
1014                 local $opt   = $params{ 'opt' };
1015                 utf8::decode( $title );
1016
1017                 $HTML .= "詳細設定を行ってください。<br>\n";
1018                 $HTML .= "タイトル:$title\n<br>\n";
1019
1020                 $HTML .= qq {<form method="get" action="rectool.pl">\n};
1021                 $HTML .= qq {<input type="hidden" name="mode"     value="change">\n};
1022                 $HTML .= qq {<input type="hidden" name="mode_sub" value="proc">\n};
1023                 $HTML .= qq {<input type="hidden" name="type"     value="$type">\n};
1024                 $HTML .= qq {<input type="hidden" name="title"    value="$title">\n};
1025                 &draw_form_channel( 'nonone' );
1026                 &draw_form_opt();
1027                 $HTML .= qq {<input type="submit" value="予約">\n</form>\n};
1028                 goto end;
1029         }
1030 }
1031
1032 ################ mode=reserve ################
1033
1034 if ( $mode eq 'reserve' ) {
1035         $HTML .= qq {<div style="float: left">\n};
1036         &parse_program();
1037         $title = $params{ 'title' } if ( !$title );
1038         @opt = $q->param( 'opt' );
1039         $opt = join '', @opt;
1040         my ( $deltaday, $deltatime );
1041
1042         if ( $params{'every'} eq '1' ) {
1043                 $type = 'search_everyday';
1044                 ( $changed_t ) = $title =~ /(.*)#/;
1045                 $title = $changed_t if ( $changed_t );
1046                 ( $changed_t ) = $title =~ /(.*)第/;
1047                 $title = $changed_t if ( $changed_t );
1048                 ( $changed_t ) = $title =~ /(.*)▽/;
1049                 $title = $changed_t if ( $changed_t );
1050                 $title =~ s/「.*」//;
1051                 $title =~ s/<.*>//;
1052                 $title =~ s/(.*)//;
1053                 $title =~ s/\[新\]//;
1054                 $title =~ s/無料≫//;
1055                 $title =~ s/\s*$//;
1056                 $deltaday  = 7;
1057                 $deltatime = 3;
1058         }
1059         else {
1060                 $type = 'reserve_flexible';
1061         }
1062         $chtxt = $chtxt_0 if ( $chtxt_0 );
1063         if ( !&check_error ) {
1064                 $dbh->do( 
1065                         "INSERT INTO timeline ( type, chtxt, title, btime, etime, opt, deltaday, deltatime ) 
1066                         VALUES ( '$type', '$chtxt', '$title', '$begin', '$end', '$opt', '$deltaday', '$deltatime' )" 
1067                 );
1068         }
1069         $HTML .= "録画予約を実行しました。<br>\n5秒後にトップへ移動します。<br>\n";
1070         $HTML =~ s|%REFRESH%|<meta http-equiv="refresh" content="5; url=rectool.pl">|;
1071         goto end;
1072 }
1073
1074 ################ mode=program ################
1075
1076 if ( $mode eq 'program' ) {
1077         &draw_form();
1078
1079         $HTML =~ s/%HTML_TITLE_OPT%/ - Program Viewer/;
1080         $unix = DateTime->now( time_zone => $tz )->strftime( '%Y%m%d%H%M%S' );
1081         $sql = 
1082                 "SELECT channel, epg_ch.chname, start, stop, title, category 
1083                 FROM epg_timeline 
1084                 INNER JOIN epg_ch ON epg_timeline.channel = epg_ch.chtxt 
1085                 WHERE $unix <= stop %CH% %DATE% %CATEGORY% %KEY% ORDER BY start";
1086
1087         if ( $chtxt ) {
1088                 my $ch;
1089                 if ( $chtxt =~ /^\d+(_0)?$/ ) {
1090                         # teはxx_yyy形式であるため
1091                         $chtxt =~ s/_0//;
1092                         $ch = "AND channel LIKE '$chtxt\_%'";
1093                 }
1094                 else {
1095                         $ch = "AND channel = '$chtxt'";
1096                 }
1097                 $sql =~ s/%CH%/$ch/;
1098         }
1099         if ( $date_sel ) {
1100                 $date_1 = $date_sel . '000000';
1101                 $date_2 = Date::Simple->new( $date_sel =~ /(.{4})(.{2})(.{2})/ )->next->format('%Y%m%d') . '000000';
1102                 my $date = "AND '$date_1' <= stop AND start <= '$date_2'";
1103                 $sql =~ s/%DATE%/$date/;
1104         }
1105         if ( $category_sel ) {
1106                 # 一時的
1107                 #       $category_tmp = $category{$category_sel} . $category_sel;
1108                 my $category = "AND category = '$category{$category_sel}->{name}'";
1109                 $sql =~ s/%CATEGORY%/$category/;
1110         }
1111         if ( $key ) {
1112                 my $key = "AND TITLE LIKE '%$key%'";
1113                 $sql =~ s/%KEY%/$key/;
1114         }
1115         $sql =~ s/%CH%//;
1116         $sql =~ s/%DATE%//;
1117         $sql =~ s/%KEY%//;
1118         $sql =~ s/%CATEGORY%//;
1119
1120         $ary_ref = $dbh->selectall_arrayref( $sql );
1121         foreach my $prg ( @{ $ary_ref } ) {
1122                 my @date = $prg->[2] =~ /(.{4})(.{2})(.{2})(.{2})(.{2})(.{2})/;
1123
1124                 $date = $date[2];
1125                 if ( $date != $prev ) {
1126                         my $date = DateTime->new(
1127                                 year => $date[0], month  => $date[1], day    => $date[2], 
1128                                 locale => 'ja_JP'
1129                         );
1130
1131                         my $dn = $date->day_name;
1132                         #utf8::encode( $dn );
1133                         $HTML .= qq {--------$date[1]/$date[2]($dn)--------<br>\n};
1134                 }
1135                 $HTML .= qq {$date[1]/$date[2] $date[3]:$date[4] };
1136                 $HTML .= qq {$prg->[1] } if ( !$chtxt );
1137                 $HTML .= qq {<a href="rectool.pl?mode=confirm&amp;mode_sub=reserve&amp;chtxt=$prg->[0]&amp;start=$prg->[2]&amp;stop=$prg->[3]">$prg->[4]</a><br>\n};
1138                 $prev = $date;
1139         }
1140 }
1141
1142 ################ mode=list ################
1143
1144 if ( $mode eq 'list' ) {
1145         $HTML =~ s/%HTML_TITLE_OPT%/ - List/;
1146         $HTML .= qq {<div>\n};
1147
1148         $script = <<EOM;
1149                 <link rel="stylesheet" type="text/css" href="http://cdn.sencha.io/ext-3.4.0/resources/css/ext-all.css" />
1150                 <script type="text/javascript" src="http://cdn.sencha.io/ext-3.4.0/adapter/ext/ext-base.js"></script>
1151                 <script type="text/javascript" src="http://cdn.sencha.io/ext-3.4.0/ext-all.js"></script>
1152                 <script>
1153                 Ext.onReady(function() {
1154                   Ext.select('.ffmpeg').on('contextmenu', function(eventObj, elRef) {
1155                     var win = new Ext.Window({
1156                       title: 'FFmpeg info', 
1157                       //autoShow: true, 
1158                       autoLoad: "rectool.pl?mode=list&mode_sub=ffmpeg&path=" + Ext.Element(elRef).getAttribute("path") + 
1159                         "&pathtype=" + Ext.Element(elRef).getAttribute("pathtype"), 
1160                     });
1161                     win.show();
1162                   }, null, {stopEvent:true});
1163 /*
1164                   Ext.select( '.ffmpeg' , true ).each(function (elem) {
1165                     // elem.dom.textContent
1166                     var tooltip = new Ext.ToolTip({
1167                       target: elem,
1168                       width: 400,
1169                       autoLoad: {url: "rectool.pl?mode=list&mode_sub=ffmpeg&path=" + elem.getAttribute("path")},
1170                       autoHide: false,
1171                       closable: true,
1172                       draggable: true, 
1173                       title: 'FFmpeg info',
1174                     });
1175                   });
1176 */
1177                 });
1178                 </script>
1179 EOM
1180         $script =~ s/^\t{2}//gm;
1181         $HTML =~ s/%SCRIPT%/$script/;
1182
1183         my $recording = $cfg->param( 'path.recpath' );
1184         my $movedest  = $cfg->param( 'path.ts_movepath' );
1185         my $recorded  = $cfg->param( 'path.recorded' );
1186
1187         if ( $mode_sub eq 'log' ) {
1188                 my $title = $params{ 'title' };
1189                 my $log = read_file( "$recording/$title.log" ) if ( -e "$recording/$title.log" );
1190                 utf8::decode( $log );
1191                 $HTML .= '<pre>'.$log."</pre>\n";
1192                 goto end;
1193         }
1194         if ( $mode_sub eq 'logzip' ) {
1195                 my $title = $params{ 'title' };
1196                 my $zip = Archive::Zip->new();
1197                 my $logzip;
1198                 die 'read error' unless $zip->read("$recording/$title.log.zip") == AZ_OK;
1199                 my @members = $zip->members();
1200                 foreach (@members) {
1201                         $logzip .= $_->fileName() . "\n";
1202                         my @lines = split /\n|\r/, $zip->contents( $_->fileName() );
1203                         my %count;
1204                         @lines = grep {!$count{$_}++} @lines;
1205                         $logzip .= join "\n", @lines;
1206                         $logzip .= "\n<hr>\n";
1207                 }
1208
1209                 utf8::decode( $logzip );
1210                 $HTML .= '<pre>'.$logzip."</pre>\n";
1211                 goto end;
1212         }
1213         if ( $mode_sub eq 'ffmpeg' ) {
1214                 my $path = $params{ 'path' };
1215                 my $pathtype = $params{ 'pathtype' };
1216                 my $pathdir;
1217                 $pathdir = $recording if ( $pathtype eq 'ing');
1218                 $pathdir = $recorded  if ( $pathtype eq 'ed' );
1219                 $pathdir = $movedest  if ( $pathtype eq 'dst');
1220                 # mediainfo (not working)
1221                 # ffprobe
1222                 # FIXME: sanitize
1223                 my $ffmpeg = `ffmpeg -i "$pathdir/$path" 2>&1` if ( -f "$pathdir/$path" );
1224                 utf8::decode($ffmpeg);
1225                 $ffmpeg = join "<br>\n", grep /Duration|Stream/, split /\n/, $ffmpeg;
1226                 $HTML = $ffmpeg;
1227                 goto end;
1228         }
1229         if ( !$mode_sub ) {
1230                 $HTML .= qq {<a href="rectool.pl?mode=list&amp;mode_sub=new">録画中のみ</a>\n};
1231                 $HTML .= qq {<a href="rectool.pl?mode=list&amp;mode_sub=old">録画後のみ</a>\n<br>\n};
1232         }
1233         if ( !$mode_sub || $mode_sub eq 'new' ) {
1234                 $HTML .= "録画中のファイル一覧<br>\n";
1235                 &list( $recording );
1236         }
1237         if ( !$mode_sub ) {
1238                 $HTML .= "<br>\n";
1239         }
1240         if ( !$mode_sub || $mode_sub eq 'old' ) {
1241                 $HTML .= "録画後のファイル一覧<br>\n";
1242                 &simple_list( $movedest );
1243                 &simple_list( $recorded );
1244         }
1245
1246         sub list {
1247                 local $path = shift;
1248                 local %list = ();
1249                 my @exp = ( 'log', 'log.zip', 'ts.b25', 'ts.tsmix', 'ts', 'ts.log', 
1250                         'aac', 'srt', 'm2v', 'wav', '264', 'mp4', 'mkv' );
1251                 for ( 0..$#exp ) {
1252                         $exp{$exp[$_]} = $_;
1253                 }
1254                 my $exp_count = scalar keys %exp;
1255
1256                 &get_file_list_wrapper( $path, \&wanted );
1257
1258                 my $help;
1259                 foreach my $name ( sort { $exp{$a} <=> $exp{$b} } keys %exp ) {
1260                         $help .= $exp{$name} + 1 . " = $name / ";
1261                 }
1262                 $HTML .= $help;
1263                 $help  = qq {<tr style="background-color: #87CEEB"><td>$help\n</td>\n};
1264                 $help .= qq {<td>$_</td>\n} for ( 1..$exp_count );
1265
1266                 $HTML .= qq {<br>\n○ = 完了 / ● = 書き込み中 / ◆ = ファイルサイズ異常<br>\n};
1267                 $HTML .= qq {<table summary="listtable" border=1 cellspacing=0>\n<tr>\n};
1268                 $HTML .= qq {<th>タイトル</th>\n};
1269                 $HTML .= qq {<th>$_</th>\n} for ( 1..$exp_count );
1270                 $HTML .= qq {</tr>\n};
1271
1272                 my $count = 0;
1273
1274                 foreach my $title ( sort keys %list ) {
1275                         my $value = $list{$title};
1276                         my @flag = ( 0 ) x ( $exp_count );
1277                         $HTML .= qq {<tr>\n<td width="600" style="width: 600px; white-space: normal">$title</td>\n};
1278                         foreach my $exp ( keys %{$value} ) {
1279                                 if ( $exp eq 'log' ) {
1280                                         # ログへのリンクを追加
1281                                         my $title = $q->escape( $title );
1282                                         my $extra = qq {<td><a href="rectool.pl?mode=list&amp;mode_sub=log&amp;title=$title">○</a></td>\n};
1283
1284                                         $value->{$exp}->{extra} = $extra;
1285                                 }
1286                                 elsif ( $exp eq 'log.zip' ) {
1287                                         # ZIPログへのリンクを追加
1288                                         my $title = $q->escape( $title );
1289                                         my $extra = qq {<td><a href="rectool.pl?mode=list&amp;mode_sub=logzip&amp;title=$title">○</a></td>\n};
1290
1291                                         $value->{$exp}->{extra} = $extra;
1292                                 }
1293                                 elsif ( $exp eq 'mp4' ) {
1294                                         # ○などの代わりにサイズを表示
1295                                         # $value->{$exp}->{style} = $value->{$exp}->{size};
1296                                         my $size = $value->{$exp}->{size};
1297                                         my $extra = qq {<td><span class="ffmpeg" path="$title.mp4" pathtype="ing">$size</span></td>\n};
1298                                         $value->{$exp}->{extra} = $extra;
1299                                 }
1300                                 elsif ( $exp eq 'mkv' ) {
1301                                         # サムネイルへのリンクを追加
1302                                         my $title = $q->escape( $title );
1303
1304                                         my $extra = qq {<td><a title="$value->{$exp}->{size}" href="rectool.pl?mode=thumb&amp;title=$title">■</a></td>\n};
1305                                         $value->{$exp}->{extra} = $extra;
1306                                 }
1307                                 $flag[$exp{$exp}] = $value->{$exp};
1308                         }
1309                         foreach ( @flag ) {
1310                                 my $size  = $_->{size};
1311                                 my $style = $_->{style};
1312                                 my $span  =  $size ? qq {<span title="$size">$style</span>} : '<br>';
1313                                 $HTML .= $_->{extra} || qq {<td>$span</td>\n};
1314                         }
1315                         $HTML .= qq {</tr>\n};
1316                         $HTML .= $help unless ( ++$count % 20 );
1317                 }
1318                 $HTML .= qq {</table>\n};
1319
1320                 sub wanted {
1321                         my $rel = shift;
1322                         my $abs = shift;
1323
1324                         return if ( $rel =~ /Thumbs\.db/ );
1325                         return if ( $rel =~ /\.idx/ );
1326
1327                         $rel =~ s/\.temp$//;
1328                         my $regexp = join '|', keys %exp;
1329                         my ( $title, $exp ) = $rel =~ /(.*?)\.($regexp)$/;
1330                         my ( $size, $style ) = &get_size( $abs );
1331                         $rel =~ s/\.temp$//;
1332                         if ( !$title ) {
1333                                 $title = '_error_exp_'.$rel;
1334                                 $exp   = 'log';
1335                         }
1336                         if ( $title !~ /[^0-9A-F]+/ ) {
1337                                 my $tmp = pack( 'H*', $title );
1338                                 if ( !$tmp ) {
1339                                         $title = '_error_b16_'.$rel;
1340                                         $exp   = 'log';
1341                                 }
1342                                 else {
1343                                         $title = 'Base16_'.$tmp;
1344                                 }
1345                         }
1346                         $list{$title}->{$exp} = { 'style' => $style, 'size' => $size };
1347                 }
1348         }
1349
1350         sub simple_list {
1351                 local $path = shift;
1352                 local @list = ();
1353
1354                 &get_file_list_wrapper( $path, \&simple_wanted );
1355
1356                 @list = nsort @list;
1357
1358                 foreach ( @list ) {
1359                         $HTML .= "$_<br>\n";
1360                 }
1361
1362                 sub simple_wanted {
1363                         my $rel = shift;
1364                         my $abs = shift;
1365
1366                         my ( $size ) = &get_size( $abs );
1367                         $rel = qq {<span class="ffmpeg" path="$rel" pathtype="ed">$rel</span>};
1368                         push @list, $rel ."\t\t". $size;
1369                 }
1370         }
1371
1372         sub get_size {
1373                 my $file = shift;
1374                 my ( $size, $last ) = (stat( $file ))[7,9];
1375                 my @unim = ("B","KiB","MiB","GiB","TiB","PiB");
1376                 my $count = 0;
1377
1378                 while($size >= 1024 ){
1379                         $count++;
1380                         $size = $size / 1024;
1381                 }
1382                 $size *= 100;
1383                 $size  = int( $size );
1384                 $size /= 100;
1385                 if ( time - $last < 10 ) {
1386                         $style = '●';
1387                 }
1388                 elsif ( $size == 0 ) {
1389                         $style = '◆';
1390                 }
1391                 else {
1392                         $style = '○';
1393                 }
1394                 return ( "$size $unim[$count]", $style );
1395         }
1396 }
1397
1398 ################ mode=thumb ################
1399
1400 if ( $mode eq 'thumb' ) {
1401         my $title = $params{ 'title' };
1402         my $pos  = $params{ 'pos' };
1403         my $recording = $cfg->param( 'path.recpath' );
1404
1405         print "Content-Type: image/jpeg\n\n";
1406         exec "ffmpeg -ss 300 -i '$recording/$title.mkv' -f image2 -pix_fmt jpg -vframes 1 -s 320x240 -";
1407         exit;
1408 }
1409
1410 ################ mode=check ################
1411
1412 if ( $mode eq 'check' ) {
1413 }
1414
1415 ################ mode=bravia ################
1416
1417 if ( $mode eq 'bravia' ) {
1418         $HTML =~ s/%HTML_TITLE_OPT%/ - Bravia/;
1419         $HTML .= qq {<div>\n};
1420         $HTML .= qq {<form method="get" action="rectool.pl">\n};
1421         $HTML .= qq {<div>\n};
1422         $HTML .= qq {<table summary="bayestable" border=1 cellspacing=0>\n<tr>\n};
1423         $HTML .= qq {<th>ID</th>\n};
1424         $HTML .= qq {<th>チャンネル</th>\n};
1425         $HTML .= qq {<th>タイトル</th>\n};
1426         $HTML .= qq {<th><a href="rectool.pl?mode=bravia">開始時刻</a></th>\n};
1427         $HTML .= qq {<th>終了時刻</th>\n};
1428         $HTML .= qq {<th>録画時間</th>\n};
1429         $HTML .= qq {<th><a href="rectool.pl?mode=bravia&amp;order=point">ポイント</a></th>\n};
1430         $HTML .= qq {<th>予約</th>\n};
1431         $HTML .= qq {</tr>\n};
1432         my $order = $params{ 'order' };
1433         if ( $order ne 'point' ) {
1434                 $order = 'btime';
1435         }
1436         else {
1437                 $order = 'point DESC';
1438         }
1439         my $ary_ref = $dbh->selectall_arrayref(
1440                 "SELECT id, chtxt, title, btime, etime, point 
1441                 FROM auto_timeline_bayes 
1442                 ORDER BY $order" );
1443
1444         foreach my $line ( @{ $ary_ref } ) {
1445                 my ( $begin, $end, $diff ) = &str2readable( $line->[3], $line->[4] );
1446
1447                 $line->[1] = $chtxt_chname{$line->[1]} || $line->[1];
1448                 $HTML .= qq {<tr align="center">\n};
1449                 $HTML .= qq {<td>$line->[0]</td>\n};
1450                 $HTML .= qq {<td>$line->[1]</td>\n};
1451                 $HTML .= qq {<td>$line->[2]</td>\n};
1452                 $HTML .= qq {<td>$begin</td>\n<td>$end</td>\n<td>$diff</td>\n};
1453                 $HTML .= qq {<td>$line->[5]</td>\n};
1454                 $HTML .= qq {<td><a href="rectool.pl?mode=confirm&amp;mode_sub=reserve&amp;bayesid=$line->[0]">予約</a></td>\n};
1455                 $HTML .= qq {</tr>\n};
1456         }
1457         $HTML .= qq {</table>\n};
1458         $HTML .= qq {</div>\n};
1459         $HTML .= qq {</form>\n};
1460
1461 }
1462
1463 ################ mode=proc ################
1464
1465 if ( $mode eq 'proc' ) {
1466         $HTML =~ s/%HTML_TITLE_OPT%/ - Proposal/;
1467         $HTML .= qq {<div>\n};
1468         $HTML .= qq {<table summary="proctable" border=1 cellspacing=0>\n<tr>\n};
1469         $HTML .= qq {<th>タイプ</th>\n};
1470         $HTML .= qq {<th>タイトル</th>\n};
1471         $HTML .= qq {<th>予約</th>\n};
1472         $HTML .= qq {</tr>\n};
1473
1474         my $ary_ref = $dbh->selectall_arrayref(
1475                 "SELECT type, chtxt, title 
1476                 FROM auto_proc 
1477                 ORDER BY title " );
1478
1479         foreach my $line ( @{ $ary_ref } ) {
1480                 my $url;
1481                 $line->[3] = $q->escape( $line->[2] );
1482                 my $opt = $dbh->selectrow_array( 
1483                         "SELECT opt FROM in_timeline_log 
1484                         WHERE title = '$line->[2]' "
1485                 );
1486
1487                 if ( $line->[0] eq 'auto_suggest_dec' ) {
1488                         unless ( $dbh->selectrow_array( 
1489                                 "SELECT 1 FROM timeline 
1490                                 WHERE ( type = 'convert_b25_ts' OR type = 'convert_b25_ts_running' )
1491                                 AND title = '$line->[2]' "
1492                         ) ) {
1493                                 $url = qq {rectool.pl?mode=confirm&amp;mode_sub=proc&amp;type=$line->[0]&amp;chtxt=$line->[1]&amp;title=$line->[3]&amp;opt=$opt};
1494                         }
1495                 }
1496                 elsif ( $line->[0] eq 'auto_suggest_enc' ) {
1497                         unless ( $dbh->selectrow_array( 
1498                                 "SELECT 1 FROM timeline 
1499                                 WHERE ( type = 'convert_ts_mp4' OR type = 'convert_ts_mp4_running' ) 
1500                                 AND title = '$line->[2]' "
1501                         ) ) {
1502                                 $url = qq {rectool.pl?mode=confirm&amp;mode_sub=proc&amp;type=$line->[0]&amp;chtxt=$line->[1]&amp;title=$line->[3]&amp;opt=$opt};
1503                         }
1504                 }
1505                 else {
1506                         unless ( $dbh->selectrow_array( 
1507                                 "SELECT 1 FROM timeline 
1508                                 WHERE ( type LIKE 'convert_avi%' OR type = 'convert_mkv' ) 
1509                                 AND title = '$line->[2]' "
1510                         ) ) {
1511                                 $url = qq {rectool.pl?mode=confirm&amp;mode_sub=proc&amp;type=$line->[0]&amp;chtxt=$line->[1]&amp;title=$line->[3]};
1512                         }
1513                 }
1514                 if ( $url ) { 
1515                         $href = qq {<a href="$url">予約</a>};
1516                 }
1517                 else {
1518                         $href = q {予約済};
1519                 }
1520
1521                 my $color = $color{$type_suggest{$line->[0]}} ? $color{$type_suggest{$line->[0]}} : '';
1522                 $line->[0] = $type{$line->[0]} ? $type{$line->[0]} : $line->[0];
1523                 $line->[0] = qq {<span style="color: $color">$line->[0]</span>} if ( $color );
1524                 $HTML .= qq {<tr align="center">\n};
1525                 $HTML .= qq {<td>$line->[0]</td>\n};
1526                 $HTML .= qq {<td align="left">$line->[2]</td>\n};
1527                 $HTML .= qq {<td>$href</td>\n};
1528                 $HTML .= qq {</tr>\n};
1529         }
1530
1531         $HTML .= qq {</table>\n};
1532 }
1533
1534 ################ mode=jbk ################
1535
1536 if ( $mode eq 'jbk' ) {
1537         $HTML =~ s/%HTML_TITLE_OPT%/ - JBK/;
1538         $HTML .= qq {<div>\n};
1539
1540         if ( $mode_sub eq 'add' ) {
1541                 my $keyword = $params{ 'keyword' };
1542                 utf8::decode( $keyword );
1543                 $HTML .= "キーワード「$keyword」を追加しました。<br>\n";
1544                 $dbh->do( 
1545                         "INSERT INTO in_auto_jbk_key ( keyword ) 
1546                         VALUES ( '$keyword' )" 
1547                 );
1548         }
1549         elsif ( $mode_sub eq 'del' ) {
1550                 my $id = $params{ 'id' };
1551                 my $keyword = $dbh->selectrow_array( 
1552                         "SELECT keyword FROM in_auto_jbk_key 
1553                         WHERE id = '$id' " );
1554                 $HTML .= "キーワード「$keyword」を削除しました。<br>\n";
1555                 $dbh->do( 
1556                         "DELETE FROM in_auto_jbk_key WHERE id = '$id'" 
1557                 );
1558         }
1559         elsif ( $mode_sub eq 'on' ) {
1560                 my $id = $params{ 'id' };
1561                 $HTML .= "キーワード「$keyword」を自動録画対象にしました。<br>\n";
1562                 $dbh->do( 
1563                         "UPDATE in_auto_jbk_key SET auto = 1 WHERE id = '$id'" 
1564                 );
1565         }
1566         elsif ( $mode_sub eq 'off' ) {
1567                 my $id = $params{ 'id' };
1568                 $HTML .= "キーワード「$keyword」を自動録画対象から外しました。<br>\n";
1569                 $dbh->do( 
1570                         "UPDATE in_auto_jbk_key SET auto = 0 WHERE id = '$id'" 
1571                 );
1572         }
1573
1574         $HTML .= qq {<table summary="jbktable" border=1 cellspacing=0>\n<tr>\n};
1575         $HTML .= qq {<th>ID</th>\n};
1576         $HTML .= qq {<th>キーワード</th>\n};
1577         $HTML .= qq {<th>自動録画</th>\n};
1578         $HTML .= qq {<th>切り替え</th>\n};
1579         $HTML .= qq {<th>録画オプション</th>\n};
1580         $HTML .= qq {<th>削除</th>\n};
1581         $HTML .= qq {</tr>\n};
1582
1583         my $ary_ref = $dbh->selectall_arrayref(
1584                 "SELECT id, keyword, auto, opt 
1585                 FROM in_auto_jbk_key
1586                 ORDER BY id " );
1587
1588         foreach my $line ( @{ $ary_ref } ) {
1589                 my $delurl = "rectool.pl?mode=jbk&amp;mode_sub=del&amp;id=$line->[0]";
1590                 my $auto = $line->[2] ? 'on' : 'off';
1591                 my $oppo = $line->[2] ? 'off' : 'on';
1592                 my $oppourl = "rectool.pl?mode=jbk&amp;mode_sub=$oppo&amp;id=$line->[0]";
1593                 $oppo .= "にする";
1594
1595                 $HTML .= qq {<tr align="center">\n};
1596                 $HTML .= qq {<td>$line->[0]</td>\n};
1597                 $HTML .= qq {<td>$line->[1]</td>\n};
1598                 $HTML .= qq {<td>$auto</td>\n};
1599                 $HTML .= qq {<td><a href="$oppourl">$oppo</a></td>\n};
1600                 $HTML .= qq {<td>$line->[3]</a></td>\n};
1601                 $HTML .= qq {<td><a href="$delurl">削除</a></td>\n};
1602                 $HTML .= qq {</tr>\n};
1603         }
1604
1605         $HTML .= qq {</table>\n};
1606
1607         $HTML .= qq {<form method="get" action="rectool.pl">\n};
1608         $HTML .= qq {<div>\n};
1609         $HTML .= qq {<input type="hidden" name="mode" value="jbk">\n};
1610         $HTML .= qq {<input type="hidden" name="mode_sub" value="add">\n};
1611         $HTML .= qq {<input name="keyword" type="text">\n};
1612         $HTML .= qq {<input type="submit" value="追加">\n</div>\n</form>\n<br>\n};
1613
1614         $HTML .= qq {<table summary="jbkrestable" border=1 cellspacing=0>\n<tr>\n};
1615         $HTML .= qq {<th>ID</th>\n};
1616         $HTML .= qq {<th>チャンネル</th>\n};
1617         $HTML .= qq {<th>タイトル</th>\n};
1618         $HTML .= qq {<th>開始時刻</th>\n};
1619         $HTML .= qq {<th>終了時刻</th>\n};
1620         $HTML .= qq {<th>録画時間</th>\n};
1621         $HTML .= qq {<th>予約</th>\n};
1622         $HTML .= qq {</tr>\n};
1623
1624         $ary_ref = $dbh->selectall_arrayref(
1625                 "SELECT id, auto_timeline_keyword.chtxt, epg_ch.chname, title, btime, etime 
1626                 FROM auto_timeline_keyword 
1627                 INNER JOIN epg_ch ON auto_timeline_keyword.chtxt = epg_ch.chtxt 
1628                 ORDER BY btime" 
1629                 , {Slice=>{}} );
1630
1631         foreach my $line ( @{ $ary_ref } ) {
1632                 my ( $begin, $end, $diff ) = &str2readable( $line->{btime}, $line->{etime} );
1633                 $line->{btime} =~ s/(.{4})-(.{2})-(.{2}) (.{2}):(.{2}):(.{2})/$1$2$3$4$5$6/;
1634                 $line->{etime} =~ s/(.{4})-(.{2})-(.{2}) (.{2}):(.{2}):(.{2})/$1$2$3$4$5$6/;
1635                 my $url = qq "rectool.pl?mode=confirm&amp;mode_sub=reserve&amp;chtxt=$line->{chtxt}&amp;start=$line->{btime}&amp;stop=$line->{etime}";
1636
1637                 $HTML .= qq {<tr align="center">\n};
1638                 $HTML .= qq {<td>$line->{id}</td>\n};
1639                 $HTML .= qq {<td>$line->{chname}</td>\n};
1640                 $HTML .= qq {<td>$line->{title}</td>\n};
1641                 $HTML .= qq {<td>$begin</td>\n};
1642                 $HTML .= qq {<td>$end</td>\n};
1643                 $HTML .= qq {<td>$diff</td>\n};
1644                 $HTML .= qq {<td><a href="$url">予約</a></td>\n};
1645                 $HTML .= qq {</tr>\n};
1646         }
1647
1648         $HTML .= qq {</table>\n};
1649
1650 }
1651
1652 ################ mode=recognize ################
1653
1654 if ( $mode eq 'recognize' ) {
1655         $HTML =~ s/%HTML_TITLE_OPT%/ - Recognizer/;
1656
1657         my $text  = $params{ 'text' };
1658         utf8::decode( $text );
1659         $chtxt = $params{ 'chtxt' };
1660         my $title = $params{ 'title' };
1661         utf8::decode( $title );
1662
1663         $HTML .= qq {<div>\n};
1664         $HTML .= qq {与えられた文字列のうち、番組の放送時刻と思われる文字列を認識します。<br>\n};
1665         $HTML .= qq {番組表が取得できない一週間以上先の予約ができます。<br>\n};
1666         $HTML .= qq {<form method="post" action="rectool.pl">\n};
1667         $HTML .= qq {<div>\n};
1668         &draw_form_channel( 'nonone' );
1669         $HTML .= qq {<input type="text" name="title" value="$title">\n};
1670         $HTML .= qq {<br>\n};
1671         $HTML .= qq {<input type="hidden" name="mode" value="recognize">\n};
1672         $HTML .= qq {<textarea name="text" cols=40 rows=4>\n$text</textarea>\n};
1673         $HTML .= qq {<input type="submit" value="実行">\n</div>\n</form>\n};
1674
1675         my $ch_list = join '|', grep /.+/, values %chtxt_0_chname;
1676         my %ch_reverse = reverse %chtxt_0_chname;
1677
1678         if ( $text ) {
1679                 my ( $year, $month, $day );
1680                 my ( $bhour, $bminute, $ehour, $eminute );
1681                 my $next_day = 0;
1682                 foreach ( split /\n/, $text ) {
1683                         my @bdate = /(\d{4}).(\d{1,2}).(\d{1,2})/;
1684                         s/(\d{4}).(\d{2}).(\d{2})//;
1685                         my @btime = /(\d{1,2})[::](\d{1,2})/;
1686                         s/(\d{1,2})[::](\d{2})//;
1687                         my @etime = /(\d{1,2})[::](\d{1,2})/;
1688                         s/(\d{1,2})[::](\d{2})//;
1689                         s/\(.*\)//;
1690                         if ( !@bdate ) {
1691                                 $bdate[0] = Time::Piece->localtime->year;
1692                                 ( $bdate[1], $bdate[2] ) = /(\d{1,2})月(\d{1,2})日/;
1693                                 s/(\d{1,2})月(\d{1,2})日//;
1694                         }
1695                         next if (!( @bdate || @btime ));
1696                         ( $year,  $month, $day ) = @bdate if ( $bdate[0] && $bdate[1] && $bdate[2] );
1697                         ( $bhour, $bminute )     = @btime if ( defined $btime[0] && defined $btime[1] );
1698                         ( $ehour, $eminute )     = @etime if ( defined $etime[0] && defined $etime[1] );
1699                         $next_day = 1 if ( /深夜/ );
1700                         my ( $ch ) = /($ch_list)/;
1701                         my $chtxt = $ch_reverse{$ch} if ( $ch && $ch_reverse{$ch} );
1702                         s/($ch_list)//;
1703
1704                         if ( $year && $month && $day && defined $bhour && defined $bminute ) {
1705                                 my $tp  = Time::Piece->strptime( "$year-$month-$day $bhour:$bminute", '%Y-%m-%d %H:%M' );
1706                                 my $etp = Time::Piece->strptime( "$year-$month-$day $ehour:$eminute", '%Y-%m-%d %H:%M' ) if ( defined $ehour && defined $eminute );
1707                                 $tp += ONE_DAY if ( $next_day );
1708                                 my $start = $tp->strftime( '%Y%m%d%H%M%S' );
1709                                 my $stop  = defined $etp ? 
1710                                         $etp->strftime( '%Y%m%d%H%M%S' ) :
1711                                         ( $tp + ONE_MINUTE * 30 )->strftime( '%Y%m%d%H%M%S' );
1712                                 $title = $_ if ( !$title );
1713                                 my $url = qq "rectool.pl?mode=confirm&amp;mode_sub=reserve&amp;chtxt=$chtxt&amp;start=$start&amp;stop=$stop&amp;title=$title";
1714                                 $HTML .= qq {認識結果:$year-$month-$day $bhour:$bminute -> $ehour:$eminute 残り:$_<a href="$url">リンク</a> <br>\n};
1715                         }
1716                 }
1717         }
1718 }
1719
1720 ################ mode=expert ################
1721
1722 if ( $mode eq 'expert' ) {
1723         my $ary_ref;
1724
1725         $HTML =~ s/%HTML_TITLE_OPT%/ - Expert/;
1726         $HTML .= qq {<div>\n};
1727
1728         if ( $mode_sub eq 'reget' ) {
1729                 my $bctype = $params{ 'bctype' };
1730                 my ( $chtxt, $chname ) = $dbh->selectrow_array( 
1731                         "SELECT chtxt, chname FROM epg_ch 
1732                         WHERE bctype = '$bctype' " );
1733                 $HTML .= "Update for $chname ( chtxt: $chtxt ) has been reserved.<br>\n";
1734                 $dbh->do( "UPDATE epg_ch SET status = '2' WHERE chtxt = '$chtxt' " );
1735                 goto end;
1736         }
1737
1738         if ( $mode_sub eq 'dump' ) {
1739                 # id、epgXXを除外して出力
1740                 my $sth = $dbh->prepare(
1741                         "SELECT type, chtxt, title, btime, etime, deltatime, deltaday, opt, counter 
1742                         FROM timeline"
1743                 );
1744                 # my $yaw = XML::Handler::YAWriter->new;
1745                 my $output;
1746                 my $wri = XML::SAX::Writer->new( Output => \$output );
1747                 my $gen = XML::Generator::DBI->new(
1748                         Handler => $wri,
1749                         AsAttributes => 1,
1750                 );
1751                 $gen->execute($sth);
1752                 # $HTML .= join "\n", @{$yaw->{Strings}};
1753                 print "Content-Type: text/xml\n\n";
1754                 print $output;
1755                 exit;
1756         }
1757
1758         my @ary = $dbh->selectrow_array(
1759                 "SELECT auto_jbk, auto_bayes, auto_del_tmp, auto_opt 
1760                 FROM in_settings " );
1761         my $opt = pop @ary;
1762         @ary = map( $_ ? 'checked' : '', @ary );
1763
1764         $HTML .= qq {内部オプションの変更\n<br>};
1765         $HTML .= qq {<form method="get" action="rectool.pl">\n};
1766         $HTML .= qq {<div>\n};
1767         $HTML .= qq {<input type="hidden" name="mode"     value="change">\n};
1768         $HTML .= qq {<input type="hidden" name="mode_sub" value="setting">\n};
1769         $HTML .= qq {<input type="checkbox" name="jbk"     value="1" $ary[0]>自動地引\n};
1770         $HTML .= qq {<input type="checkbox" name="bayes"   value="1" $ary[1]>自動ベイズ\n};
1771         $HTML .= qq {<input type="checkbox" name="del_tmp" value="1" $ary[2]>自動一時ファイル削除\n};
1772         $HTML .= qq {自動オプション:<input type="text" name="opt" value="$opt">\n};
1773         $HTML .= qq {<input type="submit" value="保存">\n</div>\n</form>\n};
1774
1775
1776         $HTML .= qq {<hr>\n番組表のカテゴリ一覧と内蔵のカテゴリ一覧の合致を確認中...\n};
1777         $ary_ref = $dbh->selectcol_arrayref(
1778                 "SELECT DISTINCT category FROM epg_timeline"
1779         );
1780         my @category = map {$_->{name}} sort values %category;
1781         if ( List::Compare->new( $ary_ref, \@category )->get_symdiff ) {
1782                 $HTML .= qq {一致しません<br>\n};
1783                 $HTML .= qq {番組表:@{$ary_ref}<br>\n内蔵:@category<br>\n};
1784         }
1785         else {
1786                 $HTML .= qq {一致しました<br>\n};
1787         }
1788
1789
1790         @ary = $dbh->selectrow_array( "SELECT terec, bscsrec, b252ts, ts2avi FROM in_status" );
1791         $HTML .= qq {<hr>\n地上波録画数:$ary[0]\n衛星波録画数:$ary[1]\n解読数:$ary[2]\n縁故数:$ary[3]\n<br>\n};
1792         $HTML .= qq {<form method="get" action="rectool.pl">\n};
1793         $HTML .= qq {<div>\n};
1794         $HTML .= qq {<input type="hidden" name="mode"     value="change">\n};
1795         $HTML .= qq {<input type="hidden" name="mode_sub" value="fixstatus">\n};
1796         $HTML .= qq {<input type="submit" name="terec"   value="地上波録画数をリセット">\n};
1797         $HTML .= qq {<input type="submit" name="bscsrec" value="衛星波録画数をリセット">\n};
1798         $HTML .= qq {<input type="submit" name="b252ts"  value="解読数をリセット">\n};
1799         $HTML .= qq {<input type="submit" name="ts2avi"  value="縁故数をリセット">\n</div>\n</form>\n};
1800
1801
1802         $HTML .= qq {<hr>\nRec10 バージョン:$rec10_version\nrectool バージョン:$rectool_version\n<br>\n};
1803
1804
1805         if (0) {
1806         $HTML .= qq {<hr>\n番組表の欠落<br>\n};
1807         $ary_ref = $dbh->selectall_arrayref( "SELECT chname, chtxt FROM epg_ch" );
1808         foreach my $line ( @{$ary_ref} ) {
1809                 my $ary_ref = $dbh->selectall_arrayref( 
1810                         "SELECT start, stop, title FROM epg_timeline WHERE channel = '$line->[1]' ORDER BY start" 
1811                 );
1812                 my $error;
1813                 my @program_old = ( '', $ary_ref->[0]->[0] );
1814                 my $program_old = \@program_old;
1815
1816                 foreach my $program_new ( @{$ary_ref} ) {
1817                         if ( $program_old->[1] ne $program_new->[0] && 
1818                                 $program_old->[2] !~ /クロ?ジング|クロージング|エンディング|休止|ミッドナイト|ending/ && 
1819                                 $program_new->[2] !~ /オープニング|ウィークリー・インフォメーション|モーニング|opening/ && 
1820                                 ( str2datetime( $program_new->[0] ) - str2datetime( $program_old->[1] ) )->delta_minutes > 30 ) {
1821                                 $program_old->[1] =~ s/(.{4})(.{2})(.{2})(.{2})(.{2})(.{2})/$1-$2-$3 $4:$5:$6/;
1822                                 $program_new->[0] =~ s/(.{4})(.{2})(.{2})(.{2})(.{2})(.{2})/$1-$2-$3 $4:$5:$6/;
1823                                 $error .= qq{    $program_old->[2]    $program_old->[1]\n    ->  $program_new->[2]    $program_new->[0]\n};
1824                         }
1825                         $program_old = $program_new;
1826                 }
1827                 $HTML .= qq {<pre>\n$line->[0]\n$error</pre>\n} if ( $error );
1828         }
1829         }
1830
1831
1832         $ary_ref = $dbh->selectall_arrayref( 
1833                 "SELECT chname, chtxt, bctype, ch, csch, tsid, updatetime, status, visible 
1834                 FROM epg_ch 
1835                 ORDER BY chtxt " );
1836         $HTML .= qq {<hr>\n番組表の更新状況<br>\n};
1837         $HTML .= qq {<table summary="channeltable" border=1 cellspacing=0>\n<tr>\n};
1838         $HTML .= qq {<th>チャンネル名</th>\n};
1839         $HTML .= qq {<th>chtxt</th>\n};
1840         $HTML .= qq {<th>bctype</th>\n};
1841         $HTML .= qq {<th>ch</th>\n};
1842         $HTML .= qq {<th>csch</th>\n};
1843         $HTML .= qq {<th>tsid</th>\n};
1844         $HTML .= qq {<th>最終更新時刻</th>\n};
1845         $HTML .= qq {<th>状態</th>\n};
1846         $HTML .= qq {<th>表示</th>\n};
1847         $HTML .= qq {</tr>\n};
1848         foreach my $status ( @{$ary_ref} ) {
1849                 $HTML .= qq {<tr>\n};
1850                 $HTML .= qq {<td>$status->[0]</td>\n<td>$status->[1]</td>\n<td>$status->[2]</td>\n<td>$status->[3]</td>\n};
1851                 $HTML .= qq {<td>$status->[4]</td>\n<td>$status->[5]</td>\n<td>$status->[6]</td>\n<td>$status->[7]</td>\n};
1852                 $HTML .= qq {<td>$status->[8]</td>\n};
1853                 $HTML .= qq {</tr>\n};
1854         }
1855         $HTML .= qq {</table>\n};
1856
1857         $HTML .= qq {<form method="get" action="rectool.pl">\n};
1858         $HTML .= qq {<div>\n};
1859         $HTML .= qq {番組表を再取得する\n};
1860         $HTML .= qq {<input type="hidden" name="mode" value="expert">\n};
1861         $HTML .= qq {<input type="hidden" name="mode_sub" value="reget">\n};
1862         $HTML .= qq {<select name="bctype">\n};
1863         $ary_ref = $dbh->selectall_arrayref(
1864                 "SELECT chname, bctype 
1865                 FROM epg_ch WHERE bctype NOT LIKE '_s%' "
1866         );
1867         foreach my $line ( @{$ary_ref} ) {
1868                 $HTML .= qq {<option value="$line->[1]">$line->[1]</option>\n};
1869         }
1870         $HTML .= qq {<option value="bs">BS</option>\n};
1871         $HTML .= qq {<option value="cs1">CS1</option>\n};
1872         $HTML .= qq {<option value="cs2">CS2</option>\n};
1873         $HTML .= qq {</select>\n};
1874         $HTML .= qq {<input type="submit" value="実行">\n</div>\n</form>\n};
1875
1876
1877
1878         $ary_ref = $dbh->selectall_arrayref(
1879                 "SELECT id, type, chtxt, title, btime, etime, opt, deltaday, deltatime 
1880                 FROM timeline 
1881                 ORDER BY id ");
1882         $HTML .= qq {<hr>\n予約表<br>\n};
1883         $HTML .= qq {<table summary="rectimetable" border=1 cellspacing=0>\n<tr>\n};
1884         $HTML .= qq {<th>ID</th>\n};
1885         $HTML .= qq {<th>type</th>\n};
1886         $HTML .= qq {<th>chtxt</th>\n};
1887         $HTML .= qq {<th>title</th>\n};
1888         $HTML .= qq {<th>btime</th>\n};
1889         $HTML .= qq {<th>etime</th>\n};
1890         $HTML .= qq {<th>opt</th>\n};
1891         $HTML .= qq {<th>deltaday</th>\n};
1892         $HTML .= qq {<th>deltatime</th>\n};
1893         $HTML .= qq {</tr>\n};
1894         foreach my $status ( @{$ary_ref} ) {
1895                 $HTML .= qq {<tr>\n};
1896                 $HTML .= qq {<td>$status->[0]</td>\n<td>$status->[1]</td>\n<td>$status->[2]</td>\n<td>$status->[3]</td>\n};
1897                 $HTML .= qq {<td>$status->[4]</td>\n<td>$status->[5]</td>\n<td>$status->[6]</td>\n<td>$status->[7]</td>\n};
1898                 $HTML .= qq {<td>$status->[8]</td>\n};
1899                 $HTML .= qq {</tr>\n};
1900         }
1901         $HTML .= qq {</table>\n};
1902 }
1903
1904 ################ mode=log ################
1905
1906 if ( $mode eq 'log' ) {
1907         $HTML =~ s/%HTML_TITLE_OPT%/ - Log/;
1908
1909         $HTML .= qq {<div>\n};
1910         $HTML .= qq {<table summary="reclogtable" border=1 cellspacing=0>\n<tr>\n};
1911         $HTML .= qq {<th>ID</th>\n};
1912         $HTML .= qq {<th>chtxt</th>\n};
1913         $HTML .= qq {<th>title</th>\n};
1914         $HTML .= qq {<th>btime</th>\n};
1915         $HTML .= qq {<th>etime</th>\n};
1916         $HTML .= qq {<th>opt</th>\n};
1917         $HTML .= qq {<th>exp</th>\n};
1918         $HTML .= qq {<th>longexp</th>\n};
1919         $HTML .= qq {<th>category</th>\n};
1920         $HTML .= qq {</tr>\n};
1921         $ary_ref = $dbh->selectall_arrayref(
1922                 "SELECT id, chtxt, title, btime, etime, opt, exp, longexp, category 
1923                 FROM in_timeline_log "
1924         );
1925         foreach my $line ( @{$ary_ref} ) {
1926                 $HTML .= qq {<tr>\n};
1927                 $HTML .= qq {<td>$line->[0]</td>\n<td>$line->[1]</td>\n<td>$line->[2]</td>\n<td>$line->[3]</td>\n};
1928                 $HTML .= qq {<td>$line->[4]</td>\n<td>$line->[5]</td>\n<td>$line->[6]</td>\n<td>$line->[7]</td>\n};
1929                 $HTML .= qq {<td>$line->[8]</td>\n};
1930                 $HTML .= qq {</tr>\n};
1931         }
1932         $HTML .= qq {</table>\n};
1933 }
1934
1935 ################ mode=help ################
1936
1937 if ( $mode eq 'help' ) {
1938         $HTML =~ s/%HTML_TITLE_OPT%/ - Help/;
1939         $HTML =~ s|%REFRESH%|<meta http-equiv="refresh" content="300">|;
1940         $HTML .= qq {<div>\n};
1941         $HTML .= qq {ヘルプ\n};
1942 }
1943
1944 ################ mode=test ################
1945
1946 if ( $mode eq 'test' ) {
1947         $HTML =~ s/%HTML_TITLE_OPT%/ - Test/;
1948         $HTML =~ s|%REFRESH%|<meta http-equiv="refresh" content="300">|;
1949         $HTML .= qq {<div>\n};
1950
1951         $tmp = read_file( '/etc/rec10.conf' );
1952         $tmp =~ s/\n/<br>\n/gs;
1953         $HTML .= $tmp;
1954
1955         # $HTML .= Dumper( $ary_ref );
1956 }
1957
1958 ################ mode nasi ################
1959
1960 if ( !$mode ) {
1961         &draw_form();
1962         $HTML =~ s/%HTML_TITLE_OPT%/ - Top/;
1963         $HTML .= qq {Welcome to Rec10!<br>\n};
1964         goto end;
1965 }
1966
1967
1968 end:
1969 #<div style="float: right">
1970 $HTML .= <<EOM;
1971 </div>
1972 </body>
1973 </html>
1974 EOM
1975
1976 #<div align="center">
1977 #$HTML_ADV = $HTML_ADV_IMG . $HTML_ADV_TEXT if ( !$HTML_ADV );
1978 my $HTML_ADV = '';
1979 $HTML_HEADER = qq {<div style="text-align: center">\n$HTML_ADV\n</div>\n};
1980
1981 &draw_menu();
1982 $HTML =~ s/%HTML_TITLE_OPT%//;
1983 $HTML =~ s/%REFRESH%//;
1984 $HTML =~ s/%SCRIPT%//;
1985 $HTML =~ s/%CSS%//;
1986 $HTML =~ s/%HTML_HEADER%/$HTML_HEADER/;
1987
1988 utf8::encode( $HTML );
1989 print $HTTP_HEADER;
1990 print $HTML;
1991 exit;
1992
1993 sub draw_menu {
1994         $hires = Time::HiRes::time() - $hires;
1995         $last_modified = localtime((stat 'rectool.pl')[9]);
1996
1997         $HTML_HEADER .= qq {<div>\n};
1998         $HTML_HEADER .= qq {<span style="float: right; font-size: 8px">Last-Modified: $last_modified<br>Time-Elapsed: $hires 秒</span>\n};
1999         $HTML_HEADER .= qq {<span style="float: left">\n};
2000         $HTML_HEADER .= qq {<a href="rectool.pl">トップ(検索)</a>\n};
2001         $HTML_HEADER .= qq {<a href="rectool.pl?mode=schedule">予約確認</a>\n};
2002         $HTML_HEADER .= qq {<a href="rectool.pl?mode=graph">予約状況(画像版)</a>\n};
2003         $HTML_HEADER .= qq {<a href="rectool.pl?mode=list">録画一覧</a>\n};
2004         $HTML_HEADER .= qq {<a href="rectool.pl?mode=bravia">おまかせ</a>\n};
2005         $HTML_HEADER .= qq {<a href="rectool.pl?mode=expert">玄人仕様</a>\n};
2006         $HTML_HEADER .= qq {<a href="rectool.pl?mode=proc">復旧支援</a>\n};
2007         $HTML_HEADER .= qq {<a href="rectool.pl?mode=jbk">地引</a>\n};
2008         $HTML_HEADER .= qq {<a href="rectool.pl?mode=log">録画履歴</a>\n};
2009         $HTML_HEADER .= qq {<a href="rectool.pl?mode=recognize">文字認識</a>\n};
2010         $HTML_HEADER .= qq {<a href="rectool.pl?mode=edit">新規予約</a>\n};
2011 #       $HTML_HEADER .= qq {<a href="../rec10web/rec10web.py">新規予約</a>\n};
2012         $HTML_HEADER .= qq {</span>\n};
2013         $HTML_HEADER .= qq {<hr style="clear: both; background-color: grey; height: 4px">\n};
2014         $HTML_HEADER .= qq {</div>\n};
2015 }
2016
2017 sub draw_form {
2018         $chname = $params{ 'chname' };
2019         $chtxt  = $params{ 'chtxt' };
2020         $key    = $params{ 'key' };
2021         utf8::decode( $key );
2022         if ( $chname ) {
2023                 $chtxt = $dbh->selectrow_array("SELECT chtxt FROM epg_ch WHERE chname = '$chname' ");
2024         }
2025
2026         $HTML .= qq {<div style="float: left">\n};
2027         $HTML .= qq {<form method="get" action="rectool.pl">\n};
2028         $HTML .= qq {<div>\n};
2029         $HTML .= qq {<input type="hidden" name="mode" value="program">\n};
2030
2031         # チャンネル指定
2032         &draw_form_channel();
2033
2034         # 日付指定
2035         $HTML .= qq {<select name="date">\n<option value="" selected>無指定</option>\n};
2036         $ary_ref = $dbh->selectcol_arrayref(
2037                 "SELECT DISTINCT SUBSTRING(start, 1, 8) FROM epg_timeline ORDER BY start"
2038         );
2039         $date_sel = $params{ 'date' };
2040         foreach my $date ( @{ $ary_ref } ) {
2041                 my @date = $date =~ /(.{4})(.{2})(.{2})/;
2042                 $date_prt = "$date[1]/$date[2]";
2043
2044                 if ( $date eq $date_sel ) {
2045                         $HTML .= qq {<option value="$date" selected>$date_prt</option>\n};
2046                 }
2047                 else {
2048                         $HTML .= qq {<option value="$date">$date_prt</option>\n};
2049                 }
2050         }
2051         $HTML .= qq {</select>\n};
2052
2053         # カテゴリ指定
2054         $HTML .= qq {<select name="category">\n<option value="" selected>無指定</option>\n};
2055         $category_sel = $params{ 'category' };
2056         foreach my $category ( keys %category ) {
2057                 if ( $category eq $category_sel ) {
2058                         $HTML .= qq {<option value="$category" selected>$category{$category}->{name}</option>\n};
2059                 }
2060                 else {
2061                         $HTML .= qq {<option value="$category">$category{$category}->{name}</option>\n};
2062                 }
2063         }
2064         $HTML .= qq {</select>\n};
2065
2066         # キーワード指定
2067         $HTML .= qq {<input name="key" type="text" value="$key" style="width:200px" accesskey="s">\n};
2068
2069         # フォーム描画
2070         $HTML .= qq {<input type="submit" value="更新" accesskey="r">\n</div>\n</form>\n};
2071 }
2072
2073 sub draw_form_channel {
2074         $HTML .= qq {<select name="chtxt">\n};
2075         $HTML .= qq {<option value="" selected>無指定</option>\n} if ( shift ne 'nonone' );
2076
2077         foreach my $key ( keys %chtxt_0_chname ) {
2078                 my $value = $chtxt_0_chname{$key};
2079                 if ( ($chtxt && $key eq $chtxt ) || ( $chname && $value eq $chname ) ) {
2080                         $HTML .= qq {<option value="$key" selected>$value</option>\n};
2081                 }
2082                 else {
2083                         $HTML .= qq {<option value="$key">$value</option>\n};
2084                 }
2085         }
2086         $HTML .= qq {</select>\n};
2087 }
2088
2089 sub draw_form_opt {
2090         my $shift = shift;
2091         my ( %selected, %checked );
2092
2093         if ( $chtxt  =~ /BS_103/ ) {
2094                 $selected{F} = 'selected';
2095         }
2096         elsif ( $chtxt  =~ /CS_239|CS_240|CS_335/ ) {
2097                 $selected{H} = 'selected';
2098         }
2099         elsif ( $chtxt =~ /BS_101|BS_102/ || $bctype =~ /cs/ ) {
2100                 $selected{W} = 'selected';
2101         }
2102         elsif ( $bctype =~ /bs|te/ ) {
2103                 $selected{H} = 'selected';
2104         }
2105         $selected{g} = 'selected';
2106         $selected{s} = 'selected';
2107         $checked{a} = $chtxt =~ /CS_331|CS_332|CS_333|CS_334|CS_335/ || $category =~ /アニメ/ ? 'checked' : '';
2108         $checked{l} = '';
2109         $checked{d} = $title =~ /\Q[二]\E|[二]|\Q(二)\E|(二)/ ? 'checked' : '';
2110         $checked{5} = $title =~ /5\.1|5.1/ ? 'checked' : '';
2111         $checked{2} = 'checked';
2112
2113         if ( $opt ) {
2114                 undef %checked;
2115                 undef %selected;
2116                 my @opt = split //, $opt;
2117                 foreach my $opt ( @opt ) {
2118                         $selected{$opt} = 'selected' if ( $opt =~ /S|L|G|H|F/ );
2119                         $checked {$opt} = 'checked'  if ( $opt =~ /a|h|l|d|2|5/ );
2120                 }
2121                 $checked{d} = $title =~ /\Q[二]\E|[二]|\Q(二)\E|(二)/ ? 'checked' : '';
2122                 $checked{5} = $title =~ /5\.1|5.1/ ? 'checked' : '';
2123         }
2124         # 画質/圧縮率ともに指定されていない場合、真ん中をselectedにする
2125         $selected{g} = 'selected' unless ( $selected{u} || $selected{i} || $selected{o} || $selected{p} );
2126         $selected{s} = 'selected' unless ( $selected{q} || $selected{w} || $selected{e} || $selected{r} );
2127
2128         $HTML .= qq {<select name="opt">\n};
2129         #$HTML .= qq {<option value="S" $selected{S}>S 720x480</option>\n};
2130         $HTML .= qq {<option value="W" $selected{W}>W 854x480</option>\n};
2131         $HTML .= qq {<option value="H" $selected{H}>H 1280x720</option>\n};
2132         $HTML .= qq {<option value="F" $selected{F}>F 1920x1080</option>\n};
2133         $HTML .= qq {<option value="I" $selected{I}>I インタレ保持</option>\n};
2134         $HTML .= qq {</select>\n};
2135
2136         $HTML .= qq {<select name="opt">\n};
2137         $HTML .= qq {<option value="u" $selected{u}>最低</option>\n};
2138         $HTML .= qq {<option value="i" $selected{i}>低</option>\n};
2139         $HTML .= qq {<option value=""  $selected{g}>画質</option>\n};
2140         $HTML .= qq {<option value="o" $selected{o}>高</option>\n};
2141         $HTML .= qq {<option value="p" $selected{p}>最高</option>\n};
2142         $HTML .= qq {</select>\n};
2143
2144         $HTML .= qq {<select name="opt">\n};
2145         $HTML .= qq {<option value="q" $selected{q}>最低</option>\n};
2146         $HTML .= qq {<option value="w" $selected{w}>低</option>\n};
2147         $HTML .= qq {<option value=""  $selected{s}>圧縮率</option>\n};
2148         $HTML .= qq {<option value="e" $selected{e}>高</option>\n};
2149         $HTML .= qq {<option value="r" $selected{r}>最高</option>\n};
2150         $HTML .= qq {</select>\n};
2151
2152         $HTML .= qq {<select name="opt">\n};
2153         $HTML .= qq {<option value=""  $selected{s}>コンテナ</option>\n};
2154         $HTML .= qq {<option value="m" $selected{e}>MKV</option>\n};
2155         $HTML .= qq {<option value="4" $selected{r}>MP4</option>\n};
2156         $HTML .= qq {</select>\n};
2157
2158         $HTML .= qq {<select name="opt">\n};
2159         $HTML .= qq {<option value=""  $selected{s}>モバイル向け</option>\n};
2160         $HTML .= qq {<option value="1" $selected{e}>QVGA</option>\n};
2161         $HTML .= qq {<option value="2" $selected{r}>WVGA</option>\n};
2162         $HTML .= qq {<option value="B" $selected{B}>Blu-ray向け</option>\n};
2163         $HTML .= qq {</select>\n};
2164
2165         $HTML .= qq {<input type="checkbox" name="opt" value="a" $checked{a}>24fps(主にアニメ)\n};
2166         $HTML .= qq {<input type="checkbox" name="opt" value="d" $checked{d}>二ヶ国語放送\n};
2167         #$HTML .= qq {<input type="checkbox" name="opt" value="2" $checked{2}>2passモード\n};
2168         $HTML .= qq {<input type="checkbox" name="opt" value="5" $checked{5}>5.1ch放送\n};
2169         $HTML .= qq {<br>\n};
2170         $HTML .= qq {<select name="opt">\n};
2171         $HTML .= qq {<option value="">移動なし</option>\n};
2172         $HTML .= qq {<option value="R">録画後移動</option>\n};
2173         $HTML .= qq {<option value="D">解読後移動</option>\n};
2174         $HTML .= qq {<option value="E">縁故後移動</option>\n};
2175         $HTML .= qq {</select>\n};
2176         $HTML .= qq {<input type="checkbox" name="opt"   value="N">ファイル名日時追加\n} if ( $shift eq 'reserve' );
2177         $HTML .= qq {<input type="checkbox" name="every" value="1">隔週録画\n}           if ( $shift eq 'reserve' );
2178 }
2179
2180 sub parse_program {
2181         $chname  = $params{ 'chname' };
2182         $chtxt   = $params{ 'chtxt' };
2183         $start   = $params{ 'start' };
2184         $stop    = $params{ 'stop' };
2185         $bayesid = $params{ 'bayesid' };
2186         $id      = $params{ 'id' };
2187
2188         # chtxt と chname を相互に補完
2189         if ( $chname ) {
2190                 $chtxt = $dbh->selectrow_array("SELECT chtxt FROM epg_ch WHERE chname = '$chname'");
2191         }
2192         elsif ( $chtxt && $chtxt_0_chname{$chtxt} ) {
2193                 $chname = $chtxt_0_chname{$chtxt};
2194                 ( $chtxt_sql = $chtxt ) =~ s/_0/_%/;
2195                 $bctype = $dbh->selectrow_array("SELECT bctype FROM epg_ch WHERE chtxt LIKE '$chtxt_sql'");
2196         }
2197         elsif ( $chtxt ) {
2198                 $chname = $dbh->selectrow_array("SELECT chname FROM epg_ch WHERE chtxt = '$chtxt'")
2199         }
2200
2201         # EPGから番組の情報を取得
2202         ( $title, $desc, $longdesc, $category ) = $dbh->selectrow_array(
2203                 "SELECT title, exp, longexp, category
2204                 FROM epg_timeline 
2205                 WHERE channel = '$chtxt' AND start = '$start' AND stop = '$stop' ");
2206         if ( !$bctype ) {
2207                 $bctype = $dbh->selectrow_array("SELECT bctype FROM epg_ch WHERE chtxt = '$chtxt'");
2208         }
2209
2210         if ( $bayesid ) {
2211                 ( $chtxt, $title, $begin, $end ) = $dbh->selectrow_array( 
2212                         "SELECT chtxt, title, btime, etime FROM auto_timeline_bayes WHERE id = '$bayesid' " 
2213                 );
2214                 ( $chname, $bctype ) = $dbh->selectrow_array( 
2215                         "SELECT chname, bctype FROM epg_ch WHERE chtxt = '$chtxt' " 
2216                 );
2217                 $start = str2datetime( $begin )->strftime( '%Y%m%d%H%M%S' );
2218                 $stop  = str2datetime( $end   )->strftime( '%Y%m%d%H%M%S' );
2219                 ( $desc, $longdesc, $category ) = $dbh->selectrow_array( 
2220                         "SELECT exp, longexp, category FROM epg_timeline WHERE channel = '$chtxt' AND start = '$start' AND stop = '$stop' " 
2221                 );
2222         }
2223         if ( $id ) {
2224                 ( $type, $chtxt, $title, $begin, $end, $deltaday, $deltatime, $opt, $counter ) = $dbh->selectrow_array( 
2225                         "SELECT type, chtxt, title, btime, etime, deltaday, deltatime, opt, counter 
2226                         FROM timeline WHERE id = '$id' " 
2227                 );
2228                 &chtxt_format();
2229                 ( $chname, $bctype ) = $dbh->selectrow_array( 
2230                         "SELECT chname, bctype FROM epg_ch WHERE chtxt LIKE '$chtxt_sql' " 
2231                 );
2232                 $start = str2datetime( $begin )->strftime( '%Y%m%d%H%M%S' );
2233                 $stop  = str2datetime( $end   )->strftime( '%Y%m%d%H%M%S' );
2234                 ( $desc, $longdesc, $category ) = $dbh->selectrow_array( 
2235                         "SELECT exp, longexp, category FROM epg_timeline WHERE channel = '$chtxt' AND start = '$start' AND stop = '$stop' " 
2236                 );
2237         }
2238         # set $chtxt_0, $chtxt_sql, $bctype_sql
2239         &chtxt_format();
2240         #( $chtxt_no0 ) = $chtxt   =~ /(\d+)_/;
2241         @start = $start =~ /(.{4})(.{2})(.{2})(.{2})(.{2})/;
2242         @stop  = $stop  =~ /(.{4})(.{2})(.{2})(.{2})(.{2})/;
2243         $begin = sprintf( '%04d-%02d-%02d %02d:%02d:%02d', @start, '00' );
2244         $end   = sprintf( '%04d-%02d-%02d %02d:%02d:%02d', @stop , '00' );
2245
2246         if ( $params{ 'title' } ) {
2247                 $title = $params{ 'title' };
2248                 utf8::decode( $title );
2249         }
2250         $HTML .= qq {<!-- chtxt=$chtxt chtxt_0=$chtxt_0 chtxt_sql=$chtxt_sql bctype=$bctype -->\n};
2251 }
2252
2253 sub check_error {
2254         my $is_error;
2255         my $is_same = $dbh->selectrow_array( 
2256                 "SELECT COUNT(*) FROM timeline WHERE chtxt = '$chtxt' AND btime = '$begin' AND etime = '$end'" 
2257         );
2258         my @overlap = &get_overlap();
2259
2260         if ( $is_same ) {
2261                 $HTML .= "同一の番組が既に存在します。<br>\n";
2262                 $is_error = 1;
2263         }
2264         elsif ( $overlap[0] >= 2 ) {
2265                 $HTML .= "時間が被る番組が既に2個存在します。<br>\n";
2266                 $HTML .= $overlap[1];
2267                 $is_error = 2;
2268         }
2269         else {
2270                 $is_error = 0;
2271         }
2272         return $is_error;
2273 }
2274
2275 sub get_overlap {
2276         my $ary_ref = $dbh->selectall_arrayref(
2277                 "SELECT btime, etime, title
2278                 FROM timeline 
2279                 INNER JOIN epg_ch ON timeline.chtxt = epg_ch.chtxt 
2280                 WHERE bctype LIKE '$bctype_sql' AND type IN $type_user_made 
2281                 AND btime < '$end' 
2282                 AND etime > '$begin' 
2283                 "
2284         );
2285
2286         my %overlap;
2287         my $overlap = $max = 0;
2288         my $str;
2289         foreach my $prg ( @{ $ary_ref } ) {
2290                 $str .= "$prg->[0] ? $prg->[1] : $prg->[2]<br>\n";
2291                 $overlap{$prg->[0]} += 1;
2292                 $overlap{$prg->[1]} -= 1;
2293         }
2294         foreach my $key ( sort keys %overlap ) {
2295                 $overlap += $overlap{$key};
2296                 $max = List::Util::max( $max, $overlap );
2297         }
2298         if ( wantarray ) {
2299                 return ( $max, $str );
2300         }
2301         else {
2302                 return $max;
2303         }
2304 }
2305
2306 sub get_file_list_wrapper {
2307         local $base_dir = shift;
2308         local $ptr = shift;
2309
2310         &get_file_list( $base_dir );
2311 }
2312
2313 sub get_file_list{
2314         my $dir = shift;
2315
2316         opendir ( DIR, $dir );
2317         my @list = sort readdir( DIR );
2318         closedir( DIR );
2319
2320         foreach my $file ( @list ) {
2321                 next if ( $file =~ /^\.{1,2}$/ );
2322                 if ( -d "$dir/$file" ){
2323                         &get_file_list("$dir/$file");
2324                 }
2325                 else{
2326                         $abs = "$dir/$file";
2327                         utf8::decode( $abs );
2328                         ( $rel ) = $abs =~ /^$base_dir\/(.*)$/;
2329                         $ptr->( $rel, $abs );
2330                 }
2331         }
2332 }
2333
2334 sub strisjoined {
2335         my $str = shift;
2336
2337         return $str =~ /.{4}-.{2}-.{2} .{2}:.{2}:.{2}/ ? 0 : 1;
2338 }
2339
2340 sub str2datetime {
2341         my $str    = shift;
2342         my @time;
2343
2344         if ( strisjoined( $str ) ) {
2345                 @time = $str =~ /(.{4})(.{2})(.{2})(.{2})(.{2})(.{2})/;
2346         }
2347         else {
2348                 @time = $str =~ /(.{4})-(.{2})-(.{2}) (.{2}):(.{2}):(.{2})/;
2349         }
2350         return DateTime->new(
2351                 year   => $time[0], month     => $time[1], day    => $time[2],
2352                 hour   => $time[3], minute    => $time[4], second => $time[5], 
2353                 locale => 'ja_JP' , time_zone => $tz
2354         );
2355 }
2356
2357 sub str2dayname {
2358         my  $str = shift;
2359         our %day_name_cache;
2360
2361         if ( !$day_name_cache{$str} ) {
2362                 $day_name_cache{$str} = str2datetime( $str )->day_name;
2363         }
2364         return $day_name_cache{$str};
2365 }
2366
2367 sub str2readable { 
2368         my $begin = shift;
2369         my $end   = shift;
2370
2371         my $dt_begin = ref( $begin ) eq 'DateTime' ? $begin : &str2datetime( $begin );
2372         my $dt_end   = ref( $end   ) eq 'DateTime' ? $end   : &str2datetime( $end );
2373
2374         my $str_begin = $dt_begin->strftime( '%m/%d(%a) %H:%M' );
2375         my $str_end   = $dt_end  ->strftime( $dt_begin->day == $dt_end->day ? '%H:%M' : '翌 %H:%M' );
2376         # utf8::encode( $str_begin );
2377
2378         my ( $sec, $min, $hour );
2379         $sec  = $dt_end->epoch - $dt_begin->epoch;
2380         $min  = int( $sec / 60 );
2381         $sec  = $sec - $min * 60;
2382         $hour = int( $min / 60 );
2383         $min  = $min - $hour * 60;
2384         my $str_diff = '';
2385         $str_diff .= $hour . '時間' if ( $hour );
2386         $str_diff .= $min  . '分'   if ( $min );
2387         $str_diff .= $sec  . '秒'   if ( $sec );
2388
2389         return ( $str_begin, $str_end, $str_diff );
2390 }
2391
2392 sub sqlgetsuggested {
2393         my ( $btime, $etime ) = @_;
2394         $deltatime = 3 if ( !$deltatime );
2395
2396         $btime_bgn = $btime->clone->subtract( hours => $deltatime )->strftime( '%Y%m%d%H%M%S' );
2397         $btime_end = $btime->clone->add(      hours => $deltatime )->strftime( '%Y%m%d%H%M%S' );
2398         $etime_bgn = $etime->clone->subtract( hours => $deltatime )->strftime( '%Y%m%d%H%M%S' );
2399         $etime_end = $etime->clone->add(      hours => $deltatime )->strftime( '%Y%m%d%H%M%S' );
2400
2401         $ary_ref = $dbh->selectall_arrayref(
2402                 "SELECT start, stop, title, exp 
2403                 FROM epg_timeline 
2404                 WHERE channel LIKE '$chtxt_sql' 
2405                 AND start BETWEEN '$btime_bgn' AND '$btime_end' 
2406                 AND stop  BETWEEN '$etime_bgn' AND '$etime_end' "
2407         );
2408         #die Dumper $ary_ref;
2409
2410         my %hash;
2411         my $hash_r = ngram_counts( $title, 2 ); # bi-gram
2412         foreach my $program ( @{$ary_ref} ) {
2413                 no warnings;
2414                 my $hash_k = ngram_counts( $program->[2], 2 );
2415                 my $point;
2416                 map $point += $hash_k->{$_}, keys %{$hash_r};
2417                 push @{$hash{$point}}, $program if ( $point );
2418         }
2419
2420         return %hash;
2421 }
2422
2423 sub ngram_counts {
2424         my $str  = shift;
2425         my $klen = shift;
2426         my $slen = length($str);  
2427
2428         my $href;
2429         for (my $i=0; $i < $slen-$klen+1; $i++){  
2430                 $href->{substr($str, $i, $klen)}++;
2431         }
2432         return $href;
2433 }
2434
2435 sub chtxt_format {
2436         ( $chtxt_0   = $chtxt ) =~ s/(\d+)_\d+/$1_0/;
2437         ( $chtxt_sql = $chtxt ) =~ s/(\d+)_\d+/$1_%/;
2438         if ( $bctype =~ /bs|cs/ ) {
2439                 $bctype_sql = '_s%';
2440         }
2441         elsif ( $bctype =~ /te/ ) {
2442                 $bctype_sql = 'te%';
2443         }
2444 }
2445