Revert "Bug 25762: Typo in linkitem.tt"
[koha.git] / admin / cities.pl
1 #! /usr/bin/perl
2
3 # Copyright 2006 SAN OUEST-PROVENCE et Paul POULAIN
4 # Copyright 2015 Koha Development Team
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;
25 use C4::Output;
26
27 use Koha::Cities;
28
29 my $input       = new CGI;
30 my $searchfield = $input->param('city_name') // q||;
31 my $cityid      = $input->param('cityid');
32 my $op          = $input->param('op') || 'list';
33 my @messages;
34
35 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
36     {   template_name   => "admin/cities.tt",
37         query           => $input,
38         type            => "intranet",
39         flagsrequired   => { parameters => 'manage_cities' },
40         debug           => 1,
41     }
42 );
43
44 my $dbh = C4::Context->dbh;
45 if ( $op eq 'add_form' ) {
46     my $city;
47     if ($cityid) {
48         $city = Koha::Cities->find($cityid);
49     }
50
51     $template->param( city => $city, );
52 } elsif ( $op eq 'add_validate' ) {
53     my $cityid       = $input->param('cityid');
54     my $city_name    = $input->param('city_name');
55     my $city_state   = $input->param('city_state');
56     my $city_zipcode = $input->param('city_zipcode');
57     my $city_country = $input->param('city_country');
58
59     if ($cityid) {
60         my $city = Koha::Cities->find($cityid);
61         $city->city_name($city_name);
62         $city->city_state($city_state);
63         $city->city_zipcode($city_zipcode);
64         $city->city_country($city_country);
65         eval { $city->store; };
66         if ($@) {
67             push @messages, { type => 'error', code => 'error_on_update' };
68         } else {
69             push @messages, { type => 'message', code => 'success_on_update' };
70         }
71     } else {
72         my $city = Koha::City->new(
73             {   city_name    => $city_name,
74                 city_state   => $city_state,
75                 city_zipcode => $city_zipcode,
76                 city_country => $city_country,
77             }
78         );
79         eval { $city->store; };
80         if ($@) {
81             push @messages, { type => 'error', code => 'error_on_insert' };
82         } else {
83             push @messages, { type => 'message', code => 'success_on_insert' };
84         }
85     }
86     $searchfield = q||;
87     $op          = 'list';
88 } elsif ( $op eq 'delete_confirm' ) {
89     my $city = Koha::Cities->find($cityid);
90     $template->param( city => $city, );
91 } elsif ( $op eq 'delete_confirmed' ) {
92     my $city = Koha::Cities->find($cityid);
93     my $deleted = eval { $city->delete; };
94
95     if ( $@ or not $deleted ) {
96         push @messages, { type => 'error', code => 'error_on_delete' };
97     } else {
98         push @messages, { type => 'message', code => 'success_on_delete' };
99     }
100     $op = 'list';
101 }
102
103 if ( $op eq 'list' ) {
104     my $cities = Koha::Cities->search( { city_name => { -like => "%$searchfield%" } } );
105     $template->param( cities => $cities, );
106 }
107
108 $template->param(
109     cityid      => $cityid,
110     searchfield => $searchfield,
111     messages    => \@messages,
112     op          => $op,
113 );
114
115 output_html_with_http_headers $input, $cookie, $template->output;