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