Extract common code out into kdm_for_screen()
[dcpomatic.git] / src / wx / christie_certificate_panel.cc
1 /*
2     Copyright (C) 2018 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 "christie_certificate_panel.h"
22 #include "download_certificate_dialog.h"
23 #include "wx_util.h"
24 #include "lib/internet.h"
25 #include "lib/compose.hpp"
26 #include "lib/config.h"
27
28 using std::string;
29 using boost::optional;
30 using boost::bind;
31
32 ChristieCertificatePanel::ChristieCertificatePanel (DownloadCertificateDialog* dialog)
33         : CredentialsDownloadCertificatePanel (
34                         dialog,
35                         bind(&Config::christie_username, Config::instance()),
36                         bind(&Config::set_christie_username, Config::instance(), _1),
37                         bind(&Config::unset_christie_username, Config::instance()),
38                         bind(&Config::christie_password, Config::instance()),
39                         bind(&Config::set_christie_password, Config::instance(), _1),
40                         bind(&Config::unset_christie_password, Config::instance())
41                         )
42
43 {
44
45 }
46
47 void
48 ChristieCertificatePanel::do_download ()
49 {
50         string const prefix = String::compose(
51                 "ftp://%1:%2@certificates.christiedigital.com/Certificates/",
52                 Config::instance()->christie_username().get(),
53                 Config::instance()->christie_password().get()
54                 );
55
56         string serial = wx_to_std (_serial->GetValue());
57         serial.insert (0, 12 - serial.length(), '0');
58
59         string const url = String::compose ("%1F-IMB/F-IMB_%2_sha256.pem", prefix, serial);
60
61         optional<string> all_errors;
62
63         optional<string> error = get_from_url (url, true, false, boost::bind (&DownloadCertificatePanel::load, this, _1));
64         if (error) {
65                 all_errors = *error;
66
67                 string const url = String::compose ("%1IMB-S2/IMB-S2_%2_sha256.pem", prefix, serial);
68
69                 error = get_from_url (url, true, false, boost::bind (&DownloadCertificatePanel::load, this, _1));
70                 if (error) {
71                         *all_errors += "\n" + *error;
72                 }
73         }
74
75         if (all_errors) {
76                 _dialog->message()->SetLabel(wxT(""));
77                 error_dialog (this, std_to_wx(*all_errors));
78         } else {
79                 _dialog->message()->SetLabel (_("Certificate downloaded"));
80                 _dialog->setup_sensitivity ();
81         }
82 }
83
84 wxString
85 ChristieCertificatePanel::name () const
86 {
87         return _("Christie");
88 }