Build fixes for Boost >= 1.73
[dcpomatic.git] / src / wx / dolby_doremi_certificate_panel.cc
1 /*
2     Copyright (C) 2014-2015 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 "dolby_doremi_certificate_panel.h"
22 #include "download_certificate_dialog.h"
23 #include "wx_util.h"
24 #include "lib/compose.hpp"
25 #include "lib/util.h"
26 #include "lib/signal_manager.h"
27 #include "lib/internet.h"
28 #include <dcp/raw_convert.h>
29 #include <curl/curl.h>
30 #include <zip.h>
31 #include <boost/foreach.hpp>
32 #include <iostream>
33
34 using std::string;
35 using std::cout;
36 using std::list;
37 using boost::function;
38 using boost::optional;
39 #if BOOST_VERSION >= 106100
40 using namespace boost::placeholders;
41 #endif
42 using dcp::raw_convert;
43
44 DolbyDoremiCertificatePanel::DolbyDoremiCertificatePanel (DownloadCertificateDialog* dialog)
45         : DownloadCertificatePanel (dialog)
46 {
47
48 }
49
50 static void
51 try_dcp2000 (list<string>& urls, list<string>& files, string prefix, string serial)
52 {
53         urls.push_back (String::compose ("%1%2xxx/dcp2000-%3.dcicerts.zip", prefix, serial.substr(0, 3), serial));
54         files.push_back (String::compose ("dcp2000-%1.cert.sha256.pem", 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.certs.zip", prefix, serial.substr(0, 3), serial));
60         files.push_back (String::compose ("dcp2000-%1.cert.sha256.pem", serial));
61 }
62
63 static void
64 try_imb (list<string>& urls, list<string>& files, string prefix, string serial)
65 {
66         urls.push_back (String::compose ("%1%2xxx/imb-%3.dcicerts.zip", prefix, serial.substr(0, 3), serial));
67         files.push_back (String::compose ("imb-%1.cert.sha256.pem", serial));
68 }
69
70 static void
71 try_ims (list<string>& urls, list<string>& files, string prefix, string serial)
72 {
73         urls.push_back (String::compose ("%1%2xxx/ims-%3.dcicerts.zip", prefix, serial.substr(0, 3), serial));
74         files.push_back (String::compose ("ims-%1.cert.sha256.pem", serial));
75 }
76
77 static void
78 try_cat862 (list<string>& urls, list<string>& files, string prefix, string serial)
79 {
80         int const serial_int = raw_convert<int> (serial);
81
82         string cat862;
83         if (serial_int <= 510999) {
84                 cat862 = "CAT862_510999_and_lower";
85         } else if (serial_int >= 617000) {
86                 cat862 = "CAT862_617000_and_higher";
87         } else {
88                 int const lower = serial_int - (serial_int % 1000);
89                 cat862 = String::compose ("CAT862_%1-%2", lower, lower + 999);
90         }
91
92         urls.push_back (String::compose ("%1%2/cert_Dolby256-CAT862-%3.zip", prefix, cat862, serial_int));
93         files.push_back (String::compose ("cert_Dolby256-CAT862-%1.pem.crt", serial_int));
94 }
95
96 static void
97 try_dsp100 (list<string>& urls, list<string>& files, string prefix, string serial)
98 {
99         int const serial_int = raw_convert<int> (serial);
100
101         string dsp100;
102         if (serial_int <= 999) {
103                 dsp100 = "DSP100_053_thru_999";
104         } else if (serial_int >= 3000) {
105                 dsp100 = "DSP100_3000_and_higher";
106         } else {
107                 int const lower = serial_int - (serial_int % 1000);
108                 dsp100 = String::compose ("DSP100_%1_thru_%2", lower, lower + 999);
109         }
110
111         urls.push_back (String::compose ("%1%2/cert_Dolby256-DSP100-%3.zip", prefix, dsp100, serial_int));
112         files.push_back (String::compose ("cert_Dolby256-DSP100-%1.pem.crt", serial_int));
113 }
114
115 static void
116 try_cat745 (list<string>& urls, list<string>& files, string prefix, string serial)
117 {
118         int const serial_int = raw_convert<int> (serial.substr (1));
119
120         string cat745;
121         if (serial_int <= 999) {
122                 cat745 = "CAT745_1_thru_999";
123         } else if (serial_int >= 6000) {
124                 cat745 = "CAT745_6000_and_higher";
125         } else {
126                 int const lower = serial_int - (serial_int % 1000);
127                 cat745 = String::compose ("CAT745_%1_thru_%2", lower, lower + 999);
128         }
129
130         urls.push_back (String::compose ("%1%2/cert_Dolby-CAT745-%3.zip", prefix, cat745, serial_int));
131         files.push_back (String::compose ("cert_Dolby-CAT745-%1.pem.crt", serial_int));
132 }
133
134 static void
135 try_cp850 (list<string>& urls, list<string>& files, string prefix, string serial)
136 {
137         int const serial_int = raw_convert<int> (serial.substr (1));
138
139         int const lower = serial_int - (serial_int % 1000);
140         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));
141         files.push_back (String::compose ("cert_RMB_SPB_MDE_FMA.Dolby-CP850-F%1.pem.crt", serial_int));
142 }
143
144 void
145 DolbyDoremiCertificatePanel::do_download ()
146 {
147         string const serial = wx_to_std (_serial->GetValue());
148
149         /* Try dcp2000, imb and ims prefixes (see mantis #375) */
150
151         string const prefix = "ftp://ftp.cinema.dolby.com/Certificates/";
152         list<string> urls;
153         list<string> files;
154
155         bool starts_with_digit = false;
156         optional<char> starting_char;
157
158         if (!serial.empty()) {
159                 if (isdigit (serial[0])) {
160                         starts_with_digit = true;
161                 } else {
162                         starting_char = serial[0];
163                 }
164         }
165
166         if (starts_with_digit) {
167                 try_dcp2000 (urls, files, prefix, serial);
168                 try_imb (urls, files, prefix, serial);
169                 try_ims (urls, files, prefix, serial);
170                 try_cat862 (urls, files, prefix, serial);
171                 try_dsp100 (urls, files, prefix, serial);
172         } else if (starting_char == 'H') {
173                 try_cat745 (urls, files, prefix, serial);
174         } else if (starting_char == 'F') {
175                 try_cp850 (urls, files, prefix, serial);
176         }
177
178         list<string> errors;
179         bool ok = false;
180         list<string>::const_iterator i = urls.begin ();
181         list<string>::const_iterator j = files.begin ();
182         while (!ok && i != urls.end ()) {
183                 optional<string> error = get_from_zip_url (*i++, *j++, true, true, boost::bind (&DownloadCertificatePanel::load_certificate, this, _1));
184                 if (error) {
185                         errors.push_back (error.get ());
186                 } else {
187                         ok = true;
188                 }
189         }
190
191         if (ok) {
192                 _dialog->message()->SetLabel (_("Certificate downloaded"));
193                 _dialog->setup_sensitivity ();
194         } else {
195                 _dialog->message()->SetLabel (wxT (""));
196
197                 string s;
198                 BOOST_FOREACH (string e, errors) {
199                         s += e + "\n";
200                 }
201
202                 error_dialog (this, std_to_wx (s));
203         }
204 }
205
206 wxString
207 DolbyDoremiCertificatePanel::name () const
208 {
209         return _("Dolby / Doremi");
210 }