Bug 20582: Fix a cache issue in Koha::App::{Opac,Intranet}
[koha.git] / admin / smtp_servers.pl
blob9423404dea2beddf74e7ea664374684a36f849cd
1 #!/usr/bin/perl
3 # Copyright 2020 Theke Solutions
5 # This file is part of Koha.
7 # Koha is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with Koha; if not, see <http://www.gnu.org/licenses>.
20 use Modern::Perl;
22 use CGI qw ( -utf8 );
23 use Scalar::Util qw(blessed);
24 use Try::Tiny;
26 use C4::Auth qw(get_template_and_user);
27 use C4::Output qw(output_html_with_http_headers);
29 use Koha::Libraries;
30 use Koha::SMTP::Servers;
32 my $input = CGI->new;
33 my $op = $input->param('op') || 'list';
35 my ( $template, $borrowernumber, $cookie ) = get_template_and_user(
36 { template_name => "admin/smtp_servers.tt",
37 query => $input,
38 type => "intranet",
39 flagsrequired => { parameters => 'manage_smtp_servers' },
43 my @messages;
45 if ( $op eq 'add' ) {
47 my $name = $input->param('smtp_name');
48 my $host = $input->param('smtp_host');
49 my $port = $input->param('smtp_port') || 25;
50 my $timeout = $input->param('smtp_timeout') || 120;
51 my $ssl_mode = $input->param('smtp_ssl_mode');
52 my $user_name = $input->param('smtp_user_name') || undef;
53 my $password = $input->param('smtp_password') || undef;
54 my $debug = ( scalar $input->param('smtp_debug_mode') ) ? 1 : 0;
56 try {
57 Koha::SMTP::Server->new(
59 name => $name,
60 host => $host,
61 port => $port,
62 timeout => $timeout,
63 ssl_mode => $ssl_mode,
64 user_name => $user_name,
65 password => $password,
66 debug => $debug,
68 )->store;
70 push @messages, { type => 'message', code => 'success_on_insert' };
72 catch {
73 if ( blessed $_ and $_->isa('Koha::Exceptions::Object::DuplicateID') ) {
74 push @messages,
76 type => 'alert',
77 code => 'error_on_insert',
78 reason => 'duplicate_id'
83 # list servers after adding
84 $op = 'list';
86 elsif ( $op eq 'edit_form' ) {
87 my $smtp_server_id = $input->param('smtp_server_id');
88 my $smtp_server;
90 $smtp_server = Koha::SMTP::Servers->find($smtp_server_id)
91 unless !$smtp_server_id;
93 if ( $smtp_server ) {
94 $template->param(
95 smtp_server => $smtp_server
98 else {
99 push @messages,
101 type => 'alert',
102 code => 'error_on_edit',
103 reason => 'invalid_id'
107 elsif ( $op eq 'edit_save' ) {
109 my $smtp_server_id = $input->param('smtp_server_id');
110 my $smtp_server;
112 $smtp_server = Koha::SMTP::Servers->find($smtp_server_id)
113 unless !$smtp_server_id;
115 if ( $smtp_server ) {
117 my $name = $input->param('smtp_name');
118 my $host = $input->param('smtp_host');
119 my $port = $input->param('smtp_port') || 25;
120 my $timeout = $input->param('smtp_timeout') || 120;
121 my $ssl_mode = $input->param('smtp_ssl_mode');
122 my $user_name = $input->param('smtp_user_name') || undef;
123 my $password = $input->param('smtp_password') || undef;
124 my $debug = ( scalar $input->param('smtp_debug_mode') ) ? 1 : 0;
126 $password = undef
127 if defined $password and $password eq '****';
129 try {
130 $smtp_server->password( $password )
131 if $password;
133 $smtp_server->set(
135 name => $name,
136 host => $host,
137 port => $port,
138 timeout => $timeout,
139 ssl_mode => $ssl_mode,
140 user_name => $user_name,
141 password => $password,
142 debug => $debug
144 )->store;
146 push @messages,
148 type => 'message',
149 code => 'success_on_update'
152 catch {
153 push @messages,
155 type => 'alert',
156 code => 'error_on_update'
160 # list servers after adding
161 $op = 'list';
163 else {
164 push @messages,
166 type => 'alert',
167 code => 'error_on_update',
168 reason => 'invalid_id'
173 if ( $op eq 'list' ) {
174 my $smtp_servers = Koha::SMTP::Servers->search;
175 $template->param(
176 servers_count => $smtp_servers->count,
177 default_config => $smtp_servers->get_default,
181 $template->param(
182 op => $op,
183 messages => \@messages,
186 output_html_with_http_headers $input, $cookie, $template->output;