Bug 27424: Add ability to specify an SMTP server in the database as the default server
authorKyle Hall <kyle@bywatersolutions.com>
Thu, 20 Jan 2022 19:26:13 +0000 (14:26 -0500)
committerTomas Cohen Arazi <tomascohen@theke.io>
Tue, 31 Jan 2023 13:52:48 +0000 (10:52 -0300)
Bug 22343 adds the ability to defined SMTP servers via the UI; But to then utilise them you have to go to each individual library via the libraries admin area and select the SMTP server.

We should have a way to override the fallback/default SMTP server right from the SMTP servers administration page.. setting one of our defined SMTP Servers as the system default rather than using the hard coded fallback options.

Test Plan:
1) Apply this patch set
2) Restart all the things!
3) Browser to the SMTP servers editor,
   verify only one server can be set as the default server
4) Set a default server, verify that server was used to send email from
   a cronjob, AND/OR prove t/db_dependent/Koha/SMTP/Server.t

Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
Koha/SMTP/Servers.pm
admin/smtp_servers.pl
api/v1/swagger/definitions/smtp_server.yaml
installer/data/mysql/kohastructure.sql
koha-tmpl/intranet-tmpl/prog/en/modules/admin/smtp_servers.tt
t/db_dependent/Koha/SMTP/Server.t

