abbb844e2f5c2fe6b2a5b72ba3607d94dbd4f7ab
[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 string
44 SendNotificationEmailJob::name () const
45 {
46         return _("Email notification");
47 }
48
49 string
50 SendNotificationEmailJob::json_name () const
51 {
52         return N_("send_notification_email");
53 }
54
55 void
56 SendNotificationEmailJob::run ()
57 {
58         Config* config = Config::instance ();
59
60         if (config->mail_server().empty()) {
61                 throw NetworkError (_("No mail server configured in preferences"));
62         }
63
64         set_progress_unknown ();
65         list<string> to;
66         to.push_back (config->notification_to ());
67         Emailer email (config->notification_from(), to, config->notification_subject(), _body);
68         BOOST_FOREACH (string i, config->notification_cc()) {
69                 email.add_cc (i);
70         }
71         if (!config->notification_bcc().empty()) {
72                 email.add_bcc (config->notification_bcc ());
73         }
74
75         email.send (config->mail_server(), config->mail_port(), config->mail_protocol(), config->mail_user(), config->mail_password());
76
77         set_progress (1);
78         set_state (FINISHED_OK);
79 }