]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/perlmods/lib/OpenILS/WWW/Vandelay.pm
0cdc41d39545006ae142cda8c2f67c9f430b4130
[working/Evergreen.git] / Open-ILS / src / perlmods / lib / 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 ( BinaryEncoding => 'UTF-8' );
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
70     $logger->debug("purpose = $purpose, infile = $infile, bib_source = $bib_source");
71
72         my $conf = OpenSRF::Utils::SettingsClient->new;
73         my $dir = $conf->config_value(
74         apps => 'open-ils.vandelay' => app_settings => databases => 'importer');
75
76     unless(-w $dir) {
77         $logger->error("We need some place to store our MARC files");
78             return Apache2::Const::FORBIDDEN;
79     }
80
81     if($infile and -e $infile) {
82         my ($total_bytes, $buf, $bytes) = (0);
83             $data_fingerprint = md5_hex(time."$$".rand());
84         my $outfile = "$dir/$data_fingerprint.mrc";
85
86         unless(open(OUTFILE, ">$outfile")) {
87             $logger->error("unable to open MARC file [$outfile] for writing: $@");
88                 return Apache2::Const::FORBIDDEN;
89         }
90
91         while($bytes = sysread($infile, $buf, $FILE_READ_SIZE)) {
92             $total_bytes += $bytes;
93             if($total_bytes >= $MAX_FILE_SIZE) {
94                 close(OUTFILE);
95                 unlink $outfile;
96                 $logger->error("import exceeded upload size: $MAX_FILE_SIZE");
97                     return Apache2::Const::FORBIDDEN;
98             }
99             print OUTFILE $buf;
100         }
101
102         close(OUTFILE);
103
104             OpenSRF::Utils::Cache->new->put_cache(
105                     'vandelay_import_spool_' . $data_fingerprint,
106                     {   purpose => $purpose, 
107                 path => $outfile,
108                 bib_source => $bib_source,
109             }
110             );
111     }
112
113     $logger->info("uploaded MARC batch with key $data_fingerprint");
114     $r->content_type('text/plain; charset=utf-8');
115         print "$data_fingerprint";
116         return Apache2::Const::OK;
117 }
118
119 sub verify_login {
120         my $auth_token = shift;
121         return undef unless $auth_token;
122
123         my $user = OpenSRF::AppSession
124                 ->create("open-ils.auth")
125                 ->request( "open-ils.auth.session.retrieve", $auth_token )
126                 ->gather(1);
127
128         if (ref($user) eq 'HASH' && $user->{ilsevent} == 1001) {
129                 return undef;
130         }
131
132         return $user if ref($user);
133         return undef;
134 }
135
136 1;