Permalink
Cannot retrieve contributors at this time
134 lines (97 sloc)
2.47 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package EPrints::Plugin::Convert::DocPDF; | |
| =pod | |
| =head1 NAME | |
| EPrints::Plugin::Convert::DocPDF - Convert documents to plain-text | |
| =head1 DESCRIPTION | |
| Uses the file extension to determine file type. | |
| =cut | |
| @ISA = qw/ EPrints::Plugin::Convert /; | |
| use strict; | |
| sub new | |
| { | |
| my( $class, %opts ) = @_; | |
| my $self = $class->SUPER::new( %opts ); | |
| $self->{name} = "Word to PDF conversion (via antiword)"; | |
| $self->{visible} = "all"; | |
| return $self; | |
| } | |
| sub can_convert | |
| { | |
| my ($plugin, $doc) = @_; | |
| # Get the main file name | |
| my $fn = $doc->get_main() or return (); | |
| my $mimetype = 'application/pdf'; | |
| my @type = ($mimetype => { | |
| plugin => $plugin, | |
| encoding => 'utf-8', | |
| phraseid => $plugin->html_phrase_id( $mimetype ), | |
| }); | |
| if( $fn =~ /\.doc$/ ) | |
| { | |
| if( $plugin->get_repository->can_execute( "antiword" ) ) | |
| { | |
| return @type; | |
| } | |
| } | |
| return (); | |
| } | |
| sub export | |
| { | |
| my ( $plugin, $dir, $doc, $type ) = @_; | |
| # What to call the temporary file | |
| my $main = $doc->get_main; | |
| my $repository = $plugin->get_repository(); | |
| my @txt_files; | |
| foreach my $file ( @{($doc->get_value( "files" ))} ) | |
| { | |
| my $filename = $file->get_value( "filename" ); | |
| my $tgt = $filename; | |
| $tgt=~s/\.doc$/\.pdf/; | |
| my $infile = $file->get_local_copy(); | |
| my $outfile = "$dir/$tgt"; | |
| $repository->exec( "antiwordpdf", | |
| SOURCE => $infile, | |
| TARGET_DIR => $dir, | |
| TARGET => $outfile, | |
| ); | |
| EPrints::Utils::chown_for_eprints( $outfile ); | |
| if( !-e $outfile || -z $outfile ) | |
| { | |
| if( $filename eq $doc->get_main ) | |
| { | |
| return (); | |
| } | |
| else | |
| { | |
| next; | |
| } | |
| } | |
| if( $filename eq $doc->get_main ) | |
| { | |
| unshift @txt_files, $tgt; | |
| } | |
| else | |
| { | |
| push @txt_files, $tgt; | |
| } | |
| } | |
| return @txt_files; | |
| } | |
| 1; | |
| =head1 COPYRIGHT | |
| =for COPYRIGHT BEGIN | |
| Copyright 2000-2011 University of Southampton. | |
| =for COPYRIGHT END | |
| =for LICENSE BEGIN | |
| This file is part of EPrints L<http://www.eprints.org/>. | |
| EPrints is free software: you can redistribute it and/or modify it | |
| under the terms of the GNU Lesser General Public License as published | |
| by the Free Software Foundation, either version 3 of the License, or | |
| (at your option) any later version. | |
| EPrints is distributed in the hope that it will be useful, but WITHOUT | |
| ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
| FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public | |
| License for more details. | |
| You should have received a copy of the GNU Lesser General Public | |
| License along with EPrints. If not, see L<http://www.gnu.org/licenses/>. | |
| =for LICENSE END | |