index d7451e9..6925c81 100644 (file)
@@ -44,9 +44,13 @@ sub get_default {
     my ($self) = @_;
 
     my $default;
+
     my $smtp_config = C4::Context->config('smtp_server');
 
-    if ( $smtp_config ) {
+    if ( $default = $self->search({ is_default => 1 }, { rows => 1 })->single ) {
+
+    }
+    elsif ( $smtp_config ) {
         $default = Koha::SMTP::Server->new( $smtp_config );
     }
     else {
index 8c53bfc..ccad8e9 100755 (executable)
@@ -52,8 +52,14 @@ if ( $op eq 'add' ) {
     my $user_name  = $input->param('smtp_user_name') || undef;
     my $password   = $input->param('smtp_password') || undef;
     my $debug      = ( scalar $input->param('smtp_debug_mode') ) ? 1 : 0;
+    my $is_default = ( scalar $input->param('smtp_default') ) ? 1 : 0;
 
+    my $schema = Koha::Database->new->schema;
     try {
+        $schema->storage->txn_begin;
+
+        Koha::SMTP::Servers->search->update({ is_default => 0 }) if $is_default;
+
         Koha::SMTP::Server->new(
             {
                 name       => $name,
@@ -64,12 +70,15 @@ if ( $op eq 'add' ) {
                 user_name  => $user_name,
                 password   => $password,
                 debug      => $debug,
+                is_default => $is_default,
             }
         )->store;
 
         push @messages, { type => 'message', code => 'success_on_insert' };
+        $schema->storage->txn_commit;
     }
     catch {
+        $schema->storage->txn_rollback;
         if ( blessed $_ and $_->isa('Koha::Exceptions::Object::DuplicateID') ) {
             push @messages,
               {
@@ -122,21 +131,29 @@ elsif ( $op eq 'edit_save' ) {
         my $user_name  = $input->param('smtp_user_name') || undef;
         my $password   = $input->param('smtp_password') || undef;
         my $debug      = ( scalar $input->param('smtp_debug_mode') ) ? 1 : 0;
+        my $is_default = ( scalar $input->param('smtp_default') ) ? 1 : 0;
+
+        my $schema = Koha::Database->new->schema;
 
         try {
+            $schema->storage->txn_begin;
+
+            Koha::SMTP::Servers->search->update({ is_default => 0 }) if $is_default;
+
             $smtp_server->password( $password )
                 if defined $password and $password ne '****'
                     or not defined $password;
 
             $smtp_server->set(
                 {
-                    name      => $name,
-                    host      => $host,
-                    port      => $port,
-                    timeout   => $timeout,
-                    ssl_mode  => $ssl_mode,
-                    user_name => $user_name,
-                    debug     => $debug
+                    name       => $name,
+                    host       => $host,
+                    port       => $port,
+                    timeout    => $timeout,
+                    ssl_mode   => $ssl_mode,
+                    user_name  => $user_name,
+                    debug      => $debug,
+                    is_default => $is_default,
                 }
             )->store;
 
@@ -145,8 +162,10 @@ elsif ( $op eq 'edit_save' ) {
                 type => 'message',
                 code => 'success_on_update'
             };
+            $schema->storage->txn_commit;
         }
         catch {
+            $schema->storage->txn_rollback;
             push @messages,
             {
                 type   => 'alert',
index c06831e..fe8d1c0 100644 (file)
@@ -37,6 +37,9 @@ properties:
   debug:
     type: boolean
     description: If the SMTP connection is set to debug mode
+  is_default:
+    type: boolean
+    description: Is this the default SMTP server
 additionalProperties: false
 required:
   - name
index 5960707..f9ae4c4 100644 (file)
@@ -5270,6 +5270,7 @@ CREATE TABLE `smtp_servers` (
   `user_name` varchar(80) DEFAULT NULL,
   `password` varchar(80) DEFAULT NULL,
   `debug` tinyint(1) NOT NULL DEFAULT 0,
+  `is_default` tinyint(1) NOT NULL DEFAULT 0,
   PRIMARY KEY (`id`),
   KEY `host_idx` (`host`)
 ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
index 1d7cd0e..4d73447 100644 (file)
                     </select>
                     <span>Enables additional debug output in the logs</span>
                 </li>
+                <li>
+                    <label for="smtp_default">Default server: </label>
+                    <input type="checkbox" name="smtp_default" id="smtp_default" />
+                    <span>Sets this SMTP server as the default SMTP server.</span>
+                </li>
             </ol>
         </fieldset>
         <fieldset class="action">
                     [%- END -%]
                     </select>
                 </li>
+                <li>
+                    <label for="smtp_default">Default server: </label>
+                    [% IF smtp_server.is_default %]
+                        <input type="checkbox" name="smtp_default" id="smtp_default" checked="checked"/>
+                    [% ELSE %]
+                        <input type="checkbox" name="smtp_default" id="smtp_default" />
+                    [% END %]
+                    <span>Sets this SMTP server as the default SMTP server.</span>
+                </li>
             </ol>
         </fieldset>
         <fieldset class="action">
                         <th>Timeout (secs)</th>
                         <th>SSL</th>
                         <th>Authenticated</th>
+                        <th>Is default</th>
                         <th data-class-name="actions noExport">Actions</th>
                     </tr>
                 </thead>
                     },
                     {
                         "data": function( row, type, val, meta ) {
+                            if ( row.is_default ) {
+                                return _("Yes");
+                            }
+                            else {
+                                return _("No");
+                            }
+                        },
+                        "searchable": false,
+                        "orderable": false
+                    },
+                    {
+                        "data": function( row, type, val, meta ) {
                             var result = '<a class="btn btn-default btn-xs" role="button" href="/cgi-bin/koha/admin/smtp_servers.pl?op=edit_form&amp;smtp_server_id='+ encodeURIComponent(row.smtp_server_id) +'"><i class="fa fa-pencil" aria-hidden="true"></i> '+_("Edit")+'</a>'+"\n";
                             result += '<a class="btn btn-default btn-xs delete_server" role="button" href="#" data-toggle="modal" data-target="#delete_confirm_modal" data-smtp-server-id="'+ encodeURIComponent(row.smtp_server_id) +'" data-smtp-server-name="'+ encodeURIComponent(row.name.escapeHtml()) +'"><i class="fa fa-trash" aria-hidden="true"></i>'+_("Delete")+'</a>';
                             return result;
index c951196..c892217 100755 (executable)
@@ -64,16 +64,32 @@ subtest 'transport() tests' => sub {
 
 subtest 'is_system_default() tests' => sub {
 
-    plan tests => 2;
+    plan tests => 3;
 
     $schema->storage->txn_begin;
 
-    my $smtp_server = $builder->build_object({ class => 'Koha::SMTP::Servers' });
+    Koha::SMTP::Servers->search()->delete();
+
+    my $smtp_server = $builder->build_object(
+        {
+            class => 'Koha::SMTP::Servers',
+            value => { is_default => 0 }
+        }
+    );
+
     ok( !$smtp_server->is_system_default, 'A generated server is not the system default' );
 
     my $system_default_server = Koha::SMTP::Servers->get_default;
     ok( $system_default_server->is_system_default, 'The server returned by get_default is the system default' );
 
+    $smtp_server = $builder->build_object(
+        {
+            class => 'Koha::SMTP::Servers',
+            value => { ssl_mode => 'disabled', debug => 0, is_default => 1 }
+        }
+    );
+    is( Koha::SMTP::Servers->get_default->id, $smtp_server->id, "Default server correctly retrieved from database" );
+
     $schema->storage->txn_rollback;
 };