Cleanup: replace some list with vector.
[dcpomatic.git] / src / lib / send_notification_email_job.cc
1 /*
2     Copyright (C) 2018-2021 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     DCP-o-matic is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21
22 #include "send_notification_email_job.h"
23 #include "exceptions.h"
24 #include "config.h"
25 #include "emailer.h"
26 #include "compose.hpp"
27
28 #include "i18n.h"
29
30
31 using std::string;
32 using std::shared_ptr;
33
34
35 /** @param body Email body */
36 SendNotificationEmailJob::SendNotificationEmailJob (string body)
37         : Job (shared_ptr<Film>())
38         , _body (body)
39 {
40
41 }
42
43
44 SendNotificationEmailJob::~SendNotificationEmailJob ()
45 {
46         stop_thread ();
47 }
48
49
50 string
51 SendNotificationEmailJob::name () const
52 {
53         return _("Email notification");
54 }
55
56
57 string
58 SendNotificationEmailJob::json_name () const
59 {
60         return N_("send_notification_email");
61 }
62
63
64 void
65 SendNotificationEmailJob::run ()
66 {
67         auto config = Config::instance ();
68
69         if (config->mail_server().empty()) {
70                 throw NetworkError (_("No mail server configured in preferences"));
71         }
72
73         set_progress_unknown ();
74         Emailer email (config->notification_from(), { config->notification_to() }, config->notification_subject(), _body);
75         for (auto i: config->notification_cc()) {
76                 email.add_cc (i);
77         }
78         if (!config->notification_bcc().empty()) {
79                 email.add_bcc (config->notification_bcc());
80         }
81
82         email.send (config->mail_server(), config->mail_port(), config->mail_protocol(), config->mail_user(), config->mail_password());
83
84         set_progress (1);
85         set_state (FINISHED_OK);
86 }