0d77f0862b3f0876951e03314396cf6f73ef555b
[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 SendKDMEmailJob::SendKDMEmailJob (
33         string film_name,
34         string cpl_name,
35         boost::posix_time::ptime from,
36         boost::posix_time::ptime to,
37         list<CinemaKDMs> cinema_kdms
38         )
39         : Job (shared_ptr<Film>())
40         , _film_name (film_name)
41         , _cpl_name (cpl_name)
42         , _from (from)
43         , _to (to)
44         , _cinema_kdms (cinema_kdms)
45 {
46
47 }
48
49 string
50 SendKDMEmailJob::name () const
51 {
52         if (_film_name.empty ()) {
53                 return _("Email KDMs");
54         }
55
56         return String::compose (_("Email KDMs for %1"), _film_name);
57 }
58
59 string
60 SendKDMEmailJob::json_name () const
61 {
62         return N_("send_kdm_email");
63 }
64
65 void
66 SendKDMEmailJob::run ()
67 {
68         set_progress_unknown ();
69         CinemaKDMs::email (_film_name, _cpl_name, _cinema_kdms, _from, _to, shared_from_this ());
70         set_progress (1);
71         set_state (FINISHED_OK);
72 }