]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/perlmods/lib/OpenILS/WWW/Reporter.pm
Post-2.5-m1 whitespace fixup
[working/Evergreen.git] / Open-ILS / src / perlmods / lib / OpenILS / WWW / Reporter.pm
1 package OpenILS::WWW::Reporter;
2 use strict; use warnings;
3
4 use vars qw/$dtype_xform_map $dtype_xform/;
5
6 use Apache2::Log;
7 use Apache2::Const -compile => qw(OK REDIRECT DECLINED :log);
8 use APR::Const    -compile => qw(:error SUCCESS);
9 use Apache2::RequestRec ();
10 use Apache2::RequestIO ();
11 use Apache2::RequestUtil;
12 use CGI;
13 use Data::Dumper;
14
15 use Template;
16
17 use OpenSRF::EX qw(:try);
18 use OpenSRF::System;
19 use XML::LibXML;
20
21 use OpenSRF::Utils::SettingsParser;
22 use OpenILS::Utils::Fieldmapper;
23 use OpenILS::WWW::Reporter::transforms;
24
25
26 # set the bootstrap config and template include directory when 
27 # this module is loaded
28 my $bootstrap;
29 my $includes = [];  
30 my $base_xml;
31 #my $base_xml_doc;
32
33 sub import {
34     my( $self, $bs_config, $core_xml, @incs ) = @_;
35     $bootstrap = $bs_config;
36     $base_xml = $core_xml;
37     $includes = [ @incs ];
38 }
39
40
41 # our templates plugins are here
42 my $plugin_base = 'OpenILS::Template::Plugin';
43
44 sub child_init {
45     OpenSRF::System->bootstrap_client( config_file => $bootstrap );
46
47     #parse the base xml file
48     #my $parser = XML::LibXML->new;
49     #$parser->expand_xinclude(1);
50
51     #$base_xml_doc = $parser->parse_file($base_xml);
52     return Apache2::Const::OK;
53 }
54
55 sub handler {
56
57     my $apache = shift;
58     return Apache2::Const::DECLINED if (-e $apache->filename);
59
60     my $cgi = CGI->new;
61
62     my $path = $apache->path_info;
63     (my $ttk = $path) =~ s{^/?([a-zA-Z0-9_]+).*?$}{$1}o;
64
65     $ttk = $apache->filename unless $ttk;
66     $ttk = "dashboard" unless $ttk;
67
68     $ttk = (split '/', $ttk)[-1];
69     
70     my $user;
71
72     # if the user is not logged in via cookie, route them to the login page
73     if(! ($user = verify_login($cgi->cookie("ses"))) ) {
74         $ttk = "login";
75     }
76
77
78     print "Content-type: text/html; charset=utf-8\n\n";
79     #print "Content-type: text/html\n\n";
80
81     _process_template(
82             apache      => $apache,
83             template        => "$ttk.ttk",
84             params      => { 
85                 user => $user, 
86                 stage_dir => $ttk, 
87                 config_xml => $base_xml, 
88                 },
89             );
90
91     return Apache2::Const::OK;
92 }
93
94
95 sub _process_template {
96
97     my %params = @_;
98     my $ttk             = $params{template}     || return undef;
99     my $apache          = $params{apache}           || undef;
100     my $param_hash      = $params{params}           || {};
101     $$param_hash{dtype_xform_map} = $OpenILS::WWW::Reporter::dtype_xform_map;
102     $$param_hash{dtype_xforms} = $OpenILS::WWW::Reporter::dtype_xforms;
103
104     my $template;
105
106     $template = Template->new( { 
107         OUTPUT          => $apache, 
108         ABSOLUTE        => 1, 
109         RELATIVE        => 1,
110         PLUGIN_BASE     => $plugin_base,
111         INCLUDE_PATH    => $includes, 
112         PRE_CHOMP       => 1,
113         POST_CHOMP      => 1,
114         #LOAD_PERL      => 1,
115         } 
116     );
117
118     try {
119
120         if( ! $template->process( $ttk, $param_hash ) ) { 
121             warn  "Error Processing Template: " . $template->error();
122             my $err = $template->error();
123             $err =~ s/\n/\<br\/\>/g;
124             warn "Error processing template $ttk\n";    
125             my $string =  "<br><b>Unable to process template:<br/><br/> " . $err . "</b>";
126             print "ERROR: $string";
127             #$template->process( $error_ttk , { error => $string } );
128         }
129
130     } catch Error with {
131         my $e = shift;
132         warn "Error processing template $ttk:  $e - $@ \n"; 
133         print "<center><br/><br/><b>Error<br/><br/> $e <br/><br/> $@ </b><br/></center>";
134         return;
135     };
136
137 }
138
139 # returns the user object if the session is valid, 0 otherwise
140 sub verify_login {
141     my $auth_token = shift;
142     return 0 unless $auth_token;
143
144     my $session = OpenSRF::AppSession->create("open-ils.auth");
145     my $req = $session->request(
146         "open-ils.auth.session.retrieve", $auth_token );
147     my $user = $req->gather(1);
148
149     if (ref($user) eq 'HASH' && $user->{ilsevent} == 1001) {
150         return 0;
151     }
152
153     return $user if ref($user);
154     return 0;
155 }
156
157
158
159 1;