8aed9527525525143b819e29437b1b478854d552
[dcpomatic.git] / src / lib / recipient_with_dkdm.h
1 /*
2     Copyright (C) 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 #ifndef DCPOMATIC_RECIPIENT_WITH_DKDM_H
22 #define DCPOMATIC_RECIPIENT_WITH_DKDM_H
23
24 #include "dkdm_recipient.h"
25 #include <dcp/encrypted_kdm.h>
26 #include <dcp/name_format.h>
27
28 class RecipientWithDKDM
29 {
30 public:
31         RecipientWithDKDM (boost::shared_ptr<DKDMRecipient> r, dcp::EncryptedKDM k)
32                 : recipient (r)
33                 , kdm (k)
34         {}
35
36         void make_zip_file (boost::filesystem::path zip_file, dcp::NameFormat name_format, dcp::NameFormat::Map name_values) const;
37
38         static int write_files (
39                 std::vector<RecipientWithDKDM> kdms, boost::filesystem::path directory,
40                 dcp::NameFormat name_format, dcp::NameFormat::Map name_values,
41                 boost::function<bool (boost::filesystem::path)> confirm_overwrite
42                 );
43
44         static void email (
45                 std::vector<RecipientWithDKDM> kdms,
46                 dcp::NameFormat filename_format,
47                 dcp::NameFormat::Map name_values,
48                 std::string cpl_name
49                 );
50
51         boost::shared_ptr<DKDMRecipient> recipient;
52         dcp::EncryptedKDM kdm;
53 };
54
55 #endif