Bug 30462: Separate Queued and Complete jobs
[koha.git] / admin / biblio_framework.pl
1 #!/usr/bin/perl
2
3 # Copyright 2000-2002 Katipo Communications
4 # Copyright 2002 Paul Poulain
5 #
6 # This file is part of Koha.
7 #
8 # Koha is free software; you can redistribute it and/or modify it
9 # under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 3 of the License, or
11 # (at your option) any later version.
12 #
13 # Koha is distributed in the hope that it will be useful, but
14 # WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License
19 # along with Koha; if not, see <http://www.gnu.org/licenses>.
20
21 use Modern::Perl;
22 use CGI qw ( -utf8 );
23 use C4::Context;
24 use C4::Auth qw( get_template_and_user );
25 use C4::Output qw( output_html_with_http_headers );
26 use Koha::Biblios;
27 use Koha::BiblioFramework;
28 use Koha::BiblioFrameworks;
29 use Koha::Caches;
30
31 my $input         = CGI->new;
32 my $frameworkcode = $input->param('frameworkcode') || q||;
33 my $op            = $input->param('op') || q|list|;
34 my $cache         = Koha::Caches->get_instance();
35 my @messages;
36
37 my ( $template, $borrowernumber, $cookie ) = get_template_and_user(
38     {   template_name   => "admin/biblio_framework.tt",
39         query           => $input,
40         type            => "intranet",
41         flagsrequired   => { parameters => 'manage_marc_frameworks' },
42     }
43 );
44
45 my $dbh = C4::Context->dbh;
46 if ( $op eq 'add_form' ) {
47     my $framework;
48     if ($frameworkcode) {
49         $framework = Koha::BiblioFrameworks->find($frameworkcode);
50     }
51     $template->param( framework => $framework );
52 } elsif ( $op eq 'add_validate' ) {
53     my $frameworkcode = $input->param('frameworkcode');
54     my $frameworktext = $input->param('frameworktext');
55     my $is_a_modif    = $input->param('is_a_modif');
56
57     if ($is_a_modif) {
58         my $framework = Koha::BiblioFrameworks->find($frameworkcode);
59         $framework->frameworktext($frameworktext);
60         eval { $framework->store; };
61         if ($@) {
62             push @messages, { type => 'error', code => 'error_on_update' };
63         } else {
64             push @messages, { type => 'message', code => 'success_on_update' };
65         }
66     } else {
67         my $framework = Koha::BiblioFramework->new(
68             {   frameworkcode => $frameworkcode,
69                 frameworktext => $frameworktext,
70             }
71         );
72         eval { $framework->store; };
73         if ($@) {
74             push @messages, { type => 'error', code => 'error_on_insert' };
75         } else {
76             push @messages, { type => 'message', code => 'success_on_insert' };
77         }
78     }
79     $cache->clear_from_cache("MarcStructure-0-$frameworkcode");
80     $cache->clear_from_cache("MarcStructure-1-$frameworkcode");
81     $cache->clear_from_cache("default_value_for_mod_marc-");
82     $cache->clear_from_cache("MarcSubfieldStructure-$frameworkcode");
83     $cache->clear_from_cache("MarcCodedFields-$frameworkcode");
84     $op = 'list';
85 } elsif ( $op eq 'delete_confirm' ) {
86     my $framework = Koha::BiblioFrameworks->find($frameworkcode);
87     my $count = Koha::Biblios->search( { frameworkcode => $frameworkcode, } )->count;
88
89     $template->param(
90         framework                  => $framework,
91         biblios_use_this_framework => $count,
92     );
93 } elsif ( $op eq 'delete_confirmed' ) {
94     my $framework = Koha::BiblioFrameworks->find($frameworkcode);
95     my $deleted = eval { $framework->delete; };
96
97     if ( $@ or not $deleted ) {
98         push @messages, { type => 'error', code => 'error_on_delete' };
99     } else {
100         eval {
101             my $dbh = C4::Context->dbh;
102             $dbh->do( q|DELETE FROM marc_tag_structure WHERE frameworkcode=?|,      undef, $frameworkcode );
103             $dbh->do( q|DELETE FROM marc_subfield_structure WHERE frameworkcode=?|, undef, $frameworkcode );
104         };
105         if ($@) {
106             push @messages, { type => 'error', code => 'error_on_delete_fk' };
107         } else {
108             push @messages, { type => 'message', code => 'success_on_delete' };
109         }
110     }
111     $cache->clear_from_cache("MarcStructure-0-$frameworkcode");
112     $cache->clear_from_cache("MarcStructure-1-$frameworkcode");
113     $cache->clear_from_cache("default_value_for_mod_marc-");
114     $cache->clear_from_cache("MarcSubfieldStructure-$frameworkcode");
115     $cache->clear_from_cache("MarcCodedFields-$frameworkcode");
116     $op = 'list';
117 }
118
119 if ( $op eq 'list' ) {
120     my $frameworks = Koha::BiblioFrameworks->search( {}, { order_by => ['frameworktext'], } );
121     $template->param( frameworks => $frameworks, );
122 }
123
124 $template->param(
125     messages => \@messages,
126     op       => $op,
127 );
128
129 output_html_with_http_headers $input, $cookie, $template->output;
130