-
Notifications
You must be signed in to change notification settings - Fork 0
/
phase2.cgi
executable file
·50 lines (43 loc) · 1.39 KB
/
phase2.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
#!/usr/bin/perl
use lib ((getpwuid($<))[7]) . '/local/lib/perl5';
use strict;
use warnings;
use CGI;
use CGI::Session;
use CGI::Carp qw(fatalsToBrowser);
use HTML::Template;
use SFCON::Register;
use pgreglib;
our %CONDEF_CONST;
my $register = SFCON::Register->new;
my $cgi = CGI->new;
# セッションID = urlパラメータ||cookieからCGISESSID||取得できなかったらundef.
my $sid=$cgi->param('ID')||$cgi->cookie('ID')||undef;
my $session=CGI::Session->new(undef,$sid,{Directory=>$register->session_dir()});
my $input_page;
my $http_header;
if(defined $sid && $sid eq $session->id){
# 取得したセッションidが有効:確認画面表示
$input_page=HTML::Template->new(filename => 'phase2-tmpl.html');
$session->param('phase', '2-1');
# テンプレートにパラメータを設定
pgreglib::pg_HtmlTmpl_set($input_page, $session, undef);
$http_header = $cgi->header(-charset=>'UTF-8', -expires=>'now');
} else{
# 古いセッションを削除
if(defined $sid && $sid ne $session->id){
$session->close;
$session->delete;
}
# 取得したセッションidが無効:エラー画面表示
$input_page=HTML::Template->new(filename => 'error.html');
$http_header = $cgi->header(-charset=>'UTF-8');
}
# 共通のTMPL変数置き換え
pgreglib::pg_stdHtmlTmpl_set($input_page, $sid);
print $http_header;
print "\n\n";
print $input_page->output;
exit;
1;
#end