Marcel de Rooy
158442eb9e
The get routine actually returns records from uploaded_files. It should be possible to replace its calls by direct calls of Koha::UploadedFiles. This patch is the crux of this patch set. It deals with all scripts that use Koha::Upload. In the process we do: [1] Add a file_handle method to Koha::UploadedFile. This was previously arranged via the fh parameter of get. [2] Add a full_path method to UploadedFile. Previously returned in the path hash key of get. (Name is replaced by filename.) [3] Add a search_term method too (implementing get({ term => .. }). This logic came from _lookup. [4] Add a keep_file parameter to delete method. Only used in test now. Test plan: [1] Run t/db_dependent/Upload.t [2] Go to Tools/Upload. Add an upload, download and delete. [3] Add another public upload , search for it. Use the hashvalue to download via opac with URL: cgi-bin/koha/opac-retrieve-file.pl?id=[hashvalue] [4] Go to Tools/Stage MARC for import. Import a marc file. [5] Go to Tools/Upload local cover image. Import an image file. Enable OPACLocalCoverImages to see result. [6] Test uploading a offline circulation file: Enable AllowOfflineCirculation, and create a koc file (plain text): Line1: Version=1.0\tA=1\tB=2 Line2: 2016-11-23 16:00:00 345\treturn\t[barcode] Note: Replace tabs and barcode. The number of tabs is essential! Checkout the item with your barcode. Go to Circulation/Offline circulation file upload. Upload and click Apply directly. Checkout again. Repeat Offline circulation file upload. Now click Add to offline circulation queue. [7] Connect the upload plugin to field 856$u. Enable HTML5MediaEnabled. Upload a webm file via the plugin. Click Choose to save the URL, and put 'video/webm' into 856$q. Save the biblio record. Check if you see the media tab with player on staff detail. (See also: Bug 17673 about empty OPACBaseURL.) Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io> Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org> Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
197 lines
6.4 KiB
Perl
Executable file
197 lines
6.4 KiB
Perl
Executable file
#!/usr/bin/perl
|
|
#
|
|
# Copyright 2011 C & P Bibliography Services
|
|
#
|
|
# This file is part of Koha.
|
|
#
|
|
# Koha is free software; you can redistribute it and/or modify it
|
|
# under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# Koha 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 General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with Koha; if not, see <http://www.gnu.org/licenses>.
|
|
#
|
|
#
|
|
#
|
|
|
|
=head1 NAME
|
|
|
|
upload-cover-image.pl - Script for handling uploading of both single and bulk coverimages and importing them into the database.
|
|
|
|
=head1 SYNOPSIS
|
|
|
|
upload-cover-image.pl
|
|
|
|
=head1 DESCRIPTION
|
|
|
|
This script is called and presents the user with an interface allowing him/her to upload a single cover image or bulk cover images via a zip file.
|
|
Images will be resized into thumbnails of 140x200 pixels and larger images of
|
|
800x600 pixels. If the images that are uploaded are larger, they will be
|
|
resized, maintaining aspect ratio.
|
|
|
|
=cut
|
|
|
|
use strict;
|
|
use warnings;
|
|
|
|
use File::Temp;
|
|
use CGI qw ( -utf8 );
|
|
use GD;
|
|
use C4::Context;
|
|
use C4::Auth;
|
|
use C4::Output;
|
|
use C4::Images;
|
|
use Koha::UploadedFiles;
|
|
use C4::Log;
|
|
|
|
my $debug = 1;
|
|
|
|
my $input = new CGI;
|
|
|
|
my $fileID = $input->param('uploadedfileid');
|
|
my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
|
|
{
|
|
template_name => "tools/upload-images.tt",
|
|
query => $input,
|
|
type => "intranet",
|
|
authnotrequired => 0,
|
|
flagsrequired => { tools => 'upload_local_cover_images' },
|
|
debug => 0,
|
|
}
|
|
);
|
|
|
|
my $filetype = $input->param('filetype');
|
|
my $biblionumber = $input->param('biblionumber');
|
|
#my $uploadfilename = $input->param('uploadfile'); # obsolete?
|
|
my $replace = !C4::Context->preference("AllowMultipleCovers")
|
|
|| $input->param('replace');
|
|
my $op = $input->param('op');
|
|
my %cookies = parse CGI::Cookie($cookie);
|
|
my $sessionID = $cookies{'CGISESSID'}->value;
|
|
|
|
my $error;
|
|
|
|
$template->{VARS}->{'filetype'} = $filetype;
|
|
$template->{VARS}->{'biblionumber'} = $biblionumber;
|
|
|
|
my $total = 0;
|
|
|
|
if ($fileID) {
|
|
my $upload = Koha::UploadedFiles->find( $fileID );
|
|
if ( $filetype eq 'image' ) {
|
|
my $fh = $upload->file_handle;
|
|
my $srcimage = GD::Image->new($fh);
|
|
$fh->close if $fh;
|
|
if ( defined $srcimage ) {
|
|
my $dberror = PutImage( $biblionumber, $srcimage, $replace );
|
|
if ($dberror) {
|
|
$error = 'DBERR';
|
|
}
|
|
else {
|
|
$total = 1;
|
|
}
|
|
}
|
|
else {
|
|
$error = 'OPNIMG';
|
|
}
|
|
undef $srcimage;
|
|
}
|
|
else {
|
|
my $filename = $upload->full_path;
|
|
my $dirname = File::Temp::tempdir( CLEANUP => 1 );
|
|
unless ( system( "unzip", $filename, '-d', $dirname ) == 0 ) {
|
|
$error = 'UZIPFAIL';
|
|
}
|
|
else {
|
|
my @directories;
|
|
push @directories, "$dirname";
|
|
foreach my $recursive_dir (@directories) {
|
|
my $dir;
|
|
opendir $dir, $recursive_dir;
|
|
while ( my $entry = readdir $dir ) {
|
|
push @directories, "$recursive_dir/$entry"
|
|
if ( -d "$recursive_dir/$entry" and $entry !~ /^[._]/ );
|
|
}
|
|
closedir $dir;
|
|
}
|
|
foreach my $dir (@directories) {
|
|
my $file;
|
|
if ( -e "$dir/idlink.txt" ) {
|
|
$file = "$dir/idlink.txt";
|
|
}
|
|
elsif ( -e "$dir/datalink.txt" ) {
|
|
$file = "$dir/datalink.txt";
|
|
}
|
|
else {
|
|
next;
|
|
}
|
|
if ( open( FILE, $file ) ) {
|
|
while ( my $line = <FILE> ) {
|
|
my $delim =
|
|
( $line =~ /\t/ ) ? "\t"
|
|
: ( $line =~ /,/ ) ? ","
|
|
: "";
|
|
|
|
#$debug and warn "Delimeter is \'$delim\'";
|
|
unless ( $delim eq "," || $delim eq "\t" ) {
|
|
warn
|
|
"Unrecognized or missing field delimeter. Please verify that you are using either a ',' or a 'tab'";
|
|
$error = 'DELERR';
|
|
}
|
|
else {
|
|
( $biblionumber, $filename ) = split $delim, $line, 2;
|
|
$biblionumber =~
|
|
s/[\"\r\n]//g; # remove offensive characters
|
|
$filename =~ s/[\"\r\n]//g;
|
|
$filename =~ s/^\s+//;
|
|
$filename =~ s/\s+$//;
|
|
if (C4::Context->preference("CataloguingLog")) {
|
|
logaction('CATALOGUING', 'MODIFY', $biblionumber, "biblio cover image: $filename");
|
|
}
|
|
my $srcimage = GD::Image->new("$dir/$filename");
|
|
if ( defined $srcimage ) {
|
|
$total++;
|
|
my $dberror =
|
|
PutImage( $biblionumber, $srcimage,
|
|
$replace );
|
|
if ($dberror) {
|
|
$error = 'DBERR';
|
|
}
|
|
}
|
|
else {
|
|
$error = 'OPNIMG';
|
|
}
|
|
undef $srcimage;
|
|
}
|
|
}
|
|
close(FILE);
|
|
}
|
|
else {
|
|
$error = 'OPNLINK';
|
|
}
|
|
}
|
|
}
|
|
}
|
|
$template->{VARS}->{'total'} = $total;
|
|
$template->{VARS}->{'uploadimage'} = 1;
|
|
$template->{VARS}->{'error'} = $error;
|
|
$template->{VARS}->{'biblionumber'} = $biblionumber;
|
|
}
|
|
|
|
output_html_with_http_headers $input, $cookie, $template->output;
|
|
|
|
exit 0;
|
|
|
|
=head1 AUTHORS
|
|
|
|
Written by Jared Camins-Esakov of C & P Bibliography Services, in part based on
|
|
code by Koustubha Kale of Anant Corporation and Chris Nighswonger of Foundation
|
|
Bible College.
|
|
|
|
=cut
|