Bug 7167: New version for updatedatabase
[koha-equinox.git] / admin / ajax-updatedb-getinfos.pl
1 #!/usr/bin/perl
2
3 # Copyright BibLibre 2012
4 #
5 # This file is part of Koha.
6 #
7 # Koha is free software; you can redistribute it and/or modify it under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 2 of the License, or (at your option) any later
10 # version.
11 #
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License along
17 # with Koha; if not, write to the Free Software Foundation, Inc.,
18 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19
20 =head1 NAME
21
22 ajax-updatedb-getinfos.pl
23
24 =head1 DESCRIPTION
25 this script returns comments for a updatedatabase version
26
27 =cut
28
29 use Modern::Perl;
30 use CGI;
31 use JSON;
32 use C4::Update::Database;
33 use C4::Output;
34
35 my $input = new CGI;
36 my $version = $input->param('version');
37
38 my $filepath;
39 my $queries;
40 eval {
41     $filepath = C4::Update::Database::get_filepath( $version );
42     $queries = C4::Update::Database::get_queries( $filepath );
43 };
44
45 my $param = {comments => "", queries => ""};
46 if ( $@ ){
47     $param->{errors} = $@;
48 } else {
49     if ( exists $queries->{comments} and @{ $queries->{comments} } ) {
50         $param->{comments} = join ( "<br/>", @{ $queries->{comments} } );
51     }
52
53     if ( exists $queries->{queries} and @{ $queries->{queries} } ) {
54         $param->{queries} = join ( "<br/>", @{ $queries->{queries} } );
55     }
56 }
57
58 my $json_text = to_json( $param, { utf8 => 1 } );
59
60 output_with_http_headers $input, undef, $json_text, 'json';