Add debug option to log SMTP session transcripts.
[dcpomatic.git] / src / lib / send_kdm_email_job.cc
1 /*
2     Copyright (C) 2013 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include "send_kdm_email_job.h"
21 #include "compose.hpp"
22 #include "film.h"
23 #include "cinema_kdms.h"
24 #include <list>
25
26 #include "i18n.h"
27
28 using std::string;
29 using std::list;
30 using boost::shared_ptr;
31
32 /** @param log Log to write to, or 0 */
33 SendKDMEmailJob::SendKDMEmailJob (
34         string film_name,
35         string cpl_name,
36         boost::posix_time::ptime from,
37         boost::posix_time::ptime to,
38         list<CinemaKDMs> cinema_kdms,
39         shared_ptr<Log> log
40         )
41         : Job (shared_ptr<Film>())
42         , _film_name (film_name)
43         , _cpl_name (cpl_name)
44         , _from (from)
45         , _to (to)
46         , _cinema_kdms (cinema_kdms)
47         , _log (log)
48 {
49
50 }
51
52 string
53 SendKDMEmailJob::name () const
54 {
55         if (_film_name.empty ()) {
56                 return _("Email KDMs");
57         }
58
59         return String::compose (_("Email KDMs for %1"), _film_name);
60 }
61
62 string
63 SendKDMEmailJob::json_name () const
64 {
65         return N_("send_kdm_email");
66 }
67
68 void
69 SendKDMEmailJob::run ()
70 {
71         set_progress_unknown ();
72         CinemaKDMs::email (_film_name, _cpl_name, _cinema_kdms, _from, _to, shared_from_this(), _log);
73         set_progress (1);
74         set_state (FINISHED_OK);
75 }