Use wxString for EditableListColumn.
[dcpomatic.git] / src / wx / screen_dialog.cc
1 /*
2     Copyright (C) 2012-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 "screen_dialog.h"
22 #include "wx_util.h"
23 #include "file_dialog_wrapper.h"
24 #include "static_text.h"
25 #include "download_certificate_dialog.h"
26 #include "table_dialog.h"
27 #include "dcpomatic_button.h"
28 #include "lib/compose.hpp"
29 #include "lib/util.h"
30 #include "lib/warnings.h"
31 #include <dcp/exceptions.h>
32 #include <dcp/certificate_chain.h>
33 DCPOMATIC_DISABLE_WARNINGS
34 #include <wx/filepicker.h>
35 #include <wx/validate.h>
36 DCPOMATIC_ENABLE_WARNINGS
37 #include <iostream>
38
39 using std::string;
40 using std::cout;
41 using std::vector;
42 using boost::optional;
43 using boost::bind;
44 #if BOOST_VERSION >= 106100
45 using namespace boost::placeholders;
46 #endif
47
48 static string
49 column (TrustedDevice d)
50 {
51         return d.thumbprint ();
52 }
53
54 class TrustedDeviceDialog : public TableDialog
55 {
56 public:
57         explicit TrustedDeviceDialog (wxWindow* parent)
58                 : TableDialog (parent, _("Trusted Device"), 3, 1, true)
59         {
60                 add (_("Thumbprint"), true);
61                 _thumbprint = add (new wxTextCtrl(this, wxID_ANY, wxT(""), wxDefaultPosition, wxSize(300, -1)));
62                 _file = add (new Button(this, _("Load certificate...")));
63
64                 layout ();
65
66                 _file->Bind (wxEVT_BUTTON, bind(&TrustedDeviceDialog::load_certificate, this));
67         }
68
69         void load_certificate ()
70         {
71                 wxFileDialog* d = new wxFileDialog (this, _("Trusted Device certificate"));
72                 d->ShowModal ();
73                 try {
74                         _certificate = dcp::Certificate(dcp::file_to_string(wx_to_std(d->GetPath())));
75                         _thumbprint->SetValue (std_to_wx(_certificate->thumbprint()));
76                 } catch (dcp::MiscError& e) {
77                         error_dialog (this, wxString::Format(_("Could not load certficate (%s)"), std_to_wx(e.what())));
78                 }
79         }
80
81         void set (TrustedDevice t)
82         {
83                 _certificate = t.certificate ();
84                 _thumbprint->SetValue (std_to_wx(t.thumbprint()));
85         }
86
87         optional<TrustedDevice> get ()
88         {
89                 string const t = wx_to_std (_thumbprint->GetValue ());
90                 if (_certificate && _certificate->thumbprint() == t) {
91                         return TrustedDevice (*_certificate);
92                 } else if (t.length() == 28) {
93                         return TrustedDevice (t);
94                 }
95
96                 return optional<TrustedDevice> ();
97         }
98
99 private:
100         wxTextCtrl* _thumbprint;
101         wxButton* _file;
102         boost::optional<dcp::Certificate> _certificate;
103 };
104
105 ScreenDialog::ScreenDialog (
106         wxWindow* parent, wxString title, string name, string notes, optional<dcp::Certificate> recipient, vector<TrustedDevice> trusted_devices
107         )
108         : wxDialog (parent, wxID_ANY, title)
109         , _recipient (recipient)
110         , _trusted_devices (trusted_devices)
111 {
112         wxBoxSizer* overall_sizer = new wxBoxSizer (wxVERTICAL);
113         SetSizer (overall_sizer);
114
115         _sizer = new wxGridBagSizer (DCPOMATIC_SIZER_X_GAP, DCPOMATIC_SIZER_Y_GAP);
116         int r = 0;
117
118         add_label_to_sizer (_sizer, this, _("Name"), true, wxGBPosition (r, 0));
119         _name = new wxTextCtrl (this, wxID_ANY, std_to_wx (name), wxDefaultPosition, wxSize (320, -1));
120         _sizer->Add (_name, wxGBPosition (r, 1));
121         ++r;
122
123         add_label_to_sizer (_sizer, this, _("Notes"), true, wxGBPosition (r, 0));
124         _notes = new wxTextCtrl (this, wxID_ANY, std_to_wx (notes), wxDefaultPosition, wxSize (320, -1));
125         _sizer->Add (_notes, wxGBPosition (r, 1));
126         ++r;
127
128         wxClientDC dc (this);
129         wxFont font = _name->GetFont ();
130         font.SetFamily (wxFONTFAMILY_TELETYPE);
131         dc.SetFont (font);
132         wxSize size = dc.GetTextExtent (wxT ("1234567890123456789012345678"));
133         size.SetHeight (-1);
134
135         add_label_to_sizer (_sizer, this, _("Recipient certificate"), true, wxGBPosition (r, 0));
136         wxBoxSizer* s = new wxBoxSizer (wxHORIZONTAL);
137         _recipient_thumbprint = new StaticText (this, wxT (""), wxDefaultPosition, size);
138         _recipient_thumbprint->SetFont (font);
139         set_recipient (recipient);
140         _get_recipient_from_file = new Button (this, _("Get from file..."));
141         _download_recipient = new Button (this, _("Download..."));
142         s->Add (_recipient_thumbprint, 1, wxLEFT | wxRIGHT | wxALIGN_CENTER_VERTICAL, DCPOMATIC_SIZER_X_GAP);
143         s->Add (_get_recipient_from_file, 0, wxLEFT | wxRIGHT | wxEXPAND, DCPOMATIC_SIZER_X_GAP);
144         s->Add (_download_recipient, 0, wxLEFT | wxRIGHT | wxEXPAND, DCPOMATIC_SIZER_X_GAP);
145         _sizer->Add (s, wxGBPosition (r, 1));
146         ++r;
147
148         add_label_to_sizer (_sizer, this, _("Other trusted devices"), true, wxGBPosition (r, 0));
149         ++r;
150
151         vector<EditableListColumn> columns;
152         columns.push_back (EditableListColumn(_("Thumbprint")));
153         _trusted_device_list = new EditableList<TrustedDevice, TrustedDeviceDialog> (
154                 this,
155                 columns,
156                 bind (&ScreenDialog::trusted_devices, this),
157                 bind (&ScreenDialog::set_trusted_devices, this, _1),
158                 bind (&column, _1),
159                 false
160                 );
161
162         _sizer->Add (_trusted_device_list, wxGBPosition (r, 0), wxGBSpan (1, 3), wxEXPAND);
163         ++r;
164
165         _name->Bind (wxEVT_TEXT, boost::bind (&ScreenDialog::setup_sensitivity, this));
166         _get_recipient_from_file->Bind (wxEVT_BUTTON, boost::bind (&ScreenDialog::get_recipient_from_file, this));
167         _download_recipient->Bind (wxEVT_BUTTON, boost::bind (&ScreenDialog::download_recipient, this));
168
169         overall_sizer->Add (_sizer, 1, wxEXPAND | wxALL, DCPOMATIC_DIALOG_BORDER);
170
171         wxSizer* buttons = CreateSeparatedButtonSizer (wxOK | wxCANCEL);
172         if (buttons) {
173                 overall_sizer->Add (buttons, wxSizerFlags().Expand().DoubleBorder());
174         }
175
176         overall_sizer->Layout ();
177         overall_sizer->SetSizeHints (this);
178
179         setup_sensitivity ();
180 }
181
182 string
183 ScreenDialog::name () const
184 {
185         return wx_to_std (_name->GetValue());
186 }
187
188 string
189 ScreenDialog::notes () const
190 {
191         return wx_to_std (_notes->GetValue());
192 }
193
194 optional<dcp::Certificate>
195 ScreenDialog::recipient () const
196 {
197         return _recipient;
198 }
199
200 void
201 ScreenDialog::load_recipient (boost::filesystem::path file)
202 {
203         try {
204                 /* Load this as a chain, in case it is one, and then pick the leaf certificate */
205                 dcp::CertificateChain c (dcp::file_to_string (file));
206                 if (c.unordered().empty()) {
207                         error_dialog (this, _("Could not read certificate file."));
208                         return;
209                 }
210                 set_recipient (c.leaf ());
211         } catch (dcp::MiscError& e) {
212                 error_dialog (this, _("Could not read certificate file."), std_to_wx(e.what()));
213         }
214 }
215
216 void
217 ScreenDialog::get_recipient_from_file ()
218 {
219         wxFileDialog* d = new wxFileDialog (this, _("Select Certificate File"));
220         if (d->ShowModal () == wxID_OK) {
221                 load_recipient (boost::filesystem::path (wx_to_std (d->GetPath ())));
222         }
223         d->Destroy ();
224
225         setup_sensitivity ();
226 }
227
228 void
229 ScreenDialog::download_recipient ()
230 {
231         DownloadCertificateDialog* d = new DownloadCertificateDialog (this);
232         if (d->ShowModal() == wxID_OK) {
233                 set_recipient (d->certificate ());
234         }
235         d->Destroy ();
236         setup_sensitivity ();
237 }
238
239 void
240 ScreenDialog::setup_sensitivity ()
241 {
242         wxButton* ok = dynamic_cast<wxButton*> (FindWindowById (wxID_OK, this));
243         if (ok) {
244                 ok->Enable (static_cast<bool>(_recipient) && !_name->GetValue().IsEmpty());
245         }
246 }
247
248 void
249 ScreenDialog::set_recipient (optional<dcp::Certificate> r)
250 {
251         _recipient = r;
252
253         if (_recipient) {
254                 _recipient_thumbprint->SetLabel (std_to_wx (_recipient->thumbprint ()));
255                 _sizer->Layout ();
256         }
257 }