4 # This file is part of Koha.
6 # Koha is free software; you can redistribute it and/or modify it
7 # under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 3 of the License, or
9 # (at your option) any later version.
11 # Koha is distributed in the hope that it will be useful, but
12 # WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # along with Koha; if not, see <http://www.gnu.org/licenses>.
22 use List
::MoreUtils
qw(uniq);
24 use C4
::Branch
; # GetBranches
26 use C4
::Koha
; # GetItemTypes
29 use Koha
::Biblioitems
;
31 use Koha
::DateUtils
qw( dt_from_string output_pref );
32 use Koha
::Exporter
::Record
;
36 my $dont_export_items = $query->param("dont_export_item") || 0;
37 my $record_type = $query->param("record_type");
38 my $op = $query->param("op") || '';
39 my $output_format = $query->param("format") || $query->param("output_format") || 'iso2709';
40 my $backupdir = C4
::Context
->config('backupdir');
41 my $filename = $query->param("filename") || 'koha.mrc';
42 $filename =~ s/(\r|\n)//;
44 my $dbh = C4
::Context
->dbh;
47 # biblionumbers is sent from circulation.pl only
48 if ( $query->param("biblionumbers") ) {
49 $record_type = 'bibs';
50 @record_ids = $query->multi_param("biblionumbers");
53 # Default value for output_format is 'iso2709'
54 $output_format ||= 'iso2709';
55 # Retrocompatibility for the format parameter
56 $output_format = 'iso2709' if $output_format eq 'marc';
58 my ( $template, $loggedinuser, $cookie, $flags ) = get_template_and_user
(
60 template_name
=> "tools/export.tt",
64 flagsrequired
=> { tools
=> 'export_catalog' },
69 my @branch = $query->multi_param("branch");
71 # Limit to local branch if IndependentBranches and not superlibrarian
74 C4
::Context
->preference('IndependentBranches')
75 && C4
::Context
->userenv
76 && !C4
::Context
->IsSuperLibrarian()
77 && C4
::Context
->userenv->{branch
}
79 # Limit result to local branch strip_nonlocal_items
80 or $query->param('strip_nonlocal_items')
83 @branch = ( C4
::Context
->userenv->{'branch'} );
86 my %branchmap = map { $_ => 1 } @branch; # for quick lookups
88 if ( $op eq "export" ) {
90 my $export_remove_fields = $query->param("export_remove_fields") || q
||;
91 my @biblionumbers = $query->multi_param("biblionumbers");
92 my @itemnumbers = $query->multi_param("itemnumbers");
96 if ( $record_type eq 'bibs' or $record_type eq 'auths' ) {
97 # No need to retrieve the record_ids if we already get them
98 unless ( @record_ids ) {
99 if ( $record_type eq 'bibs' ) {
100 my $starting_biblionumber = $query->param("StartingBiblionumber");
101 my $ending_biblionumber = $query->param("EndingBiblionumber");
102 my $itemtype = $query->param("itemtype");
103 my $start_callnumber = $query->param("start_callnumber");
104 my $end_callnumber = $query->param("end_callnumber");
105 my $start_accession =
106 ( $query->param("start_accession") )
107 ? dt_from_string
( scalar $query->param("start_accession") )
110 ( $query->param("end_accession") )
111 ? dt_from_string
( scalar $query->param("end_accession") )
116 ( $starting_biblionumber or $ending_biblionumber )
118 "me.biblionumber" => {
119 ( $starting_biblionumber ?
( '>=' => $starting_biblionumber ) : () ),
120 ( $ending_biblionumber ?
( '<=' => $ending_biblionumber ) : () ),
125 ( $start_callnumber or $end_callnumber )
127 'items.itemcallnumber' => {
128 ( $start_callnumber ?
( '>=' => $start_callnumber ) : () ),
129 ( $end_callnumber ?
( '<=' => $end_callnumber ) : () ),
134 ( $start_accession or $end_accession )
136 'items.dateaccessioned' => {
137 ( $start_accession ?
( '>=' => $start_accession ) : () ),
138 ( $end_accession ?
( '<=' => $end_accession ) : () ),
142 ( @branch ?
( 'items.homebranch' => { in => \
@branch } ) : () ),
145 C4
::Context
->preference('item-level_itypes')
146 ?
( 'items.itype' => $itemtype )
147 : ( 'biblioitems.itemtype' => $itemtype )
152 my $biblioitems = Koha
::Biblioitems
->search( $conditions, { join => 'items', columns
=> 'biblionumber' } );
153 while ( my $biblioitem = $biblioitems->next ) {
154 push @record_ids, $biblioitem->biblionumber;
157 elsif ( $record_type eq 'auths' ) {
158 my $starting_authid = $query->param('starting_authid');
159 my $ending_authid = $query->param('ending_authid');
160 my $authtype = $query->param('authtype');
163 ( $starting_authid or $ending_authid )
166 ( $starting_authid ?
( '>=' => $starting_authid ) : () ),
167 ( $ending_authid ?
( '<=' => $ending_authid ) : () ),
171 ( $authtype ?
( authtypecode
=> $authtype ) : () ),
173 # Koha::Authority is not a Koha::Object...
174 my $authorities = Koha
::Database
->new->schema->resultset('AuthHeader')->search( $conditions );
175 @record_ids = map { $_->authid } $authorities->all;
179 @record_ids = uniq
@record_ids;
180 if ( @record_ids and my $filefh = $query->upload("id_list_file") ) {
181 my @filter_record_ids = <$filefh>;
182 @filter_record_ids = map { my $id = $_; $id =~ s/[\r\n]*$//; $id } @filter_record_ids;
184 my %record_ids = map { $_ => 1 } @record_ids;
185 @record_ids = grep $record_ids{$_}, @filter_record_ids;
188 print CGI
->new->header(
189 -type
=> 'application/octet-stream',
191 -attachment
=> $filename,
194 Koha
::Exporter
::Record
::export
(
195 { record_type
=> $record_type,
196 record_ids
=> \
@record_ids,
197 format
=> $output_format,
198 filename
=> $filename,
199 itemnumbers
=> \
@itemnumbers,
200 dont_export_fields
=> $export_remove_fields,
201 csv_profile_id
=> ( $query->param('csv_profile_id') || GetCsvProfileId
( C4
::Context
->preference('ExportWithCsvProfile') ) || undef ),
202 export_items
=> (not $dont_export_items),
206 elsif ( $record_type eq 'db' or $record_type eq 'conf' ) {
207 my $successful_export;
209 if ( $flags->{superlibrarian
}
211 $record_type eq 'db' and C4
::Context
->config('backup_db_via_tools')
213 $record_type eq 'conf' and C4
::Context
->config('backup_conf_via_tools')
216 binmode STDOUT
, ':encoding(UTF-8)';
218 my $charset = 'utf-8';
219 my $mimetype = 'application/octet-stream';
220 if ( $filename =~ m/\.gz$/ ) {
221 $mimetype = 'application/x-gzip';
225 elsif ( $filename =~ m/\.bz2$/ ) {
226 $mimetype = 'application/x-bzip2';
230 print $query->header(
232 -charset
=> $charset,
233 -attachment
=> $filename,
236 my $extension = $record_type eq 'db' ?
'sql' : 'tar';
238 $successful_export = download_backup
(
240 directory
=> $backupdir,
241 extension
=> $extension,
242 filename
=> $filename,
245 unless ($successful_export) {
246 my $remotehost = $query->remote_host();
247 $remotehost =~ s/(\n|\r)//;
249 "A suspicious attempt was made to download the " . ( $record_type eq 'db' ?
'db' : 'configuration' ) . "at '$filename' by someone at "
250 . $remotehost . "\n";
260 my $itemtypes = GetItemTypes
;
262 foreach my $thisitemtype ( sort keys %$itemtypes ) {
264 value
=> $thisitemtype,
265 description
=> $itemtypes->{$thisitemtype}->{translated_description
},
267 push @itemtypesloop, \
%row;
269 my $branches = GetBranches
($only_my_branch);
272 sort { $branches->{$a}->{branchname
} cmp $branches->{$b}->{branchname
} }
278 value
=> $thisbranch,
279 selected
=> %branchmap ?
$branchmap{$thisbranch} : 1,
280 branchname
=> $branches->{$thisbranch}->{'branchname'},
284 my $authtypes = getauthtypes
;
286 foreach my $thisauthtype ( sort keys %$authtypes ) {
287 next unless $thisauthtype;
289 value
=> $thisauthtype,
290 description
=> $authtypes->{$thisauthtype}->{'authtypetext'},
292 push @authtypesloop, \
%row;
295 if ( $flags->{superlibrarian
}
296 && C4
::Context
->config('backup_db_via_tools')
300 $template->{VARS
}->{'allow_db_export'} = 1;
301 $template->{VARS
}->{'dbfiles'} = getbackupfilelist
(
302 { directory
=> "$backupdir", extension
=> 'sql' } );
305 if ( $flags->{superlibrarian
}
306 && C4
::Context
->config('backup_conf_via_tools')
310 $template->{VARS
}->{'allow_conf_export'} = 1;
311 $template->{VARS
}->{'conffiles'} = getbackupfilelist
(
312 { directory
=> "$backupdir", extension
=> 'tar' } );
316 branchloop
=> \
@branchloop,
317 itemtypeloop
=> \
@itemtypesloop,
318 authtypeloop
=> \
@authtypesloop,
319 export_remove_fields
=> C4
::Context
->preference("ExportRemoveFields"),
320 csv_profiles
=> C4
::Csv
::GetCsvProfiles
('marc'),
323 output_html_with_http_headers
$query, $cookie, $template->output;
326 sub getbackupfilelist
{
328 my $directory = $args->{directory
};
329 my $extension = $args->{extension
};
332 if ( opendir( my $dir, $directory ) ) {
333 while ( my $file = readdir($dir) ) {
334 next unless ( $file =~ m/\.$extension(\.(gz|bz2|xz))?/ );
336 if ( -f
"$directory/$file" && -r
"$directory/$file" );
343 sub download_backup
{
345 my $directory = $args->{directory
};
346 my $extension = $args->{extension
};
347 my $filename = $args->{filename
};
349 return unless ( $directory && -d
$directory );
350 return unless ( $filename =~ m/\.$extension(\.(gz|bz2|xz))?$/ );
351 return if ( $filename =~ m
#/# );
352 $filename = "$directory/$filename";
353 return unless ( -f
$filename && -r
$filename );
354 return unless ( open( my $dump, '<', $filename ) );
357 while ( read( $dump, my $data, 64 * 1024 ) ) {