Supporters update.
[dcpomatic.git] / src / wx / qube_certificate_panel.cc
1 /*
2     Copyright (C) 2019-2021 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
22 #include "download_certificate_dialog.h"
23 #include "qube_certificate_panel.h"
24 #include "wx_util.h"
25 #include "lib/compose.hpp"
26 #include "lib/config.h"
27 #include "lib/internet.h"
28 #include <boost/algorithm/string.hpp>
29
30
31 using std::string;
32 using std::list;
33 using namespace boost::algorithm;
34 using boost::optional;
35 #if BOOST_VERSION >= 106100
36 using namespace boost::placeholders;
37 #endif
38
39
40 static string const base = "ftp://certificates.qubecinema.com/";
41
42
43 QubeCertificatePanel::QubeCertificatePanel (DownloadCertificateDialog* dialog, string type)
44         : DownloadCertificatePanel (dialog)
45         , _type (type)
46 {
47
48 }
49
50
51 void
52 QubeCertificatePanel::do_download ()
53 {
54         auto files = ls_url(String::compose("%1SMPTE-%2/", base, _type));
55         if (files.empty()) {
56                 error_dialog (this, _("Could not read certificates from Qube server."));
57                 return;
58         }
59
60         auto serial = wx_to_std(_serial->GetValue());
61         trim(serial);
62
63         optional<string> name;
64         for (auto i: files) {
65                 if (boost::algorithm::starts_with(i, String::compose("%1-%2-", _type, serial))) {
66                         name = i;
67                         break;
68                 }
69         }
70
71         if (!name) {
72                 _dialog->message()->SetLabel(wxT(""));
73                 error_dialog (this, wxString::Format(_("Could not find serial number %s"), std_to_wx(serial).data()));
74                 return;
75         }
76
77         auto error = get_from_url (String::compose("%1SMPTE-%2/%3", base, _type, *name), true, false, boost::bind(&DownloadCertificatePanel::load_certificate, this, _1, _2));
78
79         if (error) {
80                 _dialog->message()->SetLabel(wxT(""));
81                 error_dialog (this, std_to_wx(*error));
82         } else {
83                 _dialog->message()->SetLabel (_("Certificate downloaded"));
84                 _dialog->setup_sensitivity ();
85         }
86 }
87
88
89 wxString
90 QubeCertificatePanel::name () const
91 {
92         return _("Qube") + " " + std_to_wx(_type);
93 }