X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fsend_kdm_email_job.cc;h=4834657edbf592064d4c764643c92ae02f0e02c0;hb=736b3a068ba5a402b541d32f270669e6e1a4e5c4;hp=de03222725074b9a6a9fdfa670a463de0f88f396;hpb=4616b19fb5241a54c9d57f7a91bb975f41aed14b;p=dcpomatic.git diff --git a/src/lib/send_kdm_email_job.cc b/src/lib/send_kdm_email_job.cc index de0322272..4834657ed 100644 --- a/src/lib/send_kdm_email_job.cc +++ b/src/lib/send_kdm_email_job.cc @@ -1,26 +1,28 @@ /* Copyright (C) 2013 Carl Hetherington - This program is free software; you can redistribute it and/or modify + This file is part of DCP-o-matic. + + DCP-o-matic is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. - This program is distributed in the hope that it will be useful, + DCP-o-matic is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + along with DCP-o-matic. If not, see . */ #include "send_kdm_email_job.h" #include "compose.hpp" #include "film.h" -#include "kdm.h" +#include "cinema_kdms.h" +#include #include "i18n.h" @@ -28,20 +30,20 @@ using std::string; using std::list; using boost::shared_ptr; +/** @param log Log to write to, or 0 */ SendKDMEmailJob::SendKDMEmailJob ( - shared_ptr f, - list > screens, - boost::filesystem::path dcp, - boost::posix_time::ptime from, - boost::posix_time::ptime to, - dcp::Formulation formulation + list cinema_kdms, + KDMNameFormat name_format, + NameFormat::Map name_values, + string cpl_name, + shared_ptr log ) - : Job (f) - , _screens (screens) - , _dcp (dcp) - , _from (from) - , _to (to) - , _formulation (formulation) + : Job (shared_ptr()) + , _name_format (name_format) + , _name_values (name_values) + , _cpl_name (cpl_name) + , _cinema_kdms (cinema_kdms) + , _log (log) { } @@ -49,7 +51,12 @@ SendKDMEmailJob::SendKDMEmailJob ( string SendKDMEmailJob::name () const { - return String::compose (_("Email KDMs for %1"), _film->name()); + NameFormat::Map::const_iterator i = _name_values.find ("film_name"); + if (i == _name_values.end() || i->second.empty ()) { + return _("Email KDMs"); + } + + return String::compose (_("Email KDMs for %1"), i->second); } string @@ -61,17 +68,8 @@ SendKDMEmailJob::json_name () const void SendKDMEmailJob::run () { - try { - - set_progress_unknown (); - email_kdms (_film, _screens, _dcp, _from, _to, _formulation); - set_progress (1); - set_state (FINISHED_OK); - - } catch (std::exception& e) { - - set_progress (1); - set_state (FINISHED_ERROR); - throw; - } + set_progress_unknown (); + CinemaKDMs::email (_cinema_kdms, _name_format, _name_values, _cpl_name, _log); + set_progress (1); + set_state (FINISHED_OK); }