Bug 25067: Move PO file manipulation code into gulp tasks
[koha.git] / Koha / SMTP / Server.pm
blobd5fec72611bc0f3cbba9b8eef114ace07988a491
1 package Koha::SMTP::Server;
3 # This file is part of Koha.
5 # Koha is free software; you can redistribute it and/or modify it
6 # under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 3 of the License, or
8 # (at your option) any later version.
10 # Koha is distributed in the hope that it will be useful, but
11 # WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License
16 # along with Koha; if not, see <http://www.gnu.org/licenses>.
18 use Modern::Perl;
20 use Koha::Database;
21 use Koha::Exceptions::Object;
22 use Koha::SMTP::Servers;
24 use Email::Sender::Transport::SMTP;
26 use base qw(Koha::Object);
28 =head1 NAME
30 Koha::SMTP::Server - Koha SMTP Server Object class
32 =head1 API
34 =head2 Class methods
36 =head3 transport
38 my $transport = $smtp_server->transport;
39 $email->transport($transport);
40 $email->send_or_die;
42 Returns an I<Email::Sender::Transport::SMTP> object that can be used directly
43 with Email::Sender.
45 =cut
47 sub transport {
48 my ($self) = @_;
50 my $params = {
51 host => $self->host,
52 port => $self->port,
55 $params->{ssl} = $self->ssl_mode
56 unless $self->ssl_mode eq 'disabled';
58 $params->{timeout} = $self->timeout
59 if $self->timeout;
61 $params->{sasl_username} = $self->user_name
62 if $self->user_name;
64 $params->{sasl_password} = $self->password
65 if $self->password;
68 my $transport = Email::Sender::Transport::SMTP->new( $params );
70 return $transport;
73 =head3 libraries
75 my $libraries = $smtp_server->libraries
77 Accessor to get the list of libraries that are linked to this SMTP server
79 =cut
81 sub libraries {
82 my ($self) = @_;
84 my @library_ids = $self->_result->library_smtp_servers->get_column('library_id')->all;
85 return Koha::Libraries->search( { branchcode => { -in => \@library_ids } } );
88 =head3 is_system_default
90 if ( $smtp_server->is_system_default ) { ... }
92 Method that tells if a Koha::SMTP::Server is the hardcoded one.
94 =cut
96 sub is_system_default {
97 my ($self) = @_;
99 return $self->{_is_system_default};
102 =head3 to_api
104 my $json = $smtp_server->to_api;
106 Overloaded method that returns a JSON representation of the Koha::SMTP::Server object,
107 suitable for API output.
109 =cut
111 sub to_api {
112 my ( $self, $params ) = @_;
114 my $json = $self->SUPER::to_api( $params );
115 delete $json->{password};
117 return $json;
120 =head3 to_api_mapping
122 This method returns the mapping for representing a Koha::SMTP::Server object
123 on the API.
125 =cut
127 sub to_api_mapping {
128 return {
129 id => 'smtp_server_id'
133 =head2 Internal methods
135 =head3 _type
137 Return type of Object relating to Schema ResultSet
139 =cut
141 sub _type {
142 return 'SmtpServer';