Supporters update.
[dcpomatic.git] / src / wx / dolby_doremi_certificate_panel.cc
1 /*
2     Copyright (C) 2014-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 "dolby_doremi_certificate_panel.h"
23 #include "download_certificate_dialog.h"
24 #include "wx_util.h"
25 #include "lib/compose.hpp"
26 #include "lib/internet.h"
27 #include "lib/signal_manager.h"
28 #include "lib/util.h"
29 #include <dcp/raw_convert.h>
30 #include <curl/curl.h>
31 #include <zip.h>
32 #include <boost/algorithm/string.hpp>
33
34
35 using std::function;
36 using std::string;
37 using std::vector;
38 using namespace boost::algorithm;
39 using boost::optional;
40 #if BOOST_VERSION >= 106100
41 using namespace boost::placeholders;
42 #endif
43 using dcp::raw_convert;
44
45
46 class Location
47 {
48 public:
49         Location(string url_, string file_)
50                 : url(url_)
51                 , file(file_)
52         {}
53
54         string url;
55         string file;
56 };
57
58
59 DolbyDoremiCertificatePanel::DolbyDoremiCertificatePanel (DownloadCertificateDialog* dialog)
60         : DownloadCertificatePanel (dialog)
61 {
62
63 }
64
65
66 static void
67 try_dcp2000(vector<Location>& locations, string prefix, string serial)
68 {
69         locations.push_back({
70                 String::compose("%1%2xxx/Dolby-DCP2000-%3.dcicerts.zip", prefix, serial.substr(0, 3), serial),
71                 String::compose("Dolby-DCP2000-%1.cert.sha256.pem", serial)
72         });
73
74         locations.push_back({
75                 String::compose("%1%2xxx/Dolby-DCP2000-%3.dcicerts.zip", prefix, serial.substr(0, 3), serial),
76                 String::compose("Dolby-DCP2000-%1.cert.sha256.pem", serial)
77         });
78
79         locations.push_back({
80                 String::compose("%1%2xxx/Dolby-DCP2000-%3.certs.zip", prefix, serial.substr(0, 3), serial),
81                 String::compose("Dolby-DCP2000-%1.cert.sha256.pem", serial)
82         });
83
84         locations.push_back({
85                 String::compose("%1%2xxx/dcp2000-%3.dcicerts.zip", prefix, serial.substr(0, 3), serial),
86                 String::compose("dcp2000-%1.cert.sha256.pem", serial)
87         });
88
89         locations.push_back({
90                 String::compose("%1%2xxx/dcp2000-%3.dcicerts.zip", prefix, serial.substr(0, 3), serial),
91                 String::compose("dcp2000-%1.cert.sha256.pem", serial)
92         });
93
94         locations.push_back({
95                 String::compose("%1%2xxx/dcp2000-%3.certs.zip", prefix, serial.substr(0, 3), serial),
96                 String::compose("dcp2000-%1.cert.sha256.pem", serial)
97         });
98 }
99
100
101 static void
102 try_imb(vector<Location>& locations, string prefix, string serial)
103 {
104         locations.push_back({
105                 String::compose("%1%2xxx/Dolby-IMB-%3.dcicerts.zip", prefix, serial.substr(0, 3), serial),
106                 String::compose("Dolby-IMB-%1.cert.sha256.pem", serial)
107         });
108
109         locations.push_back({
110                 String::compose("%1%2xxx/imb-%3.dcicerts.zip", prefix, serial.substr(0, 3), serial),
111                 String::compose("imb-%1.cert.sha256.pem", serial)
112         });
113 }
114
115
116 static void
117 try_ims(vector<Location>& locations, string prefix, string serial)
118 {
119         locations.push_back({
120                 String::compose("%1%2xxx/Dolby-IMS1000-%3.dcicerts.zip", prefix, serial.substr(0, 3), serial),
121                 String::compose("Dolby-IMS1000-%1.cert.sha256.pem", serial)
122         });
123
124         locations.push_back({
125                 String::compose("%1%2xxx/Dolby-IMS2000-%3.dcicerts.zip", prefix, serial.substr(0, 3), serial),
126                 String::compose("Dolby-IMS2000-%1.cert.sha256.pem", serial)
127         });
128
129         locations.push_back({
130                 String::compose("%1%2xxx/cert_Dolby-IMS3000-%3-SMPTE.zip", prefix, serial.substr(0, 3), serial),
131                 String::compose("cert_Dolby-IMS3000-%1-SMPTE.pem", serial)
132         });
133
134         locations.push_back({
135                 String::compose("%1%2xxx/ims-%3.dcicerts.zip", prefix, serial.substr(0, 3), serial),
136                 String::compose("ims-%1.cert.sha256.pem", serial)
137         });
138 }
139
140
141 static void
142 try_cat862(vector<Location>& locations, string prefix, string serial)
143 {
144         int const serial_int = raw_convert<int> (serial);
145
146         string cat862;
147         if (serial_int <= 510999) {
148                 cat862 = "CAT862_510999_and_lower";
149         } else if (serial_int >= 617000) {
150                 cat862 = "CAT862_617000_and_higher";
151         } else {
152                 int const lower = serial_int - (serial_int % 1000);
153                 cat862 = String::compose ("CAT862_%1-%2", lower, lower + 999);
154         }
155
156         locations.push_back({
157                 String::compose("%1%2/cert_Dolby256-CAT862-%3.zip", prefix, cat862, serial_int),
158                 String::compose("cert_Dolby256-CAT862-%1.pem.crt", serial_int)
159         });
160 }
161
162
163 static void
164 try_dsp100(vector<Location>& locations, string prefix, string serial)
165 {
166         int const serial_int = raw_convert<int>(serial);
167
168         string dsp100;
169         if (serial_int <= 999) {
170                 dsp100 = "DSP100_053_thru_999";
171         } else if (serial_int >= 3000) {
172                 dsp100 = "DSP100_3000_and_higher";
173         } else {
174                 int const lower = serial_int - (serial_int % 1000);
175                 dsp100 = String::compose ("DSP100_%1_thru_%2", lower, lower + 999);
176         }
177
178         locations.push_back({
179                 String::compose("%1%2/cert_Dolby256-DSP100-%3.zip", prefix, dsp100, serial_int),
180                 String::compose("cert_Dolby256-DSP100-%1.pem.crt", serial_int)
181         });
182 }
183
184
185 static void
186 try_cat745(vector<Location>& locations, string prefix, string serial)
187 {
188         int const serial_int = raw_convert<int>(serial.substr (1));
189
190         string cat745;
191         if (serial_int <= 999) {
192                 cat745 = "CAT745_1_thru_999";
193         } else if (serial_int >= 6000) {
194                 cat745 = "CAT745_6000_and_higher";
195         } else {
196                 int const lower = serial_int - (serial_int % 1000);
197                 cat745 = String::compose("CAT745_%1_thru_%2", lower, lower + 999);
198         }
199
200         locations.push_back({
201                 String::compose("%1%2/cert_Dolby-CAT745-%3.zip", prefix, cat745, serial_int),
202                 String::compose("cert_Dolby-CAT745-%1.pem.crt", serial_int)
203         });
204 }
205
206
207 static void
208 try_cp850(vector<Location>& locations, string prefix, string serial)
209 {
210         int const serial_int = raw_convert<int> (serial.substr (1));
211
212         int const lower = serial_int - (serial_int % 1000);
213         locations.push_back({
214                 String::compose ("%1CP850_CAT1600_F%2-F%3/cert_RMB_SPB_MDE_FMA.Dolby-CP850-F%4.zip", prefix, lower, lower + 999, serial_int),
215                 String::compose ("cert_RMB_SPB_MDE_FMA.Dolby-CP850-F%1.pem.crt", serial_int)
216         });
217 }
218
219
220 static void
221 try_ims3000(vector<Location>& locations, string prefix, string serial)
222 {
223         locations.push_back({
224                 String::compose ("%1%2xxx/cert_Dolby-IMS3000-%3-SMPTE.zip", prefix, serial.substr(0, 3), serial),
225                 String::compose("cert_Dolby-IMS3000-%1-SMPTE.pem", serial)
226         });
227 }
228
229
230 void
231 DolbyDoremiCertificatePanel::do_download ()
232 {
233         string serial = wx_to_std(_serial->GetValue());
234         trim(serial);
235
236         /* Try dcp2000, imb and ims prefixes (see mantis #375) */
237
238         string const prefix = "ftp://ftp.cinema.dolby.com/Certificates/";
239         vector<Location> locations;
240
241         bool starts_with_digit = false;
242         optional<char> starting_char;
243
244         if (!serial.empty()) {
245                 if (isdigit (serial[0])) {
246                         starts_with_digit = true;
247                 } else {
248                         starting_char = serial[0];
249                 }
250         }
251
252         vector<string> errors;
253
254         if (starts_with_digit) {
255                 try_dcp2000(locations, prefix, serial);
256                 try_imb(locations, prefix, serial);
257                 try_ims(locations, prefix, serial);
258                 try_cat862(locations, prefix, serial);
259                 try_dsp100(locations, prefix, serial);
260                 try_ims3000(locations, prefix, serial);
261         } else if (starting_char == 'H') {
262                 try_cat745(locations, prefix, serial);
263         } else if (starting_char == 'F') {
264                 try_cp850(locations, prefix, serial);
265         } else {
266                 errors.push_back(wx_to_std(_("Unrecognised serial number format (does not start with a number, H or F)")));
267         }
268
269         bool ok = false;
270         auto location = locations.begin();
271         while (!ok && location != locations.end()) {
272                 auto error = get_from_zip_url(location->url, location->file, true, true, boost::bind(&DownloadCertificatePanel::load_certificate, this, _1, _2));
273                 ++location;
274                 if (error) {
275                         errors.push_back (error.get ());
276                 } else {
277                         ok = true;
278                 }
279         }
280
281         if (ok) {
282                 _dialog->message()->SetLabel (_("Certificate downloaded"));
283                 _dialog->setup_sensitivity ();
284         } else {
285                 _dialog->message()->SetLabel (wxT (""));
286
287                 string s;
288                 for (auto e: errors) {
289                         s += e + "\n";
290                 }
291
292                 error_dialog (this, std_to_wx (s));
293         }
294 }
295
296
297 wxString
298 DolbyDoremiCertificatePanel::name () const
299 {
300         return _("Dolby / Doremi");
301 }