Fix login denied (67) errors when trying to download certificates
[dcpomatic.git] / src / wx / dolby_doremi_certificate_panel.cc
index f0f0a2601e219d6d97a74df045d644dad3a51662..0ad3058c287babf1ba645732f7e63328ece6b415 100644 (file)
@@ -38,8 +38,8 @@ using boost::function;
 using boost::optional;
 using dcp::raw_convert;
 
-DolbyDoremiCertificatePanel::DolbyDoremiCertificatePanel (wxWindow* parent, wxStaticText* message, DownloadCertificateDialog* dialog)
-       : DownloadCertificatePanel (parent, message, dialog)
+DolbyDoremiCertificatePanel::DolbyDoremiCertificatePanel (DownloadCertificateDialog* dialog)
+       : DownloadCertificatePanel (dialog)
 {
 
 }
@@ -139,11 +139,13 @@ try_cp850 (list<string>& urls, list<string>& files, string prefix, string serial
 }
 
 void
-DolbyDoremiCertificatePanel::do_download (string serial)
+DolbyDoremiCertificatePanel::do_download ()
 {
+       string const serial = wx_to_std (_serial->GetValue());
+
        /* Try dcp2000, imb and ims prefixes (see mantis #375) */
 
-       string const prefix = "ftp://anonymous@ftp.cinema.dolby.com/Certificates/";
+       string const prefix = "ftp://ftp.cinema.dolby.com/Certificates/";
        list<string> urls;
        list<string> files;
 
@@ -175,7 +177,7 @@ DolbyDoremiCertificatePanel::do_download (string serial)
        list<string>::const_iterator i = urls.begin ();
        list<string>::const_iterator j = files.begin ();
        while (!ok && i != urls.end ()) {
-               optional<string> error = get_from_zip_url (*i++, *j++, true, boost::bind (&DownloadCertificatePanel::load, this, _1));
+               optional<string> error = get_from_zip_url (*i++, *j++, true, true, boost::bind (&DownloadCertificatePanel::load_certificate, this, _1));
                if (error) {
                        errors.push_back (error.get ());
                } else {
@@ -184,10 +186,10 @@ DolbyDoremiCertificatePanel::do_download (string serial)
        }
 
        if (ok) {
-               _message->SetLabel (_("Certificate downloaded"));
+               _dialog->message()->SetLabel (_("Certificate downloaded"));
                _dialog->setup_sensitivity ();
        } else {
-               _message->SetLabel (wxT (""));
+               _dialog->message()->SetLabel (wxT (""));
 
                string s;
                BOOST_FOREACH (string e, errors) {