Build fix for HAVE_AVSUBTITLERECT_PICT case.
[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-IMS2000-%3.dcicerts.zip", prefix, serial.substr(0, 3), serial),
121                 String::compose("Dolby-IMS2000-%1.cert.sha256.pem", serial)
122         });
123
124         locations.push_back({
125                 String::compose("%1%2xxx/ims-%3.dcicerts.zip", prefix, serial.substr(0, 3), serial),
126                 String::compose("ims-%1.cert.sha256.pem", serial)
127         });
128 }
129
130
131 static void
132 try_cat862(vector<Location>& locations, string prefix, string serial)
133 {
134         int const serial_int = raw_convert<int> (serial);
135
136         string cat862;
137         if (serial_int <= 510999) {
138                 cat862 = "CAT862_510999_and_lower";
139         } else if (serial_int >= 617000) {
140                 cat862 = "CAT862_617000_and_higher";
141         } else {
142                 int const lower = serial_int - (serial_int % 1000);
143                 cat862 = String::compose ("CAT862_%1-%2", lower, lower + 999);
144         }
145
146         locations.push_back({
147                 String::compose("%1%2/cert_Dolby256-CAT862-%3.zip", prefix, cat862, serial_int),
148                 String::compose("cert_Dolby256-CAT862-%1.pem.crt", serial_int)
149         });
150 }
151
152
153 static void
154 try_dsp100(vector<Location>& locations, string prefix, string serial)
155 {
156         int const serial_int = raw_convert<int>(serial);
157
158         string dsp100;
159         if (serial_int <= 999) {
160                 dsp100 = "DSP100_053_thru_999";
161         } else if (serial_int >= 3000) {
162                 dsp100 = "DSP100_3000_and_higher";
163         } else {
164                 int const lower = serial_int - (serial_int % 1000);
165                 dsp100 = String::compose ("DSP100_%1_thru_%2", lower, lower + 999);
166         }
167
168         locations.push_back({
169                 String::compose("%1%2/cert_Dolby256-DSP100-%3.zip", prefix, dsp100, serial_int),
170                 String::compose("cert_Dolby256-DSP100-%1.pem.crt", serial_int)
171         });
172 }
173
174
175 static void
176 try_cat745(vector<Location>& locations, string prefix, string serial)
177 {
178         int const serial_int = raw_convert<int>(serial.substr (1));
179
180         string cat745;
181         if (serial_int <= 999) {
182                 cat745 = "CAT745_1_thru_999";
183         } else if (serial_int >= 6000) {
184                 cat745 = "CAT745_6000_and_higher";
185         } else {
186                 int const lower = serial_int - (serial_int % 1000);
187                 cat745 = String::compose("CAT745_%1_thru_%2", lower, lower + 999);
188         }
189
190         locations.push_back({
191                 String::compose("%1%2/cert_Dolby-CAT745-%3.zip", prefix, cat745, serial_int),
192                 String::compose("cert_Dolby-CAT745-%1.pem.crt", serial_int)
193         });
194 }
195
196
197 static void
198 try_cp850(vector<Location>& locations, string prefix, string serial)
199 {
200         int const serial_int = raw_convert<int> (serial.substr (1));
201
202         int const lower = serial_int - (serial_int % 1000);
203         locations.push_back({
204                 String::compose ("%1CP850_CAT1600_F%2-F%3/cert_RMB_SPB_MDE_FMA.Dolby-CP850-F%4.zip", prefix, lower, lower + 999, serial_int),
205                 String::compose ("cert_RMB_SPB_MDE_FMA.Dolby-CP850-F%1.pem.crt", serial_int)
206         });
207 }
208
209
210 static void
211 try_ims3000(vector<Location>& locations, string prefix, string serial)
212 {
213         locations.push_back({
214                 String::compose ("%1%2xxx/cert_Dolby-IMS3000-%3-SMPTE.zip", prefix, serial.substr(0, 3), serial),
215                 String::compose("cert_Dolby-IMS3000-%1-SMPTE.pem", serial)
216         });
217 }
218
219
220 void
221 DolbyDoremiCertificatePanel::do_download ()
222 {
223         string serial = wx_to_std(_serial->GetValue());
224         trim(serial);
225
226         /* Try dcp2000, imb and ims prefixes (see mantis #375) */
227
228         string const prefix = "ftp://ftp.cinema.dolby.com/Certificates/";
229         vector<Location> locations;
230
231         bool starts_with_digit = false;
232         optional<char> starting_char;
233
234         if (!serial.empty()) {
235                 if (isdigit (serial[0])) {
236                         starts_with_digit = true;
237                 } else {
238                         starting_char = serial[0];
239                 }
240         }
241
242         vector<string> errors;
243
244         if (starts_with_digit) {
245                 try_dcp2000(locations, prefix, serial);
246                 try_imb(locations, prefix, serial);
247                 try_ims(locations, prefix, serial);
248                 try_cat862(locations, prefix, serial);
249                 try_dsp100(locations, prefix, serial);
250                 try_ims3000(locations, prefix, serial);
251         } else if (starting_char == 'H') {
252                 try_cat745(locations, prefix, serial);
253         } else if (starting_char == 'F') {
254                 try_cp850(locations, prefix, serial);
255         } else {
256                 errors.push_back(wx_to_std(_("Unrecognised serial number format (does not start with a number, H or F)")));
257         }
258
259         bool ok = false;
260         auto location = locations.begin();
261         while (!ok && location != locations.end()) {
262                 auto error = get_from_zip_url(location->url, location->file, true, true, boost::bind(&DownloadCertificatePanel::load_certificate, this, _1, _2));
263                 ++location;
264                 if (error) {
265                         errors.push_back (error.get ());
266                 } else {
267                         ok = true;
268                 }
269         }
270
271         if (ok) {
272                 _dialog->message()->SetLabel (_("Certificate downloaded"));
273                 _dialog->setup_sensitivity ();
274         } else {
275                 _dialog->message()->SetLabel (wxT (""));
276
277                 string s;
278                 for (auto e: errors) {
279                         s += e + "\n";
280                 }
281
282                 error_dialog (this, std_to_wx (s));
283         }
284 }
285
286
287 wxString
288 DolbyDoremiCertificatePanel::name () const
289 {
290         return _("Dolby / Doremi");
291 }