summaryrefslogtreecommitdiff
path: root/src/wx
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2018-08-15 02:24:26 +0100
committerCarl Hetherington <cth@carlh.net>2018-08-15 10:57:07 +0100
commit89abe02431bd8d885197883a3ffafdc8d836dce4 (patch)
tree73cee24c9b4952c20b6609e0a56cde136f833684 /src/wx
parentf8acc34bcb4401184064598353d6c54df3cab1f9 (diff)
Christie support.
Diffstat (limited to 'src/wx')
-rw-r--r--src/wx/christie_certificate_panel.cc87
-rw-r--r--src/wx/christie_certificate_panel.h30
-rw-r--r--src/wx/download_certificate_dialog.cc2
-rw-r--r--src/wx/full_config_dialog.cc34
-rw-r--r--src/wx/wscript1
5 files changed, 154 insertions, 0 deletions
diff --git a/src/wx/christie_certificate_panel.cc b/src/wx/christie_certificate_panel.cc
new file mode 100644
index 000000000..53d815bf7
--- /dev/null
+++ b/src/wx/christie_certificate_panel.cc
@@ -0,0 +1,87 @@
+/*
+ Copyright (C) 2018 Carl Hetherington <cth@carlh.net>
+
+ This file is part of DCP-o-matic.
+
+ DCP-o-matic is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ DCP-o-matic is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with DCP-o-matic. If not, see <http://www.gnu.org/licenses/>.
+
+*/
+
+#include "christie_certificate_panel.h"
+#include "download_certificate_dialog.h"
+#include "wx_util.h"
+#include "lib/internet.h"
+#include "lib/compose.hpp"
+#include "lib/config.h"
+
+using std::string;
+using boost::optional;
+
+ChristieCertificatePanel::ChristieCertificatePanel (DownloadCertificateDialog* dialog)
+ : DownloadCertificatePanel (dialog)
+{
+
+}
+
+void
+ChristieCertificatePanel::do_download ()
+{
+ Config* config = Config::instance ();
+ if (!config->christie_username() || !config->christie_password()) {
+ _dialog->message()->SetLabel(wxT(""));
+ error_dialog (this, _("No Christie username/password configured. Add your account details to the Accounts page in Preferences."));
+ return;
+ }
+
+ string const serial = wx_to_std (_serial->GetValue());
+ string const url = String::compose (
+ "ftp://%1:%2@certificates.christiedigital.com/Certificates/F-IMB/F-IMB_000000%3_sha256.pem",
+ Config::instance()->christie_username().get(),
+ Config::instance()->christie_password().get(),
+ serial
+ );
+
+ optional<string> all_errors;
+
+ optional<string> error = get_from_url (url, true, boost::bind (&DownloadCertificatePanel::load, this, _1));
+ if (error) {
+ all_errors = *error;
+
+ string const url = String::compose (
+ "ftp://%1:%2@certificates.christiedigital.com/Certificates/F-IMB/F-IMB_000000%3_sha256.pem",
+ Config::instance()->christie_username().get(),
+ Config::instance()->christie_password().get(),
+ serial
+ );
+
+ error = get_from_url (url, true, boost::bind (&DownloadCertificatePanel::load, this, _1));
+ if (error) {
+ *all_errors += "\n" + *error;
+ }
+ }
+
+ if (all_errors) {
+ _dialog->message()->SetLabel(wxT(""));
+ error_dialog (this, std_to_wx(*all_errors));
+ } else {
+ _dialog->message()->SetLabel (_("Certificate downloaded"));
+ _dialog->setup_sensitivity ();
+ }
+}
+
+wxString
+ChristieCertificatePanel::name () const
+{
+ return _("Christie");
+}
diff --git a/src/wx/christie_certificate_panel.h b/src/wx/christie_certificate_panel.h
new file mode 100644
index 000000000..0c9a64d46
--- /dev/null
+++ b/src/wx/christie_certificate_panel.h
@@ -0,0 +1,30 @@
+/*
+ Copyright (C) 2018 Carl Hetherington <cth@carlh.net>
+
+ This file is part of DCP-o-matic.
+
+ DCP-o-matic is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ DCP-o-matic is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with DCP-o-matic. If not, see <http://www.gnu.org/licenses/>.
+
+*/
+
+#include "download_certificate_panel.h"
+
+class ChristieCertificatePanel : public DownloadCertificatePanel
+{
+public:
+ ChristieCertificatePanel (DownloadCertificateDialog* dialog);
+
+ void do_download ();
+ wxString name () const;
+};
diff --git a/src/wx/download_certificate_dialog.cc b/src/wx/download_certificate_dialog.cc
index 6ca605f56..dfafee36c 100644
--- a/src/wx/download_certificate_dialog.cc
+++ b/src/wx/download_certificate_dialog.cc
@@ -20,6 +20,7 @@
#include "dolby_doremi_certificate_panel.h"
#include "barco_alchemy_certificate_panel.h"
+#include "christie_certificate_panel.h"
#include "download_certificate_dialog.h"
#include "wx_util.h"
@@ -45,6 +46,7 @@ DownloadCertificateDialog::DownloadCertificateDialog (wxWindow* parent)
_pages.push_back (new DolbyDoremiCertificatePanel (this));
_pages.push_back (new BarcoAlchemyCertificatePanel (this));
+ _pages.push_back (new ChristieCertificatePanel (this));
BOOST_FOREACH (DownloadCertificatePanel* i, _pages) {
_notebook->AddPage (i, i->name(), true);
diff --git a/src/wx/full_config_dialog.cc b/src/wx/full_config_dialog.cc
index bf26519e1..d21c8a2c1 100644
--- a/src/wx/full_config_dialog.cc
+++ b/src/wx/full_config_dialog.cc
@@ -943,8 +943,18 @@ public:
_barco_password = new wxTextCtrl (_panel, wxID_ANY);
table->Add (_barco_password, 1, wxEXPAND | wxALL);
+ add_label_to_sizer (table, _panel, _("certificates.christiedigital.com username"), true);
+ _christie_username = new wxTextCtrl (_panel, wxID_ANY);
+ table->Add (_christie_username, 1, wxEXPAND | wxALL);
+
+ add_label_to_sizer (table, _panel, _("certificates.christiedigital.com password"), true);
+ _christie_password = new wxTextCtrl (_panel, wxID_ANY);
+ table->Add (_christie_password, 1, wxEXPAND | wxALL);
+
_barco_username->Bind (wxEVT_TEXT, boost::bind(&AccountsPage::barco_username_changed, this));
_barco_password->Bind (wxEVT_TEXT, boost::bind(&AccountsPage::barco_password_changed, this));
+ _christie_username->Bind (wxEVT_TEXT, boost::bind(&AccountsPage::christie_username_changed, this));
+ _christie_password->Bind (wxEVT_TEXT, boost::bind(&AccountsPage::christie_password_changed, this));
}
void config_changed ()
@@ -953,6 +963,8 @@ public:
checked_set (_barco_username, config->barco_username().get_value_or(""));
checked_set (_barco_password, config->barco_password().get_value_or(""));
+ checked_set (_christie_username, config->christie_username().get_value_or(""));
+ checked_set (_christie_password, config->christie_password().get_value_or(""));
}
void barco_username_changed ()
@@ -975,9 +987,31 @@ public:
}
}
+ void christie_username_changed ()
+ {
+ wxString const s = _christie_username->GetValue();
+ if (!s.IsEmpty()) {
+ Config::instance()->set_christie_username (wx_to_std(s));
+ } else {
+ Config::instance()->unset_christie_username ();
+ }
+ }
+
+ void christie_password_changed ()
+ {
+ wxString const s = _christie_password->GetValue();
+ if (!s.IsEmpty()) {
+ Config::instance()->set_christie_password (wx_to_std(s));
+ } else {
+ Config::instance()->unset_christie_password ();
+ }
+ }
+
private:
wxTextCtrl* _barco_username;
wxTextCtrl* _barco_password;
+ wxTextCtrl* _christie_username;
+ wxTextCtrl* _christie_password;
};
diff --git a/src/wx/wscript b/src/wx/wscript
index 39617b840..560bfc1ab 100644
--- a/src/wx/wscript
+++ b/src/wx/wscript
@@ -36,6 +36,7 @@ sources = """
subtitle_appearance_dialog.cc
text_panel.cc
text_view.cc
+ christie_certificate_panel.cc
cinema_dialog.cc
colour_conversion_editor.cc
config_dialog.cc