]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/perlmods/OpenILS/WWW/Vandelay.pm
taught the vandelay upload form about some important acq-related fields
[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 FORBIDDEN :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 use OpenSRF::Utils::SettingsClient;
33
34 use UNIVERSAL::require;
35
36 our @formats = qw/USMARC UNIMARC XML BRE/;
37 my $MAX_FILE_SIZE = 10737418240; #10G
38 my $FILE_READ_SIZE = 4096;
39
40 # set the bootstrap config and template include directory when
41 # this module is loaded
42 my $bootstrap;
43
44 sub import {
45         my $self = shift;
46         $bootstrap = shift;
47 }
48
49
50 sub child_init {
51         OpenSRF::System->bootstrap_client( config_file => $bootstrap );
52 }
53
54 sub spool_marc {
55         my $r = shift;
56         my $cgi = new CGI;
57
58         my $auth = $cgi->param('ses') || $cgi->cookie('ses');
59
60         unless(verify_login($auth)) {
61         $logger->error("authentication failed on vandelay record import: $auth");
62             return Apache2::Const::FORBIDDEN;
63     }
64
65     my $data_fingerprint = '';
66         my $purpose = $cgi->param('purpose') || '';
67         my $infile = $cgi->param('marc_upload') || '';
68     my $bib_source = $cgi->param('bib_source') || '';
69     my $provider = $cgi->param('provider') || '';
70     my $picklist = $cgi->param('picklist') || '';
71     my $create_po = $cgi->param('create_po') || '';
72     my $ordering_agency = $cgi->param('ordering_agency') || '';
73
74     $logger->debug("purpose = $purpose, infile = $infile, bib_source = $bib_source ".
75         "provider = $provider, picklist = $picklist, create_po = $create_po, ordering_agency = $ordering_agency");
76
77         my $conf = OpenSRF::Utils::SettingsClient->new;
78         my $dir = $conf->config_value(
79         apps => 'open-ils.vandelay' => app_settings => databases => 'importer');
80
81     unless(-w $dir) {
82         $logger->error("We need some place to store our MARC files");
83             return Apache2::Const::FORBIDDEN;
84     }
85
86     if($infile and -e $infile) {
87         my ($total_bytes, $buf, $bytes) = (0);
88             $data_fingerprint = md5_hex(time."$$".rand());
89         my $outfile = "$dir/$data_fingerprint.mrc";
90
91         unless(open(OUTFILE, ">$outfile")) {
92             $logger->error("unable to open MARC file [$outfile] for writing: $@");
93                 return Apache2::Const::FORBIDDEN;
94         }
95
96         while($bytes = sysread($infile, $buf, $FILE_READ_SIZE)) {
97             $total_bytes += $bytes;
98             if($total_bytes >= $MAX_FILE_SIZE) {
99                 close(OUTFILE);
100                 unlink $outfile;
101                 $logger->error("import exceeded upload size: $MAX_FILE_SIZE");
102                     return Apache2::Const::FORBIDDEN;
103             }
104             print OUTFILE $buf;
105         }
106
107         close(OUTFILE);
108
109             OpenSRF::Utils::Cache->new->put_cache(
110                     'vandelay_import_spool_' . $data_fingerprint,
111                     {   purpose => $purpose, 
112                 path => $outfile,
113                 bib_source => $bib_source,
114                 provider => $provider,
115                 picklist => $picklist,
116                 create_po => $create_po,
117                 ordering_agency => $ordering_agency
118             }
119             );
120     }
121
122     $logger->info("uploaded MARC batch with key $data_fingerprint");
123     $r->content_type('text/plain; charset=utf-8');
124         print "$data_fingerprint";
125         return Apache2::Const::OK;
126 }
127
128 sub verify_login {
129         my $auth_token = shift;
130         return undef unless $auth_token;
131
132         my $user = OpenSRF::AppSession
133                 ->create("open-ils.auth")
134                 ->request( "open-ils.auth.session.retrieve", $auth_token )
135                 ->gather(1);
136
137         if (ref($user) eq 'HASH' && $user->{ilsevent} == 1001) {
138                 return undef;
139         }
140
141         return $user if ref($user);
142         return undef;
143 }
144
145 1;