]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/extras/import/marc2are.pl
Revert "install command-line MARC import tools in @prefix@/bin"
[Evergreen.git] / Open-ILS / src / extras / import / marc2are.pl
1 #!/usr/bin/perl
2 use strict;
3 use warnings;
4
5 use lib '/openils/lib/perl5/';
6
7 use OpenSRF::System;
8 use OpenSRF::Application;
9 use OpenSRF::EX qw/:try/;
10 use OpenSRF::AppSession;
11 use OpenSRF::MultiSession;
12 use OpenSRF::Utils::SettingsClient;
13 use OpenILS::Application::AppUtils;
14 use OpenILS::Utils::Fieldmapper;
15 use Digest::MD5 qw/md5_hex/;
16 use OpenSRF::Utils::JSON;
17 use Data::Dumper;
18 use Unicode::Normalize;
19
20 use Time::HiRes qw/time/;
21 use Getopt::Long;
22 use MARC::Batch;
23 use MARC::File::XML ( BinaryEncoding => 'utf-8' );
24 use MARC::Charset;
25
26 MARC::Charset->ignore_errors(1);
27
28 my ($count, $user, $password, $config, $marctype, $keyfile, @files, $quiet) =
29         (1, 'admin', 'open-ils', '/openils/conf/opensrf_core.xml', 'USMARC');
30
31 GetOptions(
32         'startid=i'     => \$count,
33         'user=s'        => \$user,
34         'marctype=s'    => \$marctype,
35         'password=s'    => \$password,
36         'config=s'      => \$config,
37         'file=s'        => \@files,
38         'quiet'         => \$quiet,
39 );
40
41 @files = @ARGV if (!@files);
42
43 my @ses;
44 my @req;
45 my %processing_cache;
46
47 OpenSRF::System->bootstrap_client( config_file => $config );
48 Fieldmapper->import(IDL => OpenSRF::Utils::SettingsClient->new->config_value("IDL"));
49
50 $user = OpenILS::Application::AppUtils->check_user_session( login($user,$password) )->id;
51
52 select STDERR; $| = 1;
53 select STDOUT; $| = 1;
54
55 my $batch = new MARC::Batch ( $marctype, @files );
56 $batch->strict_off();
57 $batch->warnings_off();
58
59 my $starttime = time;
60 my $rec;
61 while ( try { $rec = $batch->next } otherwise { $rec = -1 } ) {
62         next if ($rec == -1);
63         my $id = $count;
64
65         (my $xml = $rec->as_xml_record()) =~ s/\n//sog;
66         $xml =~ s/^<\?xml.+\?\s*>//go;
67         $xml =~ s/>\s+</></go;
68         $xml =~ s/\p{Cc}//go;
69         $xml = OpenILS::Application::AppUtils->entityize($xml);
70         $xml =~ s/[\x00-\x1f]//go;
71
72         my $bib = new Fieldmapper::authority::record_entry;
73         $bib->id($id);
74         $bib->active('t');
75         $bib->deleted('f');
76         $bib->marc($xml);
77         $bib->creator($user);
78         $bib->create_date('now');
79         $bib->editor($user);
80         $bib->edit_date('now');
81         $bib->last_xact_id('IMPORT-'.$starttime);
82
83         print OpenSRF::Utils::JSON->perl2JSON($bib)."\n";
84
85         $count++;
86
87         if (!$quiet && !($count % 20)) {
88                 print STDERR "\r$count\t". $count / (time - $starttime);
89         }
90 }
91
92 sub login {        
93         my( $username, $password, $type ) = @_;
94
95         $type |= "staff"; 
96
97         my $seed = OpenILS::Application::AppUtils->simplereq(
98                 'open-ils.auth',
99                 'open-ils.auth.authenticate.init',
100                 $username
101         );
102
103         die("No auth seed. Couldn't talk to the auth server") unless $seed;
104
105         my $response = OpenILS::Application::AppUtils->simplereq(
106                 'open-ils.auth',
107                 'open-ils.auth.authenticate.complete',
108                 {       username => $username,
109                         password => md5_hex($seed . md5_hex($password)),
110                         type => $type });
111
112         die("No auth response returned on login.") unless $response;
113
114         my $authtime = $response->{payload}->{authtime};
115         my $authtoken = $response->{payload}->{authtoken};
116
117         die("Login failed for user $username!") unless $authtoken;
118
119         return $authtoken;
120 }       
121