]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/perlmods/OpenILS/WWW/Vandelay.pm
32688787061d92cd0e675203b26f37303a25004e
[Evergreen.git] / Open-ILS / src / perlmods / OpenILS / WWW / Vandelay.pm
1 package OpenILS::WWW::Vandelay;
2 use strict;
3 use warnings;
4 use bytes;
5
6 use Apache2::Log;
7 use Apache2::Const -compile => qw(OK REDIRECT DECLINED NOT_FOUND :log);
8 use APR::Const    -compile => qw(:error SUCCESS);
9 use APR::Table;
10
11 use Apache2::RequestRec ();
12 use Apache2::RequestIO ();
13 use Apache2::RequestUtil;
14 use CGI;
15 use Data::Dumper;
16 use Text::CSV;
17
18 use OpenSRF::EX qw(:try);
19 use OpenSRF::Utils::Cache;
20 use OpenSRF::System;
21 use OpenSRF::AppSession;
22 use XML::LibXML;
23
24 use OpenILS::Utils::Fieldmapper;
25 use OpenSRF::Utils::Logger qw/$logger/;
26
27 use MARC::Record;
28 use MARC::File::XML;
29
30 use MIME::Base64;
31 use Digest::MD5 qw/md5_hex/;
32
33 use UNIVERSAL::require;
34
35 our @formats = qw/USMARC UNIMARC XML BRE/;
36
37 # set the bootstrap config and template include directory when
38 # this module is loaded
39 my $bootstrap;
40
41 sub import {
42         my $self = shift;
43         $bootstrap = shift;
44 }
45
46
47 sub child_init {
48         OpenSRF::System->bootstrap_client( config_file => $bootstrap );
49 }
50
51 sub spool_marc {
52         my $r = shift;
53         my $cgi = new CGI;
54
55         my $auth = $cgi->param('ses') || $cgi->cookie('ses');
56
57         return Apache2::Const::FORBIDDEN unless verify_login($auth);
58
59         my $cache = new OpenSRF::Utils::Cache();
60         my $file = $cgi->param('marc_upload');
61         my $filename = "$file";
62
63         my $data = join '', (<$file>);
64         $data = encode_base64($data);
65
66         my $data_fingerprint = md5_hex($data);
67
68         $cache->put_cache('vandelay_import_spool_' . $data_fingerprint, $data);
69
70         print "Content-type: text/plain; charset=utf-8\n\n$data_fingerprint";
71
72         return Apache2::Const::OK;
73
74 }
75
76 sub verify_login {
77         my $auth_token = shift;
78         return undef unless $auth_token;
79
80         my $user = OpenSRF::AppSession
81                 ->create("open-ils.auth")
82                 ->request( "open-ils.auth.session.retrieve", $auth_token )
83                 ->gather(1);
84
85         if (ref($user) eq 'HASH' && $user->{ilsevent} == 1001) {
86                 return undef;
87         }
88
89         return $user if ref($user);
90         return undef;
91 }
92
93 1;