/* Copyright (C) 2014-2015 Carl Hetherington This program 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. This program 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 this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #include "dolby_doremi_certificate_panel.h" #include "download_certificate_dialog.h" #include "wx_util.h" #include "lib/compose.hpp" #include "lib/util.h" #include "lib/signal_manager.h" #include "lib/internet.h" #include #include #include #include #include using std::string; using std::cout; using std::list; using boost::function; using boost::optional; DolbyDoremiCertificatePanel::DolbyDoremiCertificatePanel (wxWindow* parent, DownloadCertificateDialog* dialog) : DownloadCertificatePanel (parent, dialog) { add_label_to_sizer (_table, this, _("Server serial number"), true); _serial = new wxTextCtrl (this, wxID_ANY, wxT (""), wxDefaultPosition, wxSize (300, -1)); _table->Add (_serial, 1, wxEXPAND); _serial->Bind (wxEVT_COMMAND_TEXT_UPDATED, boost::bind (&DownloadCertificateDialog::setup_sensitivity, _dialog)); layout (); } void DolbyDoremiCertificatePanel::download (wxStaticText* message) { message->SetLabel (_("Downloading certificate")); /* Hack: without this the SetLabel() above has no visible effect */ wxMilliSleep (200); signal_manager->when_idle (boost::bind (&DolbyDoremiCertificatePanel::finish_download, this, wx_to_std (_serial->GetValue ()), message)); } void DolbyDoremiCertificatePanel::finish_download (string serial, wxStaticText* message) { /* Try dcp2000, imb and ims prefixes (see mantis #375) */ string const prefix = "ftp://anonymous@ftp.cinema.dolby.com/Certificates/"; list urls; list files; urls.push_back (String::compose ("%1%2xxx/dcp2000-%3.dcicerts.zip", prefix, serial.substr(0, 3), serial)); files.push_back (String::compose ("dcp2000-%1.cert.sha256.pem", serial)); urls.push_back (String::compose ("%1%2xxx/dcp2000-%3.dcicerts.zip", prefix, serial.substr(0, 3), serial)); files.push_back (String::compose ("dcp2000-%1.cert.sha256.pem", serial)); urls.push_back (String::compose ("%1%2xxx/dcp2000-%3.certs.zip", prefix, serial.substr(0, 3), serial)); files.push_back (String::compose ("dcp2000-%1.cert.sha256.pem", serial)); urls.push_back (String::compose ("%1%2xxx/imb-%3.dcicerts.zip", prefix, serial.substr(0, 3), serial)); files.push_back (String::compose ("imb-%1.cert.sha256.pem", serial)); urls.push_back (String::compose ("%1%2xxx/ims-%3.dcicerts.zip", prefix, serial.substr(0, 3), serial)); files.push_back (String::compose ("ims-%1.cert.sha256.pem", serial)); int const serial_int = dcp::raw_convert (serial); string cat862; if (serial_int <= 510999) { cat862 = "CAT862_510999_and_lower"; } else if (serial_int >= 617000) { cat862 = "CAT862_617000_and_higher"; } else { int const lower = serial_int - (serial_int % 1000); cat862 = String::compose ("CAT862_%1-%2", lower, lower + 999); } urls.push_back (String::compose ("%1%2/cert_Dolby256-CAT862-%3.zip", prefix, cat862, serial_int)); files.push_back (String::compose ("cert_Dolby256-CAT862-%1.pem.crt", serial_int)); string dsp100; if (serial_int <= 999) { dsp100 = "DSP100_053_thru_999"; } else if (serial_int >= 3000) { dsp100 = "DSP100_3000_and_higher"; } else { int const lower = serial_int - (serial_int % 1000); dsp100 = String::compose ("DSP100_%1_thru_%2", lower, lower + 999); } urls.push_back (String::compose ("%1%2/cert_Dolby256-DSP100-%3.zip", prefix, dsp100, serial_int)); files.push_back (String::compose ("cert_Dolby256-DSP100-%1.pem.crt", serial_int)); list errors; bool ok = false; list::const_iterator i = urls.begin (); list::const_iterator j = files.begin (); while (!ok && i != urls.end ()) { optional error = get_from_zip_url (*i++, *j++, true, boost::bind (&DownloadCertificatePanel::load, this, _1)); if (error) { errors.push_back (error.get ()); } else { ok = true; } } if (ok) { message->SetLabel (_("Certificate downloaded")); _dialog->setup_sensitivity (); } else { message->SetLabel (wxT ("")); SafeStringStream s; BOOST_FOREACH (string e, errors) { s << e << "\n"; } error_dialog (this, std_to_wx (s.str ())); } } bool DolbyDoremiCertificatePanel::ready_to_download () const { return !_serial->IsEmpty (); }