Don't give up on backups if config.xml isn't there (#2185).
[dcpomatic.git] / src / lib / send_kdm_email_job.cc
index 18f686717d451c582c59e54136bf56829f66e788..d4d13fa48d6f5d9865aaa7782ff9f9ce72cc86f4 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2013-2020 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2013-2021 Carl Hetherington <cth@carlh.net>
 
     This file is part of DCP-o-matic.
 
@@ -18,6 +18,7 @@
 
 */
 
+
 #include "send_kdm_email_job.h"
 #include "compose.hpp"
 #include "kdm_with_metadata.h"
 
 #include "i18n.h"
 
+
 using std::string;
 using std::list;
-using boost::shared_ptr;
+using std::shared_ptr;
 using boost::optional;
 
+
+SendKDMEmailJob::SendKDMEmailJob (
+       list<KDMWithMetadataPtr> kdms,
+       dcp::NameFormat container_name_format,
+       dcp::NameFormat filename_format,
+       string cpl_name
+       )
+       : Job (shared_ptr<Film>())
+       , _container_name_format (container_name_format)
+       , _filename_format (filename_format)
+       , _cpl_name (cpl_name)
+{
+       for (auto i: kdms) {
+               list<KDMWithMetadataPtr> s;
+               s.push_back (i);
+               _kdms.push_back (s);
+       }
+}
+
+
 /** @param kdms KDMs to email.
  *  @param container_name_format Format to ues for folders / ZIP files.
  *  @param filename_format Format to use for filenames.
@@ -52,33 +74,37 @@ SendKDMEmailJob::SendKDMEmailJob (
 
 }
 
+
 SendKDMEmailJob::~SendKDMEmailJob ()
 {
        stop_thread ();
 }
 
+
 string
 SendKDMEmailJob::name () const
 {
-       optional<string> f = _kdms.front().front()->get('f');
+       auto f = _kdms.front().front()->get('f');
        if (!f || f->empty()) {
                return _("Email KDMs");
        }
 
-       return String::compose (_("Email KDMs for %2"), *f);
+       return String::compose (_("Email KDMs for %1"), *f);
 }
 
+
 string
 SendKDMEmailJob::json_name () const
 {
        return N_("send_kdm_email");
 }
 
+
 void
 SendKDMEmailJob::run ()
 {
        set_progress_unknown ();
-       email (_kdms, _container_name_format, _filename_format, _cpl_name);
+       send_emails (_kdms, _container_name_format, _filename_format, _cpl_name);
        set_progress (1);
        set_state (FINISHED_OK);
 }