7cab6b24b6a87dcfe37dcd920e50a722dd1670aa
[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::list;
37 using std::string;
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 DolbyDoremiCertificatePanel::DolbyDoremiCertificatePanel (DownloadCertificateDialog* dialog)
47         : DownloadCertificatePanel (dialog)
48 {
49
50 }
51
52
53 static void
54 try_dcp2000 (list<string>& urls, list<string>& files, string prefix, string serial)
55 {
56         urls.push_back (String::compose("%1%2xxx/dcp2000-%3.dcicerts.zip", prefix, serial.substr(0, 3), serial));
57         files.push_back (String::compose("dcp2000-%1.cert.sha256.pem", serial));
58
59         urls.push_back (String::compose("%1%2xxx/dcp2000-%3.dcicerts.zip", prefix, serial.substr(0, 3), serial));
60         files.push_back (String::compose("dcp2000-%1.cert.sha256.pem", serial));
61
62         urls.push_back (String::compose("%1%2xxx/dcp2000-%3.certs.zip", prefix, serial.substr(0, 3), serial));
63         files.push_back (String::compose("dcp2000-%1.cert.sha256.pem", serial));
64 }
65
66
67 static void
68 try_imb (list<string>& urls, list<string>& files, string prefix, string serial)
69 {
70         urls.push_back (String::compose("%1%2xxx/imb-%3.dcicerts.zip", prefix, serial.substr(0, 3), serial));
71         files.push_back (String::compose("imb-%1.cert.sha256.pem", serial));
72 }
73
74
75 static void
76 try_ims (list<string>& urls, list<string>& files, string prefix, string serial)
77 {
78         urls.push_back (String::compose("%1%2xxx/ims-%3.dcicerts.zip", prefix, serial.substr(0, 3), serial));
79         files.push_back (String::compose("ims-%1.cert.sha256.pem", serial));
80 }
81
82
83 static void
84 try_cat862 (list<string>& urls, list<string>& files, string prefix, string serial)
85 {
86         int const serial_int = raw_convert<int> (serial);
87
88         string cat862;
89         if (serial_int <= 510999) {
90                 cat862 = "CAT862_510999_and_lower";
91         } else if (serial_int >= 617000) {
92                 cat862 = "CAT862_617000_and_higher";
93         } else {
94                 int const lower = serial_int - (serial_int % 1000);
95                 cat862 = String::compose ("CAT862_%1-%2", lower, lower + 999);
96         }
97
98         urls.push_back (String::compose("%1%2/cert_Dolby256-CAT862-%3.zip", prefix, cat862, serial_int));
99         files.push_back (String::compose("cert_Dolby256-CAT862-%1.pem.crt", serial_int));
100 }
101
102
103 static void
104 try_dsp100 (list<string>& urls, list<string>& files, string prefix, string serial)
105 {
106         int const serial_int = raw_convert<int>(serial);
107
108         string dsp100;
109         if (serial_int <= 999) {
110                 dsp100 = "DSP100_053_thru_999";
111         } else if (serial_int >= 3000) {
112                 dsp100 = "DSP100_3000_and_higher";
113         } else {
114                 int const lower = serial_int - (serial_int % 1000);
115                 dsp100 = String::compose ("DSP100_%1_thru_%2", lower, lower + 999);
116         }
117
118         urls.push_back (String::compose("%1%2/cert_Dolby256-DSP100-%3.zip", prefix, dsp100, serial_int));
119         files.push_back (String::compose("cert_Dolby256-DSP100-%1.pem.crt", serial_int));
120 }
121
122
123 static void
124 try_cat745 (list<string>& urls, list<string>& files, string prefix, string serial)
125 {
126         int const serial_int = raw_convert<int>(serial.substr (1));
127
128         string cat745;
129         if (serial_int <= 999) {
130                 cat745 = "CAT745_1_thru_999";
131         } else if (serial_int >= 6000) {
132                 cat745 = "CAT745_6000_and_higher";
133         } else {
134                 int const lower = serial_int - (serial_int % 1000);
135                 cat745 = String::compose("CAT745_%1_thru_%2", lower, lower + 999);
136         }
137
138         urls.push_back (String::compose("%1%2/cert_Dolby-CAT745-%3.zip", prefix, cat745, serial_int));
139         files.push_back (String::compose("cert_Dolby-CAT745-%1.pem.crt", serial_int));
140 }
141
142
143 static void
144 try_cp850 (list<string>& urls, list<string>& files, string prefix, string serial)
145 {
146         int const serial_int = raw_convert<int> (serial.substr (1));
147
148         int const lower = serial_int - (serial_int % 1000);
149         urls.push_back (String::compose ("%1CP850_CAT1600_F%2-F%3/cert_RMB_SPB_MDE_FMA.Dolby-CP850-F%4.zip", prefix, lower, lower + 999, serial_int));
150         files.push_back (String::compose ("cert_RMB_SPB_MDE_FMA.Dolby-CP850-F%1.pem.crt", serial_int));
151 }
152
153
154 static void
155 try_ims3000 (list<string>& urls, list<string>& files, string prefix, string serial)
156 {
157         urls.push_back (String::compose ("%1%2xxx/cert_Dolby-IMS3000-%3-SMPTE.zip", prefix, serial.substr(0, 3), serial));
158         files.push_back (String::compose("cert_Dolby-IMS3000-%1-SMPTE.pem", serial));
159 }
160
161
162 void
163 DolbyDoremiCertificatePanel::do_download ()
164 {
165         string serial = wx_to_std(_serial->GetValue());
166         trim(serial);
167
168         /* Try dcp2000, imb and ims prefixes (see mantis #375) */
169
170         string const prefix = "ftp://ftp.cinema.dolby.com/Certificates/";
171         list<string> urls;
172         list<string> files;
173
174         bool starts_with_digit = false;
175         optional<char> starting_char;
176
177         if (!serial.empty()) {
178                 if (isdigit (serial[0])) {
179                         starts_with_digit = true;
180                 } else {
181                         starting_char = serial[0];
182                 }
183         }
184
185         list<string> errors;
186
187         if (starts_with_digit) {
188                 try_dcp2000 (urls, files, prefix, serial);
189                 try_imb (urls, files, prefix, serial);
190                 try_ims (urls, files, prefix, serial);
191                 try_cat862 (urls, files, prefix, serial);
192                 try_dsp100 (urls, files, prefix, serial);
193                 try_ims3000 (urls, files, prefix, serial);
194         } else if (starting_char == 'H') {
195                 try_cat745 (urls, files, prefix, serial);
196         } else if (starting_char == 'F') {
197                 try_cp850 (urls, files, prefix, serial);
198         } else {
199                 errors.push_back(wx_to_std(_("Unrecognised serial number format (does not start with a number, H or F)")));
200         }
201
202         bool ok = false;
203         auto i = urls.begin ();
204         auto j = files.begin ();
205         while (!ok && i != urls.end ()) {
206                 auto error = get_from_zip_url (*i++, *j++, true, true, boost::bind(&DownloadCertificatePanel::load_certificate, this, _1, _2));
207                 if (error) {
208                         errors.push_back (error.get ());
209                 } else {
210                         ok = true;
211                 }
212         }
213
214         if (ok) {
215                 _dialog->message()->SetLabel (_("Certificate downloaded"));
216                 _dialog->setup_sensitivity ();
217         } else {
218                 _dialog->message()->SetLabel (wxT (""));
219
220                 string s;
221                 for (auto e: errors) {
222                         s += e + "\n";
223                 }
224
225                 error_dialog (this, std_to_wx (s));
226         }
227 }
228
229
230 wxString
231 DolbyDoremiCertificatePanel::name () const
232 {
233         return _("Dolby / Doremi");
234 }