Move _state_timer into VideoView.
[dcpomatic.git] / src / wx / qube_certificate_panel.cc
1 /*
2     Copyright (C) 2019 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     DCP-o-matic is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21 #include "qube_certificate_panel.h"
22 #include "download_certificate_dialog.h"
23 #include "wx_util.h"
24 #include "lib/internet.h"
25 #include "lib/compose.hpp"
26 #include "lib/config.h"
27 #include <boost/algorithm/string/predicate.hpp>
28
29 using std::string;
30 using std::list;
31 using boost::optional;
32
33 static string const base = "ftp://certificates.qubecinema.com/";
34
35 QubeCertificatePanel::QubeCertificatePanel (DownloadCertificateDialog* dialog, string type)
36         : DownloadCertificatePanel (dialog)
37         , _type (type)
38 {
39
40 }
41
42 void
43 QubeCertificatePanel::do_download ()
44 {
45         list<string> files = ls_url(String::compose("%1SMPTE-%2/", base, _type));
46         if (files.empty()) {
47                 error_dialog (this, _("Could not read certificates from Qube server."));
48                 return;
49         }
50
51         string const serial = wx_to_std(_serial->GetValue());
52         optional<string> name;
53         BOOST_FOREACH (string i, files) {
54                 if (boost::algorithm::starts_with(i, String::compose("%1-%2-", _type, serial))) {
55                         name = i;
56                         break;
57                 }
58         }
59
60         if (!name) {
61                 _dialog->message()->SetLabel(wxT(""));
62                 error_dialog (this, wxString::Format(_("Could not find serial number %s"), std_to_wx(serial).data()));
63                 return;
64         }
65
66         optional<string> error = get_from_url (String::compose("%1SMPTE-%2/%3", base, _type, *name), true, false, boost::bind(&DownloadCertificatePanel::load, this, _1));
67
68         if (error) {
69                 _dialog->message()->SetLabel(wxT(""));
70                 error_dialog (this, std_to_wx(*error));
71         } else {
72                 _dialog->message()->SetLabel (_("Certificate downloaded"));
73                 _dialog->setup_sensitivity ();
74         }
75 }
76
77 wxString
78 QubeCertificatePanel::name () const
79 {
80         return _("Qube") + " " + std_to_wx(_type);
81 }