From: Carl Hetherington Date: Fri, 22 Mar 2024 19:39:38 +0000 (+0100) Subject: Add add-dkdm command to add DKDMs to DCP-o-matic's internal list from the CLI. X-Git-Tag: v2.17.16~25 X-Git-Url: https://git.carlh.net/gitweb/?a=commitdiff_plain;h=0cdb390a035f8bb6d3a17633f791a78cf835143c;p=dcpomatic.git Add add-dkdm command to add DKDMs to DCP-o-matic's internal list from the CLI. --- 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 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 output file or directory"); out (" -K, --filename-format filename format for KDMs"); @@ -594,7 +595,8 @@ try vector 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(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 +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 args = { + "kdm_cli", + "add-dkdm", + "test/data/dkdm.xml" + }; + + vector 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(dkdms.front()); + BOOST_CHECK(dkdm); + BOOST_CHECK_EQUAL(dkdm->dkdm().as_xml(), dcp::file_to_string("test/data/dkdm.xml")); +} +