Bugzilla – Attachment 107990 Details for
Bug 22343
Add configuration options for SMTP servers
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 22343: Add classes for handling SMTP servers
Bug-22343-Add-classes-for-handling-SMTP-servers.patch (text/plain), 19.19 KB, created by
Tomás Cohen Arazi (tcohen)
on 2020-08-10 13:29:22 UTC
(
hide
)
Description:
Bug 22343: Add classes for handling SMTP servers
Filename:
MIME Type:
Creator:
Tomás Cohen Arazi (tcohen)
Created:
2020-08-10 13:29:22 UTC
Size:
19.19 KB
patch
obsolete
>From 8aa3e1eaee95696cb78228fc4bbb7e9c2b753c8b Mon Sep 17 00:00:00 2001 >From: Tomas Cohen Arazi <tomascohen@theke.io> >Date: Tue, 28 Jul 2020 12:35:26 -0300 >Subject: [PATCH] Bug 22343: Add classes for handling SMTP servers > >This patch introduces classes to handle SMTP servers. It is done in a >way that a default server can be set, and then per-library ones can be >set. All should be done with Koha::SMTP::Servers methods, that take care >of overwriting library-specific configs, and handle the defaults >retrieval and setting correctly. > >To test: >1. Apply this patches >2. Run: > $ kshell > $ perl installer/data/mysql/updatedatabase.pl >=> SUCCESS: Atomic update is ok, smtp_servers table created >3. Run: > k$ prove t/db_dependent/Koha/SMTP/ >=> SUCCESS: Tests pass! >4. Sign off :-D >--- > Koha/SMTP/Server.pm | 128 ++++++++++++++ > Koha/SMTP/Servers.pm | 191 +++++++++++++++++++++ > t/db_dependent/Koha/SMTP/Server.t | 120 ++++++++++++++ > t/db_dependent/Koha/SMTP/Servers.t | 258 +++++++++++++++++++++++++++++ > 4 files changed, 697 insertions(+) > create mode 100644 Koha/SMTP/Server.pm > create mode 100644 Koha/SMTP/Servers.pm > create mode 100644 t/db_dependent/Koha/SMTP/Server.t > create mode 100644 t/db_dependent/Koha/SMTP/Servers.t > >diff --git a/Koha/SMTP/Server.pm b/Koha/SMTP/Server.pm >new file mode 100644 >index 0000000000..5a078941c1 >--- /dev/null >+++ b/Koha/SMTP/Server.pm >@@ -0,0 +1,128 @@ >+package Koha::SMTP::Server; >+ >+# This file is part of Koha. >+# >+# Koha is free software; you can redistribute it and/or modify it >+# under the terms of the GNU General Public License as published by >+# the Free Software Foundation; either version 3 of the License, or >+# (at your option) any later version. >+# >+# Koha is distributed in the hope that it will be useful, but >+# WITHOUT ANY WARRANTY; without even the implied warranty of >+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the >+# GNU General Public License for more details. >+# >+# You should have received a copy of the GNU General Public License >+# along with Koha; if not, see <http://www.gnu.org/licenses>. >+ >+use Modern::Perl; >+ >+use Koha::Database; >+use Koha::Exceptions::Object; >+use Koha::SMTP::Servers; >+ >+use base qw(Koha::Object); >+ >+=head1 NAME >+ >+Koha::SMTP::Server - Koha SMTP Server Object class >+ >+=head1 API >+ >+=head2 Class methods >+ >+=head3 store >+ >+ my $server = Koha::SMTP::Server->new({...})->store; >+ $server->set({...})->store; >+ >+Overloaded I<store> method that takes care of checking unicity of the >+default server (i.e. when library_id IS NULL). >+ >+FIXME: Replace with a CHECK constraint when the feature is available. >+ >+=cut >+ >+sub store { >+ my ( $self, $params ) = @_; >+ >+ if ( $self->in_storage ) { >+ >+ # update >+ if ( !defined $self->library_id ) { >+ >+ # trying to set a default, check manually >+ # until the DB can handle it >+ Koha::Exceptions::Object::DuplicateID->throw( duplicate_id => 'library_id' ) >+ if Koha::SMTP::Servers->search( >+ { library_id => undef, id => { '!=' => $self->id } } )->count > 0; >+ } >+ } >+ else { >+ # new >+ if ( !defined $self->library_id ) { >+ >+ # trying to set a default, check manually >+ # until the DB can handle it >+ Koha::Exceptions::Object::DuplicateID->throw( duplicate_id => 'library_id' ) >+ if Koha::SMTP::Servers->search( { library_id => undef } )->count > 0; >+ } >+ } >+ >+ return $self->SUPER::store; >+} >+ >+=head3 is_default >+ >+ my $is_default = $server->is_default >+ >+Helper method to determine if the server is the default one >+ >+=cut >+ >+sub is_default { >+ my ($self) = @_; >+ >+ return (defined $self->library_id) ? 0 : 1; >+} >+ >+=head3 library >+ >+Returns the Koha::Library object linked to the SMTP server. >+ >+=cut >+ >+sub library { >+ my ( $self ) = @_; >+ >+ my $library_rs = $self->_result->library; >+ return unless $library_rs; >+ return Koha::Library->_new_from_dbic($self->_result->library); >+} >+ >+=head3 to_api_mapping >+ >+This method returns the mapping for representing a Koha::SMTP::Server object >+on the API. >+ >+=cut >+ >+sub to_api_mapping { >+ return { >+ id => 'smtp_server_id' >+ }; >+} >+ >+=head2 Internal methods >+ >+=head3 _type >+ >+Return type of Object relating to Schema ResultSet >+ >+=cut >+ >+sub _type { >+ return 'SmtpServer'; >+} >+ >+1; >diff --git a/Koha/SMTP/Servers.pm b/Koha/SMTP/Servers.pm >new file mode 100644 >index 0000000000..eee40e4e11 >--- /dev/null >+++ b/Koha/SMTP/Servers.pm >@@ -0,0 +1,191 @@ >+package Koha::SMTP::Servers; >+ >+# This file is part of Koha. >+# >+# Koha is free software; you can redistribute it and/or modify it >+# under the terms of the GNU General Public License as published by >+# the Free Software Foundation; either version 3 of the License, or >+# (at your option) any later version. >+# >+# Koha is distributed in the hope that it will be useful, but >+# WITHOUT ANY WARRANTY; without even the implied warranty of >+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the >+# GNU General Public License for more details. >+# >+# You should have received a copy of the GNU General Public License >+# along with Koha; if not, see <http://www.gnu.org/licenses>. >+ >+use Modern::Perl; >+ >+use Koha::Database; >+use Koha::Exceptions; >+ >+use Koha::SMTP::Server; >+ >+use base qw(Koha::Objects); >+ >+=head1 NAME >+ >+Koha::SMTP::Servers - Koha SMTP Server Object set class >+ >+=head1 API >+ >+=head2 Class methods >+ >+=head3 get_effective_server >+ >+ my $server = Koha::SMTP::Servers->get_effective_server({ library => $library }); >+ >+Returns a I<Koha::SMTP::Server> representing the effective configured SMTP for the library. >+ >+=cut >+ >+sub get_effective_server { >+ my ($self, $args) = @_; >+ >+ my $library = $args->{library}; >+ >+ Koha::Exceptions::MissingParameter->throw('Mandatory parameter missing: library') >+ unless $library; >+ >+ my $servers_rs = Koha::SMTP::Servers->search({ library_id => $library->branchcode }); >+ if ( $servers_rs->count > 0 ) { >+ return $servers_rs->next; >+ } >+ >+ return $self->get_default; >+} >+ >+=head3 get_default >+ >+ my $server = Koha::SMTP::Servers->new->get_default; >+ >+Returns the default I<Koha::SMTP::Server> object. >+ >+=cut >+ >+sub get_default { >+ my ($self) = @_; >+ >+ my $servers_rs = $self->search({ library_id => undef }); >+ >+ my $server; >+ if ($servers_rs->count > 0) { >+ $server = $servers_rs->next; >+ } >+ else { >+ $server = Koha::SMTP::Server->new( $self->default_setting ); >+ } >+ >+ return $server; >+} >+ >+=head3 set_default >+ >+ my $server = Koha::SMTP::Servers->new->set_default; >+ >+Set the default I<Koha::SMTP::Server> server, and returns it. >+ >+=cut >+ >+sub set_default { >+ my ($self, $params) = @_; >+ >+ Koha::Exceptions::BadParameter->throw( 'library_id must be undef when setting the default SMTP server' ) >+ if defined $params->{library_id}; >+ >+ my $smtp_server; >+ $self->_resultset()->result_source->schema->txn_do( sub { >+ >+ # Delete existing default >+ $self->search({ library_id => undef })->delete; >+ >+ $smtp_server = Koha::SMTP::Server->new($params)->store; >+ }); >+ >+ return $smtp_server; >+} >+ >+=head3 set_library_server >+ >+ my $server = Koha::SMTP::Servers->new->set_library_server( >+ { >+ name => $name, >+ library_id => $library->id, >+ host => $smtp_host, >+ port => $smtp_port, >+ timeout => $smtp_timeout, >+ ssl => 1, >+ user_name => $user_name, >+ password => $password >+ } >+ ); >+ >+Set the I<Koha::SMTP::Server> server for a library, and return it. >+ >+=cut >+ >+sub set_library_server { >+ my ( $self, $params ) = @_; >+ >+ Koha::Exceptions::MissingParameter->throw( >+ 'Mandatory parameter missing: library_id') >+ unless $params->{library_id}; >+ >+ my $smtp_server; >+ $self->_resultset()->result_source->schema->txn_do( sub { >+ # Delete existing default >+ $self->search({ library_id => $params->{library_id} })->delete; >+ >+ $smtp_server = Koha::SMTP::Server->new($params)->store; >+ }); >+ >+ return $smtp_server; >+} >+ >+=head2 Internal methods >+ >+=head3 _type >+ >+Return type of object, relating to Schema ResultSet >+ >+=cut >+ >+sub _type { >+ return 'SmtpServer'; >+} >+ >+=head3 default_setting >+ >+ my $hash = Koha::SMTP::Servers::default_setting; >+ >+Returns the default setting that is to be used when no user-defined default >+SMTP server is provided >+ >+=cut >+ >+sub default_setting { >+ return { >+ name => 'localhost', >+ library_id => undef, >+ host => 'localhost', >+ port => 25, >+ timeout => 120, >+ ssl_mode => 'disabled', >+ user_name => undef, >+ password => undef, >+ debug => 0 >+ }; >+} >+ >+=head3 object_class >+ >+Return object class >+ >+=cut >+ >+sub object_class { >+ return 'Koha::SMTP::Server'; >+} >+ >+1; >diff --git a/t/db_dependent/Koha/SMTP/Server.t b/t/db_dependent/Koha/SMTP/Server.t >new file mode 100644 >index 0000000000..db7b1f65af >--- /dev/null >+++ b/t/db_dependent/Koha/SMTP/Server.t >@@ -0,0 +1,120 @@ >+#!/usr/bin/perl >+ >+# This file is part of Koha. >+# >+# Koha is free software; you can redistribute it and/or modify it >+# under the terms of the GNU General Public License as published by >+# the Free Software Foundation; either version 3 of the License, or >+# (at your option) any later version. >+# >+# Koha is distributed in the hope that it will be useful, but >+# WITHOUT ANY WARRANTY; without even the implied warranty of >+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the >+# GNU General Public License for more details. >+# >+# You should have received a copy of the GNU General Public License >+# along with Koha; if not, see <http://www.gnu.org/licenses>. >+ >+use Modern::Perl; >+ >+use Test::More tests => 2; >+use Test::Exception; >+use Test::Warn; >+ >+use Koha::SMTP::Servers; >+ >+use t::lib::TestBuilder; >+use t::lib::Mocks; >+ >+my $schema = Koha::Database->new->schema; >+my $builder = t::lib::TestBuilder->new; >+ >+subtest 'is_default() tests' => sub { >+ >+ plan tests => 2; >+ >+ $schema->storage->txn_begin; >+ >+ Koha::SMTP::Servers->search->delete; >+ >+ my $default_server = $builder->build_object( >+ { >+ class => 'Koha::SMTP::Servers', >+ value => { >+ library_id => undef >+ } >+ } >+ ); >+ >+ my $library = $builder->build_object( { class => 'Koha::Libraries' } ); >+ my $library_specific_server = $builder->build_object( >+ { >+ class => 'Koha::SMTP::Servers', >+ value => { >+ library_id => $library->branchcode >+ } >+ } >+ ); >+ >+ ok( $default_server->is_default, 'Server is the default one' ); >+ ok( !$library_specific_server->is_default, >+ 'Server is not the default one' ); >+ >+ $schema->storage->txn_rollback; >+}; >+ >+subtest 'store() tests' => sub { >+ >+ plan tests => 4; >+ >+ $schema->storage->txn_begin; >+ >+ Koha::SMTP::Servers->search->delete; >+ >+ my $default_server = Koha::SMTP::Server->new( >+ { >+ library_id => undef, >+ name => 'Default SMTP server' >+ } >+ )->store; >+ >+ my $library = $builder->build_object( { class => 'Koha::Libraries' } ); >+ my $library_specific_server = Koha::SMTP::Server->new( >+ { >+ library_id => $library->id, >+ name => 'Library-specific SMTP server' >+ } >+ )->store; >+ >+ warning_like >+ { >+ throws_ok >+ { Koha::SMTP::Server->new( >+ { >+ library_id => $library->id, >+ name => 'Some fake name' >+ } >+ )->store; } >+ 'Koha::Exceptions::Object::DuplicateID', >+ 'Cannot define two servers for the same library'; >+ } >+ qr/DBI Exception: DBD::mysql::st execute failed: Duplicate entry/, >+ 'Warning is printed'; >+ >+ throws_ok >+ { Koha::SMTP::Server->new( >+ { >+ library_id => undef, >+ name => 'Some fake name' >+ } >+ )->store; } >+ 'Koha::Exceptions::Object::DuplicateID', >+ 'Cannot define two default SMTP servers'; >+ >+ $default_server->set({ name => 'New name' })->store; >+ $default_server->discard_changes; >+ >+ is( $default_server->name, 'New name', 'Default server updated correctly' ); >+ >+ $schema->storage->txn_rollback; >+}; >diff --git a/t/db_dependent/Koha/SMTP/Servers.t b/t/db_dependent/Koha/SMTP/Servers.t >new file mode 100644 >index 0000000000..f306178f73 >--- /dev/null >+++ b/t/db_dependent/Koha/SMTP/Servers.t >@@ -0,0 +1,258 @@ >+#!/usr/bin/perl >+ >+# This file is part of Koha. >+# >+# Koha is free software; you can redistribute it and/or modify it >+# under the terms of the GNU General Public License as published by >+# the Free Software Foundation; either version 3 of the License, or >+# (at your option) any later version. >+# >+# Koha is distributed in the hope that it will be useful, but >+# WITHOUT ANY WARRANTY; without even the implied warranty of >+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the >+# GNU General Public License for more details. >+# >+# You should have received a copy of the GNU General Public License >+# along with Koha; if not, see <http://www.gnu.org/licenses>. >+ >+use Modern::Perl; >+ >+use Test::More tests => 4; >+use Test::Exception; >+ >+use Koha::SMTP::Servers; >+ >+use t::lib::TestBuilder; >+use t::lib::Mocks; >+ >+my $schema = Koha::Database->new->schema; >+my $builder = t::lib::TestBuilder->new; >+ >+subtest 'get_default() tests' => sub { >+ >+ plan tests => 3; >+ >+ $schema->storage->txn_begin; >+ >+ Koha::SMTP::Servers->search->delete; >+ >+ my $default_server = $builder->build_object( >+ { >+ class => 'Koha::SMTP::Servers', >+ value => { >+ library_id => undef >+ } >+ } >+ ); >+ >+ my $library = $builder->build_object( { class => 'Koha::Libraries' } ); >+ my $library_specific_server = $builder->build_object( >+ { >+ class => 'Koha::SMTP::Servers', >+ value => { >+ library_id => $library->branchcode >+ } >+ } >+ ); >+ >+ my $servers = Koha::SMTP::Servers->new; >+ my $server = $servers->get_default; >+ is( $server->id, $default_server->id, >+ 'The default server is correctly retrieved' ); >+ >+ # Delete the default server >+ $server->delete; >+ >+ # Get the default >+ $default_server = $servers->get_default; >+ is( ref($default_server), 'Koha::SMTP::Server', >+ 'An object of the right type is returned' ); >+ >+ my $unblessed_server = $default_server->unblessed; >+ delete $unblessed_server->{id}; >+ is_deeply( >+ $unblessed_server, >+ Koha::SMTP::Servers::default_setting, >+ 'The default setting is returned if no user-defined default' >+ ); >+ >+ $schema->storage->txn_rollback; >+}; >+ >+subtest 'set_default() tests' => sub { >+ >+ plan tests => 4; >+ >+ $schema->storage->txn_begin; >+ >+ Koha::SMTP::Servers->search->delete; >+ >+ my $default_server = $builder->build_object( >+ { >+ class => 'Koha::SMTP::Servers', >+ value => { >+ library_id => undef >+ } >+ } >+ ); >+ >+ throws_ok { >+ Koha::SMTP::Servers->new->set_default( >+ { >+ name => 'A new default', >+ library_id => 'Whatever', >+ } >+ ); >+ } >+ 'Koha::Exceptions::BadParameter', >+'Exception thrown when trying to set default SMTP server with a library_id'; >+ >+ is( >+ "$@", >+ 'library_id must be undef when setting the default SMTP server', >+ 'Exception message is clear' >+ ); >+ >+ my $new_default = Koha::SMTP::Servers->new->set_default( >+ { >+ name => 'A new default', >+ library_id => undef, >+ } >+ ); >+ >+ is( ref($new_default), 'Koha::SMTP::Server', 'Type is correct' ); >+ is( >+ $new_default->id, >+ Koha::SMTP::Servers->get_default->id, >+ 'Default SMTP server is correctly set' >+ ); >+ >+ $schema->storage->txn_rollback; >+}; >+ >+subtest 'get_effective_server() tests' => sub { >+ >+ plan tests => 4; >+ >+ $schema->storage->txn_begin; >+ >+ Koha::SMTP::Servers->search->delete; >+ >+ my $library = $builder->build_object( { class => 'Koha::Libraries' } ); >+ >+ my $default_server = $builder->build_object( >+ { >+ class => 'Koha::SMTP::Servers', >+ value => { >+ library_id => undef >+ } >+ } >+ ); >+ >+ throws_ok { Koha::SMTP::Servers->new->get_effective_server() } >+ 'Koha::Exceptions::MissingParameter', 'Exception thrown'; >+ >+ is( "$@", 'Mandatory parameter missing: library' ); >+ >+ is( >+ Koha::SMTP::Servers->new->get_effective_server( >+ { library => $library } >+ )->id, >+ $default_server->id, >+ 'Fallback default server retrieved' >+ ); >+ >+ my $specific_server = $builder->build_object( >+ { >+ class => 'Koha::SMTP::Servers', >+ value => { >+ library_id => $library->branchcode >+ } >+ } >+ ); >+ >+ is( >+ Koha::SMTP::Servers->new->get_effective_server( >+ { library => $library } >+ )->id, >+ $specific_server->id, >+ 'Library specific server retrieved' >+ ); >+ >+ $schema->storage->txn_rollback; >+}; >+ >+subtest 'set_library_server() tests' => sub { >+ >+ plan tests => 6; >+ >+ $schema->storage->txn_begin; >+ >+ Koha::SMTP::Servers->search->delete; >+ >+ my $library = $builder->build_object( { class => 'Koha::Libraries' } ); >+ >+ my $default_server = $builder->build_object( >+ { >+ class => 'Koha::SMTP::Servers', >+ value => { >+ library_id => undef >+ } >+ } >+ ); >+ >+ is( >+ Koha::SMTP::Servers->new->get_effective_server( >+ { library => $library } >+ )->id, >+ $default_server->id, >+ 'Fallback default server retrieved' >+ ); >+ >+ my $specific_server = Koha::SMTP::Servers->new->set_library_server( >+ { >+ name => 'Specific server 1', >+ library_id => $library->id >+ } >+ ); >+ >+ is( >+ Koha::SMTP::Servers->new->get_effective_server( >+ { library => $library } >+ )->id, >+ $specific_server->id, >+ 'Library specific server retrieved' >+ ); >+ >+ throws_ok { >+ Koha::SMTP::Servers->new->set_library_server( >+ { >+ name => 'Specific server 2' >+ } >+ ); >+ } >+ 'Koha::Exceptions::MissingParameter', >+ 'Exception thrown on missing parameter'; >+ >+ is( "$@", 'Mandatory parameter missing: library_id' ); >+ >+ $specific_server = Koha::SMTP::Servers->new->set_library_server( >+ { >+ name => 'Specific server 2', >+ library_id => $library->id >+ } >+ ); >+ >+ is( >+ Koha::SMTP::Servers->new->get_effective_server( >+ { library => $library } >+ )->id, >+ $specific_server->id, >+ 'New library specific server retrieved' >+ ); >+ >+ is( Koha::SMTP::Servers->search( { library_id => $library->id } )->count, >+ 1, 'Only one SMTP server set' ); >+ >+ $schema->storage->txn_rollback; >+}; >-- >2.28.0
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 22343
:
107598
|
107599
|
107600
|
107601
|
107602
|
107603
|
107604
|
107605
|
107987
|
107988
|
107989
|
107990
|
107991
|
107992
|
107993
|
107994
|
107995
|
107996
|
107997
|
107998
|
107999
|
108009
|
108107
|
108108
|
108109
|
108110
|
108111
|
108112
|
108113
|
108114
|
108115
|
108116
|
108117
|
108118
|
108119
|
108131
|
108132
|
108133
|
108134
|
108135
|
108136
|
108137
|
108138
|
108139
|
108140
|
108141
|
108142
|
108143
|
108529
|
108537
|
108538
|
108539
|
108540
|
108541
|
108542
|
108543
|
108544
|
108545
|
108546
|
108547
|
108548
|
108549
|
108609
|
108638
|
108642
|
108643
|
108644
|
108645
|
108646
|
108647
|
108648
|
108649
|
108650
|
108651
|
108652
|
108653
|
108654
|
108655
|
108656
|
108715
|
108716
|
109003
|
109004
|
109005
|
109006
|
109007
|
109008
|
109009
|
109010
|
109011
|
109012
|
109013
|
109014
|
109015
|
109016
|
109017
|
109018
|
109155
|
109156
|
109157
|
109158
|
109159
|
109160
|
109161
|
109162
|
109163
|
109164
|
109165
|
109166
|
109167
|
109168
|
109169
|
109170
|
109601
|
109602
|
109603
|
109604
|
109605
|
109606
|
109607
|
109608
|
109609
|
109610
|
109611
|
109612
|
109613
|
109614
|
109615
|
109616
|
109723
|
109724
|
109725
|
109726
|
109727
|
109728
|
109729
|
109730
|
109731
|
109732
|
109733
|
109734
|
109735
|
109736
|
109737
|
109738
|
109739
|
109740
|
109787
|
109788
|
111048
|
111087
|
111088
|
111089
|
111090
|
111154
|
111165
|
111166
|
111175
|
111176
|
111213
|
111215
|
111216
|
111442
|
111482
|
113240
|
113827
|
113847