9db478330f6873ccb9e73a1269e1c12e628e342f
[dcpomatic.git] / src / lib / dcp.cc
1 /*
2     Copyright (C) 2014-2018 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 "dcp.h"
22 #include "config.h"
23 #include "film.h"
24 #include "log.h"
25 #include "compose.hpp"
26 #include "dcp_content.h"
27 #include <dcp/dcp.h>
28 #include <dcp/decrypted_kdm.h>
29 #include <dcp/exceptions.h>
30 #include <boost/foreach.hpp>
31
32 #include "i18n.h"
33
34 using std::list;
35 using std::string;
36 using boost::shared_ptr;
37
38 #define LOG_GENERAL(...) _dcp_content->film()->log()->log (String::compose (__VA_ARGS__), LogEntry::TYPE_GENERAL);
39
40 /** Find all the CPLs in our directories, cross-add assets and return the CPLs */
41 list<shared_ptr<dcp::CPL> >
42 DCP::cpls () const
43 {
44         list<shared_ptr<dcp::DCP> > dcps;
45         list<shared_ptr<dcp::CPL> > cpls;
46
47         LOG_GENERAL ("Reading %1 DCP directories", _dcp_content->directories().size());
48         BOOST_FOREACH (boost::filesystem::path i, _dcp_content->directories()) {
49                 shared_ptr<dcp::DCP> dcp (new dcp::DCP (i));
50                 dcp->read (false, 0, true);
51                 dcps.push_back (dcp);
52                 LOG_GENERAL ("Reading DCP %1: %2 CPLs", i.string(), dcp->cpls().size());
53                 BOOST_FOREACH (shared_ptr<dcp::CPL> i, dcp->cpls()) {
54                         cpls.push_back (i);
55                 }
56         }
57
58         BOOST_FOREACH (shared_ptr<dcp::DCP> i, dcps) {
59                 BOOST_FOREACH (shared_ptr<dcp::DCP> j, dcps) {
60                         if (i != j) {
61                                 i->resolve_refs (j->assets (true));
62                         }
63                 }
64         }
65
66         if (_dcp_content->kdm ()) {
67                 BOOST_FOREACH (shared_ptr<dcp::DCP> i, dcps) {
68                         try {
69                                 i->add (dcp::DecryptedKDM (_dcp_content->kdm().get(), Config::instance()->decryption_chain()->key().get ()));
70                         } catch (dcp::KDMDecryptionError& e) {
71                                 /* Flesh out the error a bit */
72                                 string const kdm_subject_name = _dcp_content->kdm()->recipient_x509_subject_name();
73                                 bool on_chain = false;
74                                 shared_ptr<const dcp::CertificateChain> dc = Config::instance()->decryption_chain();
75                                 BOOST_FOREACH (dcp::Certificate i, dc->root_to_leaf()) {
76                                         if (i.subject() == kdm_subject_name) {
77                                                 on_chain = true;
78                                         }
79                                 }
80                                 if (!on_chain) {
81                                         throw KDMError (_("KDM was not made for DCP-o-matic's decryption certificate."), e.what());
82                                 } else if (on_chain && kdm_subject_name != dc->leaf().subject()) {
83                                         throw KDMError (_("KDM was made for DCP-o-matic but not for its leaf certificate."), e.what());
84                                 }
85                         }
86                 }
87         }
88
89         return cpls;
90 }