e5edc49ee746410c27dafe5368e8983c358f6128
[dcpomatic.git] / src / lib / send_notification_email_job.cc
1 /*
2     Copyright (C) 2018 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 #include "send_notification_email_job.h"
22 #include "exceptions.h"
23 #include "config.h"
24 #include "emailer.h"
25 #include "compose.hpp"
26 #include <list>
27
28 #include "i18n.h"
29
30 using std::string;
31 using std::list;
32 using std::shared_ptr;
33
34 /** @param body Email body */
35 SendNotificationEmailJob::SendNotificationEmailJob (string body)
36         : Job (shared_ptr<Film>())
37         , _body (body)
38 {
39
40 }
41
42 SendNotificationEmailJob::~SendNotificationEmailJob ()
43 {
44         stop_thread ();
45 }
46
47 string
48 SendNotificationEmailJob::name () const
49 {
50         return _("Email notification");
51 }
52
53 string
54 SendNotificationEmailJob::json_name () const
55 {
56         return N_("send_notification_email");
57 }
58
59 void
60 SendNotificationEmailJob::run ()
61 {
62         Config* config = Config::instance ();
63
64         if (config->mail_server().empty()) {
65                 throw NetworkError (_("No mail server configured in preferences"));
66         }
67
68         set_progress_unknown ();
69         list<string> to;
70         to.push_back (config->notification_to ());
71         Emailer email (config->notification_from(), to, config->notification_subject(), _body);
72         for (auto i: config->notification_cc()) {
73                 email.add_cc (i);
74         }
75         if (!config->notification_bcc().empty()) {
76                 email.add_bcc (config->notification_bcc ());
77         }
78
79         email.send (config->mail_server(), config->mail_port(), config->mail_protocol(), config->mail_user(), config->mail_password());
80
81         set_progress (1);
82         set_state (FINISHED_OK);
83 }