forked from omzn/PMAN3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
install.cgi
executable file
·775 lines (713 loc) · 21.7 KB
/
install.cgi
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
#!/usr/bin/perl
# $Id: install.cgi,v 1.26 2010/03/20 15:32:28 o-mizuno Exp $
# =================================================================================
# PMAN 3 - Paper MANagement system
#
# INSTALLER
#
# (c) 2002-2010 Osamu Mizuno, All right researved.
#
my $VERSION = "3.2 beta";
#
# =================================================================================
BEGIN {
unshift(@INC,"./lib");
}
use strict;
use utf8;
my %required_modules = (
'CGI' => 3.49,
'DBI' => 0,
'DBD::SQLite' => 1.29,
'CGI::Session' => 0,
'CGI::Cookie' => 0,
'HTML::Template' => 0,
'HTML::Scrubber' => 0,
'HTML::Entities' => 0,
'URI::Escape' => 0,
'Encode' => 0,
'Digest::MD5' => 0,
'MIME::Types' => 0,
'Time::HiRes' => 0,
'BibTeX::Parser' => 0,
'BibTeX::Parser::Author' => 0,
'IO::String' => 0
);
my $doc;
my $cgi;
my $DB = "./db/bibdat.db";
my $SESS_DB = "./db/sess.db";
my $CACHE_DB = "./db/cache.db";
my $OPTIONS_DB = "./db/config.db";
if (&check_module('CGI')) {
$cgi = new CGI;
if ($cgi->param('SECOND') eq "go") {
&second_page;
} elsif ($cgi->param('THIRD') eq "go") {
&third_page;
} elsif ($cgi->param('FOURTH') eq "go") {
&fourth_page;
} elsif ($cgi->param('FINISH') eq "go") {
&finish_page;
} else {
&first_page;
}
} else {
&first_page;
}
if (utf8::is_utf8($doc)) {
utf8::encode($doc);
}
print $doc;
exit 0;
sub check_module {
my $module = $_[0];
# モジュールが存在すれば読み込む
eval "use $module;";
if ($@) {
return 0;
} else {
return 1;
}
}
sub check_module_ver {
my $module = $_[0];
my $ver = $_[1];
# モジュールが存在すれば読み込む
eval "use $module;";
if ($@) {
return (0,-1);
} else {
my $v = $module."::VERSION";
eval "\$v = \$$v;";
if ($v < $ver) {
return (0,$v);
} else {
return (1,$v);
}
}
}
sub first_page {
$doc .= <<EOM;
Content-Type: text/html; charset=utf-8
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>PMAN3 Installer</title>
<META http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Content-Style-Type" content="text/css" />
<link rel="stylesheet" type="text/css" href="tmpl/default/pman.css" />
</head>
<body>
<div id="container">
<div id="header">
<a class="logo" href="http://se.is.kit.ac.jp/~o-mizuno/pman3.html"><img class="logo" src="img/logo.png" /></a>
<h1>PMAN3 インストーラ</h1>
</div>
<div id="contents">
<h3>必要条件確認</h3>
<p>必要条件を確認します.</p>
<table>
EOM
my $req = 0;
my $is_sqlite3 = "OK: インストール済";
if (`which sqlite3` eq "") {
$is_sqlite3 = '<span class="red"><b>NG: インストールされていません</b></span>';
$req ++;
}
$doc .= <<EOM;
<tr>
<td class="fieldHead">SQLite3</td>
<td class="fieldBody">$is_sqlite3</td>
</tr>
EOM
my $chk_perl = "OK: perl 5.8.5以上が利用できます.(インストール済み: $] )";
if ( $] < 5.008005) {
$chk_perl = '<span class="red"><b>NG: perl 5.8.5以上が必要です.</b></span>';
$req ++;
}
$doc .= <<EOM;
<tr>
<td class="fieldHead">perl version</td>
<td class="fieldBody">$chk_perl</td>
</tr>
EOM
my %installed;
foreach (sort(keys(%required_modules))) {
my ($isreq,$v) = &check_module_ver($_,$required_modules{$_});
if ($isreq) {
$installed{$_} = "OK: インストール済 ($v)";
} else {
if ($v < 0) {
$installed{$_} = "<span class=\"red\"><b>NG: インストールされていません </b></span>";
$req ++;
} else {
$installed{$_} = "<span class=\"red\"><b>NG: モジュールのバージョンが古いです (req. $required_modules{$_} > inst. $v)</b></span>";
$req ++;
}
}
$doc .= <<EOM;
<tr>
<td class="fieldHead">$_</td>
<td class="fieldBody">$installed{$_}</td>
</tr>
EOM
}
if ($req == 0) {
$doc .= <<EOM;
<tr>
<td class="fieldHead"></td>
<td class="fieldBody">必要条件は全て揃っています.</td>
</tr>
</table>
<h3>初期設定 (1/2)</h3>
<p>ここで設定した情報は後から設定メニューで変更することもできます.パスワードだけは必ず設定してください.</p>
<p>PMAN3.0.xをご利用の方も以下の情報を再設定してください.すでに存在するDBはそのまま利用します.</p>
<table>
<form method="POST" script="./install.cgi">
<input type="hidden" name="SECOND" value="go" />
<tr>
<td class="fieldHead">サイト名</td>
<td class="fieldBody"><input type="text" name="site_name" /></td>
</tr>
<tr>
<td class="fieldHead">管理者名</td>
<td class="fieldBody"><input type="text" name="maintainer_name" /></td>
</tr>
<tr>
<td class="fieldHead">管理者URL</td>
<td class="fieldBody"><input type="text" name="maintainer_url" /></td>
</tr>
<tr>
<td class="fieldHead">管理者パスワード</td>
<td class="fieldBody"><input type="text" name="password" /></td>
</tr>
<tr>
<td class="fieldHead">セッションDBの利用<br />
セッション遷移にデータベースを利用します.</td>
<td class="fieldBody">
<select name="use_DBforSession" >
<option value="1">使用する</option>
<option selected value="0">使用しない</option>
</select> </td>
</tr>
EOM
$doc .= <<EOM;
<tr>
<td class="fieldHead"></td>
<td class="fieldBody"><input type="submit" /></td>
</tr>
</form>
</table>
EOM
} else {
$doc .= <<EOM;
<tr>
<td class="fieldHead"></td>
<td class="fieldBody">必要条件が揃っていません.インストールしてから再度install.cgiを実行してください.</td>
</tr>
</table>
EOM
}
$doc .= <<EOM;
</div>
<div id="footer">
<p class="center">
<a href="http://se.is.kit.ac.jp/~o-mizuno/pman3.html">PMAN $VERSION</a> - Paper MANagement system / (C) 2002-2010, <a href="http://se.is.kit.ac.jp/~o-mizuno/">Osamu Mizuno</a> / All rights reserved.
</p>
</div>
</div>
</body>
</html>
EOM
}
sub second_page {
require DBI;
$doc .= <<EOM;
Content-Type: text/html; charset=utf-8
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>PMAN3 Installer</title>
<META http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Content-Style-Type" content="text/css" />
<link rel="stylesheet" type="text/css" href="tmpl/default/pman.css" />
</head>
<body>
<div id="container">
<div id="header">
<a class="logo" href="http://se.is.kit.ac.jp/~o-mizuno/pman3.html"><img class="logo" src="img/logo.png" /></a>
<h1>PMAN3 インストーラ</h1>
</div>
<div id="contents">
<h3>初期設定 (2/2)</h3>
<ul>
EOM
my $err = 0;
my $dbh;
unless (-d "./db"){
umask(0);
mkdir("./db",0777);
}
unless (-f $DB) {
eval {
$dbh = DBI->connect("dbi:SQLite:dbname=$DB", undef, undef,
{AutoCommit => 0, RaiseError => 1 });
$dbh->{sqlite_unicode} = 1;
my $SQL = <<EOM;
CREATE TABLE bib(
id integer primary key autoincrement,
style text not null,
ptype integer not null,
author text,
editor text,
key text,
title text,
journal text,
booktitle text,
series text,
volume text,
number text,
chapter text,
pages text,
edition text,
school text,
type text,
institution text,
organization text,
publisher text,
address text,
month integer,
year integer,
howpublished text,
note text,
annote text,
abstract text,
title_e text,
author_e text,
editor_e text,
journal_e text,
booktitle_e text,
publisher_e text,
acceptance text,
impactfactor text,
url text
);
EOM
$dbh->do($SQL);
$SQL = <<EOM;
CREATE TABLE ptypes(
pt_id integer primary key autoincrement,
pt_type integer not null,
pt_order integer not null,
pt_lang text not null,
pt_desc text not null
);
EOM
$dbh->do($SQL);
$SQL = <<EOM;
CREATE TABLE files(
id integer primary key autoincrement,
pid integer not null,
filename text not null,
mimetype text not null,
file blob not null,
access integer not null,
file_desc text
);
EOM
$dbh->do($SQL);
$SQL = <<EOM;
CREATE TABLE tags(
tag_id integer primary key autoincrement,
paper_id integer not null,
tag text not null
);
EOM
$dbh->do($SQL);
$SQL = <<EOM;
CREATE TABLE authors(
id integer primary key autoincrement,
paper_id integer not null,
author_order integer not null,
author_name text not null,
author_key text
);
EOM
$dbh->do($SQL);
$dbh->commit;
$dbh->disconnect;
chmod(0666,$DB);
};
if ($@) {
$doc .= "</li><pre>Error: $@</pre>";
$err++;
unlink($DB);
} else {
$doc .= "<li>文献データベースを作成しました.</li>\n";
}
} else {
$doc .= "<li>文献データベースはすでに存在します.</li>\n";
}
unless (-f $SESS_DB) {
my $sdbh;
if ($cgi->param("use_DBforSession") == 1) {
eval {
$sdbh = DBI->connect("dbi:SQLite:dbname=$SESS_DB", undef, undef,
{AutoCommit => 0, RaiseError => 1 });
my $SQL = <<EOM;
CREATE TABLE sessions (
id CHAR(32) NOT NULL PRIMARY KEY,
a_session TEXT NOT NULL);
EOM
$sdbh->do($SQL);
$sdbh->commit;
$sdbh->disconnect;
chmod(0666,$SESS_DB);
};
if ($@) {
$doc .= "</li><pre>$@</pre>";
$err++;
unlink($SESS_DB);
} else {
$doc .= "<li>セッション管理データベースを作成しました.</li>\n";
}
}
} else {
$doc .= "<li>セッション管理データベースはすでに存在します.</li>\n";
}
my $texHeader = <<"EOM";
\\documentclass{jarticle}
\\usepackage{times}
\\usepackage{fancyhdr}
\\renewcommand{\\baselinestretch}{0.85}
\\setlength{\\topmargin}{-10mm}
\\setlength{\\oddsidemargin}{0mm}
\\setlength{\\evensidemargin}{0mm}
\\setlength{\\textheight}{23.6cm}
\\setlength{\\textwidth}{16cm}
\\title{\\LARGE\\bf 研究業績リスト}
\\newcommand{\\myName}{} \%ここに名前が挿入される
\\newcommand{\\myAffiliation}{} \%ここに所属が挿入される
\\newcommand{\\myTitle}{} \%ここに肩書きが挿入される
\\author{ \\myAffiliation ~~ \\myTitle ~~ \\myName }
\\begin{document}
\\maketitle
\\pagestyle{fancy}
\\thispagestyle{fancy}
\\renewcommand{\\headrulewidth}{0.5pt}
\\renewcommand{\\footrulewidth}{0.5pt}
\\renewcommand{\\sectionmark}[1]{\\markright{\#1}}
\\fancyhf{}
\\fancyhead[CE,CO]{\\bf 研究業績リスト}
\\fancyhead[RE,LO]{\\bf \\rightmark}
\\fancyfoot[LE,RO]{\\thepage}
EOM
my $texFooter = <<"EOM";
以上.
\\end{document}
EOM
require Digest::MD5;
my %opts = (
use_XML => 0,
use_RSS => 0,
use_cache => 0, #$cgi->param('use_cache'),
use_DBforSession => $cgi->param('use_DBforSession'),
use_AutoJapaneseTags => 0,
use_mimetex => 0,
use_latexpdf => 0,
PASSWD => Digest::MD5::md5_hex($cgi->param('password')),
titleOfSite => $cgi->param('site_name'),
maintainerName => $cgi->param('maintainer_name'),
maintainerAddress => $cgi->param('maintainer_url'),
texHeader => $texHeader,
texFooter => $texFooter,
latexcmd => "/usr/bin/platex -halt-on-error",
dvipdfcmd => "/usr/bin/dvipdfmx -V 4",
);
eval {
my $odbh = DBI->connect("dbi:SQLite:dbname=$OPTIONS_DB", undef, undef,
{AutoCommit => 0, RaiseError => 1 });
$odbh->{sqlite_unicode} = 1;
my $SQL = "SELECT name FROM sqlite_master WHERE type='table'";
my @dbs = $odbh->selectrow_array($SQL);
my $sth;
if (grep(/^config$/,@dbs) == ()) {
$SQL = "CREATE TABLE config(id integer primary key autoincrement, name text not null, val text not null)";
$sth = $odbh->do($SQL);
foreach (keys(%opts)) {
$SQL = "INSERT INTO config VALUES(null,?,?)";
$sth = $odbh->prepare($SQL);
$sth->execute($_,$opts{$_});
}
$odbh->commit;
}
};
if ($@) {
$doc .= "</li><pre>$@</pre>";
$err++;
unlink($OPTIONS_DB);
} else {
$doc .= "<li>設定データベースを作成し,初期設定を書き込みました.</li></ul>\n";
}
if ($err == 0) {
$doc .= <<EOM;
<p>インストールは成功しました.</p>
<p>PMAN3にてログイン後,オプション設定メニューから各種の設定を変更できます.</p>
<p>PMAN3のご利用,誠にありがとうございます.</p>
<p class="red">なお,install.cgiは必ず削除してください.<p>
<center><a href="./install.cgi?FINISH=go">[PMAN3の起動]</p></a></center>
<p>PMAN2.xからデータを引き継がれる場合はこちらへお進みください.</p>
<center><a href="./install.cgi?THIRD=go">[PMAN2からのデータ移行]</a></p></center>
EOM
}
$doc .= <<EOM;
</div>
<div id="footer">
<p class="center">
<a href="http://se.is.kit.ac.jp/~o-mizuno/pman3.html">PMAN $VERSION</a> - Paper MANagement system / (C) 2002-2010, <a href="http://se.is.kit.ac.jp/~o-mizuno/">Osamu Mizuno</a> / All rights reserved.
</p>
</div>
</div>
</body>
</html>
EOM
}
sub third_page {
$doc .= <<EOM;
Content-Type: text/html; charset=utf-8
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>PMAN3 Installer</title>
<META http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Content-Style-Type" content="text/css" />
<link rel="stylesheet" type="text/css" href="tmpl/default/pman.css" />
</head>
<body>
<div id="container">
<div id="header">
<a class="logo" href="http://se.is.kit.ac.jp/~o-mizuno/pman3.html"><img class="logo" src="img/logo.png" /></a>
<h1>PMAN3 インストーラ</h1>
</div>
<div id="contents">
<h3>PMAN2.xからの移行手続き (1/2)</h3>
<p>現在ご利用中のPMAN2.xからデータの引き継ぎを行います.以下の情報を入力してください.</p>
<table>
<form method="POST" script="./install.cgi">
<input type="hidden" name="FOURTH" value="go" />
<tr>
<td class="fieldHead">PMAN2のデータ(bibdat.csv)格納場所</td>
<td class="fieldBody">URLではなく,サーバ上の絶対パスを指定してください.(例: /path/to/pamn2/data/bibdat.csv)</td>
<td class="fieldBody"><input type="text" name="csv_path" /></td>
</tr>
<tr>
<td class="fieldHead">PMAN2のカテゴリ情報(category.txt)格納場所</td>
<td class="fieldBody">URLではなく,サーバ上の絶対パスを指定してください.(例: /path/to/pamn2/data/category.txt)</td>
<td class="fieldBody"><input type="text" name="ctg_path" /></td>
</tr>
<tr>
<td class="fieldHead">PMAN2のPDFファイル格納ディレクトリ</td>
<td class="fieldBody">URLではなく,サーバ上の絶対パスを指定してください.(例: /path/to/pamn2/data/pdf)</td>
<td class="fieldBody"><input type="text" name="pdf_path" /></td>
</tr>
<tr>
<td class="fieldHead"></td>
<td class="fieldBody"></td>
<td class="fieldBody"><input type="submit" value="データ移行" /></td>
</tr>
</form>
</table>
</div>
<div id="footer">
<p class="center">
<a href="http://se.is.kit.ac.jp/~o-mizuno/pman3.html">PMAN $VERSION</a> - Paper MANagement system / (C) 2002-2010, <a href="http://se.is.kit.ac.jp/~o-mizuno/">Osamu Mizuno</a> / All rights reserved.
</p>
</div>
</div>
</body>
</html>
EOM
}
sub fourth_page {
require DBI;
require MIME::Types;
require Encode;
my $i = 1;
$doc .= <<EOM;
Content-Type: text/html; charset=utf-8
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>PMAN3 Installer</title>
<META http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="Content-Style-Type" content="text/css" />
<link rel="stylesheet" type="text/css" href="tmpl/default/pman.css" />
</head>
<body>
<div id="container">
<div id="header">
<a class="logo" href="http://se.is.kit.ac.jp/~o-mizuno/pman3.html"><img class="logo" src="img/logo.png" /></a>
<h1>PMAN3 インストーラ</h1>
</div>
<div id="contents">
<h3>PMAN2.xからの移行手続き (2/2)</h3>
EOM
my $csv_path = $cgi->param('csv_path');
my $ctg_path = $cgi->param('ctg_path');
my $pdf_path = $cgi->param('pdf_path');
my $err = 0;
if ($csv_path eq "" || $ctg_path eq "" || $pdf_path eq "") {
$doc .= "<p>Error: パスは全て指定してください.</p>";
$err ++;
} elsif (!(-f $csv_path && -f $ctg_path && -d $pdf_path)) {
$doc .= "<p>Error: ファイルまたはディレクトリが存在しません.</p>";
$err ++;
} else {
my $dbh = DBI->connect("dbi:SQLite:dbname=db/bibdat.db", undef, undef, {AutoCommit => 0, RaiseError => 1 });
$dbh->{sqlite_unicode} = 1;
my $databaseFile = $csv_path;
my @db = ();
open(PDB,$databaseFile);
my %a_names;
while (<PDB>) {
my $tmp = $_;
$tmp =~ s/(?:\x0D\x0A|[\x0D\x0A])?$/,/;
my @values = map {/^"(.*)"$/ ? scalar($_ = $1, s/""/"/g, $_) : $_}
($tmp =~ /("[^"]*(?:""[^"]*)*"|[^,]*),/g); #"
# print "$i\n";
for (my $j=0;$j<=$#values;$j++) {
Encode::from_to($values[$j],"euc-jp","utf-8");
utf8::decode($values[$j]);
}
# abstract
$values[27]=~s/<BR>/\n/ig;
eval {
my $sth = $dbh->prepare("INSERT INTO bib VALUES(null,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?,?);");
$sth ->execute($values[0], $values[1], $values[4],
$values[5], $values[6], $values[7], $values[8], $values[9],
$values[10], $values[11], $values[12], $values[13],
$values[14], $values[15], $values[16], $values[17],
$values[18], $values[19], $values[20], $values[21],
$values[22], $values[23], $values[24], $values[25],
$values[26], $values[27], $values[28], $values[29],
$values[30], $values[31], $values[32], $values[33],
$values[34], $values[35], "");
if ($values[3]) {
my $refdata = MIME::Types::by_suffix($values[3]);
my ($mediatype, $encoding) = @$refdata;
$sth = $dbh->prepare("INSERT INTO files VALUES(null,?,?,?,?,?,null)");
open(IN,"$pdf_path/$values[3]");
binmode(IN);
my $pdf = join('',<IN>);
close(IN);
$sth ->execute($i,$values[3],$mediatype,$pdf,0);
}
#4(author),6(key),29(author_e)
my @author = split(/\s*,\s*/,$values[4]);
my @key = split(/\s*,\s*/,$values[6]);
my @author_e = split(/\s*,\s*/,$values[29]);
for (my $j=0; $j<=$#author; $j++) {
my $a = $author[$j];
if (&isJapanese($a)) {
$a =~ s/\s//g;
if (defined $key[$j] && $key[$j] ne "") {
$sth = $dbh->prepare("INSERT INTO authors VALUES(null,?,?,?,?)");
$sth ->execute($i,$j,$a,$key[$j]);
} elsif (defined $author_e[$j] && $author_e[$j] ne "") {
$sth = $dbh->prepare("INSERT INTO authors VALUES(null,?,?,?,?)");
$sth ->execute($i,$j,$a,$author_e[$j]);
} else {
$sth = $dbh->prepare("INSERT INTO authors VALUES(null,?,?,?,?)");
$sth ->execute($i,$j,$a,$a);
}
} else {
$sth = $dbh->prepare("INSERT INTO authors VALUES(null,?,?,?,?)");
$sth ->execute($i,$j,$a,$a);
}
}
$dbh->commit;
$i++;
};
if ($@) {
$dbh->rollback; $dbh->disconnect;
$doc .= "<p>Error: $@</p>";
$err ++;
}
}
my $optionFile = $ctg_path;
open(OPT,$optionFile);
my $line = <OPT>;
close(OPT,$optionFile);
$line =~s/\s*$//;
Encode::from_to($line, "euc-jp", "utf-8");
utf8::decode($line);
my %jlist = split(/\t/,$line);
foreach (keys(%jlist)) {
my ($num,$lang) = split(/,/,$_);
my $description = $jlist{$_};
eval {
my $sth = $dbh->prepare("INSERT INTO ptypes VALUES(null,?,?,?,?);");
$sth ->execute($num, $num, $lang, $description);
$dbh->commit;
};
if ($@) {
$dbh->rollback; $dbh->disconnect;
$doc .= "<p>Error: $@</p>";
$err ++;
}
}
$dbh->disconnect;
}
if ($err) {
$doc .= <<EOM;
<p>移行手続きは失敗しました.</p>
<p>エラーの原因を取り除いた後,./db/*.dbを全て消去してから,install.cgiを再起動してはじめから設定をしてください.</p>
EOM
} else {
$doc .= "<p> $i 件の業績データを移行しました.</p>";
$doc .= "<p> 業績分類データを移行しました.</p>";
$doc .= <<EOM;
<p>移行手続きは成功しました.</p>
<p>PMAN3にてログイン後,オプション設定メニューから各種の設定を変更できます.</p>
<p>PMAN3のご利用,誠にありがとうございます.</p>
<p class="red">なお,install.cgiは必ず削除してください.<p>
<center><a href="./install.cgi?FINISH=go">[PMAN3の起動]</a></p></center>
EOM
}
$doc .= <<EOM;
</div>
<div id="footer">
<p class="center">
<a href="http://se.is.kit.ac.jp/~o-mizuno/pman3.html">PMAN $VERSION</a> - Paper MANagement system / (C) 2002-2010, <a href="http://se.is.kit.ac.jp/~o-mizuno/">Osamu Mizuno</a> / All rights reserved.
</p>
</div>
</div>
</body>
</html>
EOM
}
sub finish_page {
print $cgi->redirect("./pman3.cgi?MODE=list");
}
# 日本語が含まれていれば1
sub isJapanese {
my ($str) = @_;
if (utf8::is_utf8($str)) {
Encode::_utf8_off($str); # utf8 flagを落とす
}
Encode::from_to($str,"utf-8","euc-jp");
if ($str =~ /[\xA1-\xFE][\xA1-\xFE]/) {
return 1;
} else {
return 0;
}
}