Bump libsub for libdcp dependency removal.
[dcpomatic.git] / src / lib / kdm_recipient.cc
index d05192ac675111f3a8f46ad3dbe49d6cbe7d606c..671e9797c24cbfb40e2b9bdf509538d2cf1dc391 100644 (file)
@@ -1,5 +1,5 @@
 /*
-    Copyright (C) 2020 Carl Hetherington <cth@carlh.net>
+    Copyright (C) 2020-2021 Carl Hetherington <cth@carlh.net>
 
     This file is part of DCP-o-matic.
 
 
 */
 
+
 #include "kdm_recipient.h"
 
+
 KDMRecipient::KDMRecipient (cxml::ConstNodePtr node)
        : name (node->string_child("Name"))
-       , notes (node->optional_string_child("Notes").get_value_or (""))
+       , notes (node->optional_string_child("Notes").get_value_or(""))
 {
        if (node->optional_string_child("Certificate")) {
                recipient = dcp::Certificate (node->string_child("Certificate"));
        } else if (node->optional_string_child("Recipient")) {
                recipient = dcp::Certificate (node->string_child("Recipient"));
        }
+
+       recipient_file = node->optional_string_child("RecipientFile");
 }
 
 
@@ -39,6 +43,9 @@ KDMRecipient::as_xml (xmlpp::Element* parent) const
        if (recipient) {
                parent->add_child("Recipient")->add_child_text(recipient->certificate(true));
        }
+       if (recipient_file) {
+               parent->add_child("RecipientFile")->add_child_text(*recipient_file);
+       }
 
        parent->add_child("Notes")->add_child_text(notes);
 }