source: main/trunk/greenstone2/cgi-bin/talkback-transfer.pl@ 23518

Last change on this file since 23518 was 23518, checked in by davidb, 13 years ago

Additional info added error message that ensures GLIServer.jar file exists.

  • Property svn:executable set to *
File size: 5.0 KB
Line 
1#!/usr/bin/perl -w
2
3use strict;
4
5use LWP::UserAgent;
6use HTTP::Request::Common;
7
8use CGI::Carp qw(fatalsToBrowser);
9use CGI;
10
11use File::Basename;
12
13BEGIN {
14 eval('require "./gsdlCGI.pm"');
15 if ($@)
16 {
17 print STDOUT "Content-type:text/plain\n\n";
18 print STDOUT "ERROR: $@\n";
19 exit 0;
20 }
21
22 # Line to stop annoying child DOS CMD windows from appearing
23 Win32::SetChildShowWindow(0)
24 if defined &Win32::SetChildShowWindow;
25}
26
27
28
29
30sub get_infodb_type
31{
32 my ($opt_site,$collect_home,$collect) = @_;
33
34 my $out = "STDERR";
35
36 $collect = &colcfg::use_collection($opt_site, $collect, $collect_home);
37
38 if ($collect eq "") {
39 print STDERR "Error: failed to find collection $collect in $collect_home\n";
40 print STDOUT "Content-type:text/plain\n\n";
41 print STDOUT "ERROR: Failed to find collection $collect\n";
42 exit 0;
43
44 }
45
46 # Read in the collection configuration file.
47 my ($config_filename, $gs_mode) = &colcfg::get_collect_cfg_name($out);
48 my $collectcfg = &colcfg::read_collection_cfg ($config_filename, $gs_mode);
49
50 return $collectcfg->{'infodbtype'};
51}
52
53
54sub oid_to_docxml_filename
55{
56 my ($opt_site,$collect_home,$collect,$docid) = @_;
57
58 my $infodb_type = get_infodb_type($opt_site,$collect_home,$collect);
59
60 # Derive the archives dir
61 my $archive_dir = &util::filename_cat($collect_home,$collect,"archives");
62
63 # Obtain the doc.xml path for the specified docID
64 my $arcinfo_doc_filename
65 = &dbutil::get_infodb_file_path($infodb_type, "archiveinf-doc",
66 $archive_dir);
67 my $doc_rec
68 = &dbutil::read_infodb_entry($infodb_type, $arcinfo_doc_filename,
69 $docid);
70
71 my $doc_xml_file = $doc_rec->{'doc-file'}->[0];
72 my $assoc_path = dirname($doc_xml_file);
73
74 # The $doc_xml_file is relative to the archives, so now let's get the
75 # full path
76 my $doc_xml_filename = &util::filename_cat($archive_dir,$doc_xml_file);
77
78 return ($doc_xml_filename,$assoc_path);
79}
80
81sub zip_up_archives_doc
82{
83 my ($gsdl_cgi,$collect_home,$collect,$doc_xml_filename,$assoc_path) = @_;
84
85 my $timestamp = time();
86 my $lang_env = $gsdl_cgi->clean_param("lr") || "";
87
88 my $archive_dir = &util::filename_cat($collect_home,$collect,"archives");
89
90 # Zip up the doc_xml file and all the files associated with it
91 my $java = $gsdl_cgi->get_java_path();
92 my $jar_dir= &util::filename_cat($ENV{'GSDLHOME'}, "bin", "java");
93 my $java_classpath = &util::filename_cat($jar_dir,"GLIServer.jar");
94
95 if (!-f $java_classpath) {
96 my $progname = $0;
97 $progname =~ s/^.*[\/\\]//;
98 my $mess = "$progname:\nFailed to find $java_classpath\n";
99 $gsdl_cgi->generate_error($mess);
100 }
101
102 my $zip_file = "$collect-$timestamp.zip";
103 my $zip_file_path = &util::filename_cat($archive_dir,$zip_file);
104
105 my $java_args = "\"$zip_file_path\" \"$archive_dir\" \"$assoc_path\"";
106
107 $ENV{'LANG'} = $lang_env;
108 my $java_command = "\"$java\" -classpath \"$java_classpath\" org.greenstone.gatherer.remote.ZipFiles $java_args";
109
110 my $java_output = `$java_command`;
111 my $java_status = $?;
112 if ($java_status > 0) {
113 $gsdl_cgi->generate_error("Java failed: $java_command\n--\n$java_output\nExit status: " . ($java_status / 256) . "\n" . $gsdl_cgi->check_java_home());
114 }
115
116 # Check that the zip file was created successfully
117 if (!-e $zip_file_path || -z $zip_file_path) {
118 $gsdl_cgi->generate_error("Collection zip file $zip_file_path could not be created.");
119 }
120
121 return $zip_file_path;
122
123}
124
125sub main
126{
127 # Setup greenstone Perl include paths so additional packages can be found
128 my $gsdl_cgi = gsdlCGI->new();
129 $gsdl_cgi->setup_gsdl();
130
131 my $gsdl_home = $gsdl_cgi->get_gsdl_home();
132 my $collect_home = &util::filename_cat($gsdl_home,"collect");
133
134 require dbutil;
135 require talkback;
136 require colcfg;
137
138 my $oid = $gsdl_cgi->param('oid');
139 my $collect = $gsdl_cgi->param('fromCollect');
140 my $toCollect = $gsdl_cgi->param('toCollect');
141 my $site = $gsdl_cgi->param('site');
142
143 # sanity check
144 if (!defined $oid || !defined $collect) {
145 print STDOUT "Content-type:text/plain\n\n";
146 print STDOUT "ERROR: Malformed CGI argments. Need to specify 'oid' and 'collect'\n";
147 exit 0;
148 }
149
150 my $uniq_prefix = "$collect-$oid";
151
152 my ($docxml_filename,$assoc_path)
153 = oid_to_docxml_filename($site,$collect_home,$collect,$oid);
154
155 my $zip_filename
156 = zip_up_archives_doc($gsdl_cgi,$collect_home,$collect,
157 $docxml_filename,$assoc_path);
158
159 my $talktoUploadURL = $gsdl_cgi->param('talktoUpload');
160
161 my $browser = LWP::UserAgent->new(agent => 'Perl File Upload');
162
163 my $response = $browser->post(
164 $talktoUploadURL,
165 [ 'yes_upload' => '1',
166 'process' => '1',
167 'oid' => $oid,
168 'toCollect' => $toCollect,
169 'uploadedfile' => [$zip_filename, "$uniq_prefix-doc.zip"]
170 ],
171 'Content_Type' => 'form-data'
172 );
173
174 if ($response->is_success) {
175 print "Content-type:text/html\n\n";
176 print $response->content;
177 }
178 else {
179 print $response->error_as_HTML;
180 }
181
182}
183
184main();
185
Note: See TracBrowser for help on using the repository browser.