summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2024-03-22 20:39:38 +0100
committerCarl Hetherington <cth@carlh.net>2024-04-02 00:52:27 +0200
commit0cdb390a035f8bb6d3a17633f791a78cf835143c (patch)
tree3567496ac74763efd0a19a0adcc8c2d3f2bb3f4b
parent20c7cc36c84b53dba75adba6532a2c0e33fd901c (diff)
Add add-dkdm command to add DKDMs to DCP-o-matic's internal list from the CLI.
-rw-r--r--src/lib/kdm_cli.cc21
-rw-r--r--test/kdm_cli_test.cc28
2 files changed, 43 insertions, 6 deletions
diff --git a/src/lib/kdm_cli.cc b/src/lib/kdm_cli.cc
index f63fd2a55..651ba8e26 100644
--- a/src/lib/kdm_cli.cc
+++ b/src/lib/kdm_cli.cc
@@ -62,6 +62,7 @@ help (std::function<void (string)> out)
out ("create create KDMs; default if no other command is specified");
out ("list-cinemas list known cinemas from DCP-o-matic settings");
out ("list-dkdm-cpls list CPLs for which DCP-o-matic has DKDMs");
+ out ("add-dkdm add DKDM to DCP-o-matic's list");
out (" -h, --help show this help");
out (" -o, --output <path> output file or directory");
out (" -K, --filename-format <format> filename format for KDMs");
@@ -594,7 +595,8 @@ try
vector<string> commands = {
"create",
"list-cinemas",
- "list-dkdm-cpls"
+ "list-dkdm-cpls",
+ "add-dkdm"
};
if (optind < argc - 1) {
@@ -603,7 +605,7 @@ try
} else if (optind < argc) {
/* Look for a valid command, hoping that it's not the name of the KDM / CPL / whatever */
if (std::find(commands.begin(), commands.end(), argv[optind]) != commands.end()) {
- command = argv[optind];
+ command = argv[optind++];
}
}
@@ -638,6 +640,17 @@ try
return {};
}
+ if (optind >= argc) {
+ throw KDMCLIError("no film, CPL ID or DKDM specified");
+ }
+
+ if (command == "add-dkdm") {
+ auto dkdms = Config::instance()->dkdms();
+ dkdms->add(make_shared<DKDM>(dcp::EncryptedKDM(dcp::file_to_string(argv[optind]))));
+ Config::instance()->write_config();
+ return {};
+ }
+
if (!duration_string && !valid_to) {
throw KDMCLIError ("you must specify a --valid-duration or --valid-to");
}
@@ -646,10 +659,6 @@ try
throw KDMCLIError ("you must specify --valid-from");
}
- if (optind >= argc) {
- throw KDMCLIError ("no film, CPL ID or DKDM specified");
- }
-
if (screens.empty()) {
if (!cinema_name) {
throw KDMCLIError ("you must specify either a cinema or one or more screens using certificate files");
diff --git a/test/kdm_cli_test.cc b/test/kdm_cli_test.cc
index 057d7be93..303f2b0d4 100644
--- a/test/kdm_cli_test.cc
+++ b/test/kdm_cli_test.cc
@@ -23,6 +23,7 @@
#include "lib/config.h"
#include "lib/content_factory.h"
#include "lib/cross.h"
+#include "lib/dkdm_wrapper.h"
#include "lib/film.h"
#include "lib/kdm_cli.h"
#include "lib/screen.h"
@@ -34,6 +35,7 @@
#include <iostream>
+using std::dynamic_pointer_cast;
using std::string;
using std::vector;
using boost::optional;
@@ -331,3 +333,29 @@ BOOST_AUTO_TEST_CASE(kdm_cli_time)
BOOST_CHECK(boost::filesystem::exists(kdm_filename));
}
+
+BOOST_AUTO_TEST_CASE(kdm_cli_add_dkdm)
+{
+ ConfigRestorer cr;
+
+ setup_test_config();
+
+ BOOST_CHECK_EQUAL(Config::instance()->dkdms()->children().size(), 0U);
+
+ vector<string> args = {
+ "kdm_cli",
+ "add-dkdm",
+ "test/data/dkdm.xml"
+ };
+
+ vector<string> output;
+ auto error = run(args, output);
+ BOOST_CHECK(!error);
+
+ auto dkdms = Config::instance()->dkdms()->children();
+ BOOST_CHECK_EQUAL(dkdms.size(), 1U);
+ auto dkdm = dynamic_pointer_cast<DKDM>(dkdms.front());
+ BOOST_CHECK(dkdm);
+ BOOST_CHECK_EQUAL(dkdm->dkdm().as_xml(), dcp::file_to_string("test/data/dkdm.xml"));
+}
+