Add some basic JSON stuff.
[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 "kdm.h"
24
25 #include "i18n.h"
26
27 using std::string;
28 using std::list;
29 using boost::shared_ptr;
30
31 SendKDMEmailJob::SendKDMEmailJob (
32         shared_ptr<const Film> f,
33         list<shared_ptr<Screen> > screens,
34         boost::filesystem::path dcp,
35         boost::posix_time::ptime from,
36         boost::posix_time::ptime to
37         )
38         : Job (f)
39         , _screens (screens)
40         , _dcp (dcp)
41         , _from (from)
42         , _to (to)
43 {
44
45 }
46
47 string
48 SendKDMEmailJob::name () const
49 {
50         return String::compose (_("Email KDMs for %1"), _film->name());
51 }
52
53 string
54 SendKDMEmailJob::json_name () const
55 {
56         return N_("send_kdm_email");
57 }
58
59 void
60 SendKDMEmailJob::run ()
61 {
62         try {
63                 
64                 set_progress_unknown ();
65                 email_kdms (_film, _screens, _dcp, _from, _to);
66                 set_progress (1);
67                 set_state (FINISHED_OK);
68                 
69         } catch (std::exception& e) {
70
71                 set_progress (1);
72                 set_state (FINISHED_ERROR);
73                 throw;
74         }
75 }