]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/perlmods/OpenILS/WWW/Proxy.pm
move the default proxy html into a heredoc
[Evergreen.git] / Open-ILS / src / perlmods / OpenILS / WWW / Proxy.pm
1 package OpenILS::WWW::Proxy;
2 use strict; use warnings;
3
4 use Apache2::Log;
5 use Apache2::Const -compile => qw(REDIRECT FORBIDDEN OK NOT_FOUND DECLINED :log);
6 use APR::Const    -compile => qw(:error SUCCESS);
7 use CGI;
8 use Data::Dumper;
9 use Digest::MD5 qw/md5_hex/;
10
11 use OpenSRF::EX qw(:try);
12 use OpenSRF::System;
13
14
15 # set the bootstrap config and template include directory when 
16 # this module is loaded
17 my $bootstrap;
18 my $ssl_off;
19
20 my $default_template = <<HTML
21 <html>
22         <head>
23                 <title>TITLE</title>
24         </head>
25         <body>
26                 <br/><br/><br/>
27                 <center>
28                 <form method='POST'>
29                         <table style='border-collapse: collapse; border: 1px solid black;'>
30                                 <tr>
31                                         <th colspan='2' align='center'><u>DESCRIPTION</u></th>
32                                 </tr>
33                                 <tr>
34                                         <th align="right">Username or barcode:</th>
35                                         <td><input type="text" name="user"/></td>
36                                 </tr>
37                                 <tr>
38                                         <th align="right">Password:</th>
39                                         <td><input type="password" name="passwd"/></td>
40                                 </tr>
41                         </table>
42                         <input type="submit" value="Log in"/>
43                 </form>
44                 </center>
45         </body>
46 </html>
47 HTML
48
49 sub import {
50         my $self = shift;
51         $bootstrap = shift;
52         $ssl_off = shift;
53 }
54
55
56 sub child_init {
57         OpenSRF::System->bootstrap_client( config_file => $bootstrap );
58 }
59
60 sub handler {
61         my $apache = shift;
62
63         my $proxyhtml = $apache->dir_config('OILSProxyHTML');
64         my $title = $apache->dir_config('OILSProxyTitle');
65         my $desc = $apache->dir_config('OILSProxyDescription');
66         my $ltype = $apache->dir_config('OILSProxyLoginType');
67         my $perms = [ split ' ', $apache->dir_config('OILSProxyPermissions') ];
68
69         return Apache2::Const::NOT_FOUND unless ($title || $proxyhtml);
70         return Apache2::Const::NOT_FOUND unless (@$perms);
71
72         my $cgi = new CGI;
73         my $auth_ses = $cgi->cookie('ses') || $cgi->param('ses');
74         my $ws_ou = $cgi->cookie('ws_ou') || $cgi->param('ws_ou');
75
76         my $url = $cgi->url;
77
78         # push everyone to the secure site
79         if (!$ssl_off && $url =~ /^http:/o) {
80                 $url =~ s/^http:/https:/o;
81                 print "Location: $url\n\n";
82                 return Apache2::Const::OK;
83         }
84
85         if (!$auth_ses) {
86                 my $u = $cgi->param('user');
87                 my $p = $cgi->param('passwd');
88
89                 if (!$u) {
90
91                         print $cgi->header(-type=>'text/html', -expires=>'-1d');
92                         if (!$proxyhtml) {
93                                 $proxyhtml = $default_template;
94                                 $proxyhtml =~ s/TITLE/$title/gso;
95                                 $proxyhtml =~ s/DESCRIPTION/$desc/gso;
96                         } else {
97                                 # XXX template toolkit??
98                         }
99
100                         print $proxyhtml;
101                         return Apache2::Const::OK;
102                 }
103
104                 $auth_ses = oils_login($u, $p, $ltype);
105                 if ($auth_ses) {
106                         print $cgi->redirect(
107                                 -uri=>$url,
108                                 -cookie=>$cgi->cookie(
109                                         -name=>'ses',
110                                         -value=>$auth_ses,
111                                         -path=>'/',-expires=>'+1h'
112                                 )
113                         );
114                         return Apache2::Const::REDIRECT;
115                 }
116         }
117
118         my $user = verify_login($auth_ses);
119         return Apache2::Const::FORBIDDEN unless ($user);
120
121         $ws_ou ||= $user->home_ou;
122
123         warn "Checking perms " . join(',', @$perms) . " for user " . $user->id . " at location $ws_ou\n";
124
125         my $failures = OpenSRF::AppSession
126                 ->create('open-ils.actor')
127                 ->request('open-ils.actor.user.perm.check', $auth_ses, $user->id, $ws_ou, $perms)
128                 ->gather(1);
129
130         return Apache2::Const::FORBIDDEN if (@$failures > 0);
131
132         # they're good, let 'em through
133         return Apache2::Const::DECLINED;
134 }
135
136 # returns the user object if the session is valid, 0 otherwise
137 sub verify_login {
138         my $auth_token = shift;
139         return undef unless $auth_token;
140
141         my $user = OpenSRF::AppSession
142                 ->create("open-ils.auth")
143                 ->request( "open-ils.auth.session.retrieve", $auth_token )
144                 ->gather(1);
145
146         if (ref($user) eq 'HASH' && $user->{ilsevent} == 1001) {
147                 return undef;
148         }
149
150         return $user if ref($user);
151         return undef;
152 }
153
154 sub oils_login {
155         my( $username, $password, $type ) = @_;
156
157         $type |= "staff";
158         my $nametype = 'username';
159         $nametype = 'barcode' if ($username =~ /^\d+$/o);
160
161         my $seed = OpenSRF::AppSession
162                 ->create("open-ils.auth")
163                 ->request( 'open-ils.auth.authenticate.init', $username )
164                 ->gather(1);
165
166         return undef unless $seed;
167
168         my $response = OpenSRF::AppSession
169                 ->create("open-ils.auth")
170                 ->request( 'open-ils.auth.authenticate.complete',
171                         { $nametype => $username,
172                           password => md5_hex($seed . md5_hex($password)),
173                           type => $type })
174                 ->gather(1);
175
176         return undef unless $response;
177
178         return $response->{payload}->{authtoken};
179 }
180
181 1;
182