fixup! WIP: stop using video directory and hard-linking (#2756).
[dcpomatic.git] / src / lib / kdm_recipient.cc
index d05192ac675111f3a8f46ad3dbe49d6cbe7d606c..c33eb1b9fa962fcd0e308af21d4770aad10c08dc 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");
 }
 
 
 void
 KDMRecipient::as_xml (xmlpp::Element* parent) const
 {
-       parent->add_child("Name")->add_child_text(name);
+       cxml::add_text_child(parent, "Name", name);
        if (recipient) {
-               parent->add_child("Recipient")->add_child_text(recipient->certificate(true));
+               cxml::add_text_child(parent, "Recipient", recipient->certificate(true));
+       }
+       if (recipient_file) {
+               cxml::add_text_child(parent, "RecipientFile", *recipient_file);
        }
 
-       parent->add_child("Notes")->add_child_text(notes);
+       cxml::add_text_child(parent, "Notes", notes);
 }