Remove some now-pointless passing of name_values.
[dcpomatic.git] / src / lib / send_kdm_email_job.cc
1 /*
2     Copyright (C) 2013-2020 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_kdm_email_job.h"
22 #include "compose.hpp"
23 #include "kdm_with_metadata.h"
24 #include "film.h"
25 #include <list>
26
27 #include "i18n.h"
28
29 using std::string;
30 using std::list;
31 using boost::shared_ptr;
32 using boost::optional;
33
34 /** @param kdms KDMs to email.
35  *  @param container_name_format Format to ues for folders / ZIP files.
36  *  @param filename_format Format to use for filenames.
37  *  @param name_values Values to substitute into \p container_name_format and \p filename_format.
38  *  @param cpl_name Name of the CPL that the KDMs are for.
39  */
40 SendKDMEmailJob::SendKDMEmailJob (
41         list<list<KDMWithMetadataPtr> > kdms,
42         dcp::NameFormat container_name_format,
43         dcp::NameFormat filename_format,
44         string cpl_name
45         )
46         : Job (shared_ptr<Film>())
47         , _container_name_format (container_name_format)
48         , _filename_format (filename_format)
49         , _cpl_name (cpl_name)
50         , _kdms (kdms)
51 {
52
53 }
54
55 SendKDMEmailJob::~SendKDMEmailJob ()
56 {
57         stop_thread ();
58 }
59
60 string
61 SendKDMEmailJob::name () const
62 {
63         optional<string> f = _kdms.front().front()->get('f');
64         if (!f || f->empty()) {
65                 return _("Email KDMs");
66         }
67
68         return String::compose (_("Email KDMs for %2"), *f);
69 }
70
71 string
72 SendKDMEmailJob::json_name () const
73 {
74         return N_("send_kdm_email");
75 }
76
77 void
78 SendKDMEmailJob::run ()
79 {
80         set_progress_unknown ();
81         email (_kdms, _container_name_format, _filename_format, _cpl_name);
82         set_progress (1);
83         set_state (FINISHED_OK);
84 }