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

Last change on this file since 23161 was 23161, checked in by davidb, 14 years ago

Corrected ZipFile to ZipFiles

  • Property svn:executable set to *
File size: 4.9 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_string
68 = &dbutil::read_infodb_entry($infodb_type, $arcinfo_doc_filename,
69 $docid);
70 my $doc_rec = &dbutil::convert_infodb_string_to_hash($doc_rec_string);
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 my $zip_file = "$collect-$timestamp.zip";
96 my $zip_file_path = &util::filename_cat($archive_dir,$zip_file);
97
98 my $java_args = "\"$zip_file_path\" \"$archive_dir\" \"$assoc_path\"";
99 if($gsdl_cgi->greenstone_version() != 2) {
100 $java_args .= " gsdl3";
101 }
102
103 $ENV{'LANG'} = $lang_env;
104 my $java_command = "\"$java\" -classpath \"$java_classpath\" org.greenstone.gatherer.remote.ZipFiles $java_args";
105
106 my $java_output = `$java_command`;
107 my $java_status = $?;
108 if ($java_status > 0) {
109 $gsdl_cgi->generate_error("Java failed: $java_command\n--\n$java_output\nExit status: " . ($java_status / 256) . "\n" . $gsdl_cgi->check_java_home());
110 }
111
112 # Check that the zip file was created successfully
113 if (!-e $zip_file_path || -z $zip_file_path) {
114 $gsdl_cgi->generate_error("Collection zip file $zip_file_path could not be created.");
115 }
116
117 return $zip_file_path;
118
119}
120
121sub main
122{
123 # Setup greenstone Perl include paths so additional packages can be found
124 my $gsdl_cgi = gsdlCGI->new();
125 $gsdl_cgi->setup_gsdl();
126
127 my $gsdl_home = $gsdl_cgi->get_gsdl_home();
128 my $collect_home = &util::filename_cat($gsdl_home,"collect");
129
130 require dbutil;
131 require talkback;
132 require colcfg;
133
134 my $oid = $gsdl_cgi->param('oid');
135 my $collect = $gsdl_cgi->param('collect');
136 my $site = $gsdl_cgi->param('site');
137
138 # sanity check
139 if (!defined $oid || !defined $collect) {
140 print STDOUT "Content-type:text/plain\n\n";
141 print STDOUT "ERROR: Malformed CGI argments. Need to specify 'oid' and 'collect'\n";
142 exit 0;
143 }
144
145 my $uniq_prefix = "$collect-$oid";
146
147 my ($docxml_filename,$assoc_path)
148 = oid_to_docxml_filename($site,$collect_home,$collect,$oid);
149
150 my $zip_filename
151 = zip_up_archives_doc($gsdl_cgi,$collect_home,$collect,
152 $docxml_filename,$assoc_path);
153
154 my $talktoUploadURL = $gsdl_cgi->param('talktoUpload');
155
156 my $browser = LWP::UserAgent->new(agent => 'Perl File Upload');
157
158 my $response = $browser->post(
159 $talktoUploadURL,
160 [ 'yes_upload' => '1',
161 'process' => '1',
162 'oid' => $oid,
163 'collect' => $collect,
164 'uploadedfile' => [$zip_filename, "$uniq_prefix-doc.zip]
165 ],
166 'Content_Type' => 'form-data'
167 );
168
169 if ($response->is_success) {
170 print "Content-type:text/html\n\n";
171 print $response->content;
172 }
173 else {
174 print $response->error_as_HTML;
175 }
176
177}
178
179main();
180
Note: See TracBrowser for help on using the repository browser.