forked from adlnet-archive/LR-Publisher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMainWindow.cs
491 lines (421 loc) · 16.3 KB
/
MainWindow.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
using System;
using System.IO;
using System.Collections.Generic;
using System.Linq;
using Gtk;
using LearningRegistry;
using LearningRegistry.RDDD;
using PublishGUI;
public partial class MainWindow: Gtk.Window
{
private List<Gtk.Label> _missingFields;
protected string _resourceDataRaw { get; set; }
protected void OnSignatureTypeComboBoxChanged (object sender, System.EventArgs e)
{
throw new System.NotImplementedException ();
}
public MainWindow (): base (Gtk.WindowType.Toplevel)
{
Build ();
}
protected void OnDeleteEvent (object sender, DeleteEventArgs a)
{
Application.Quit ();
a.RetVal = true;
}
protected void UpdatePayloadChooseContainer (object sender, System.EventArgs e)
{
PayloadPlacement selectedVal = (PayloadPlacement)this.PayloadPlacementComboBox.Active;
if (selectedVal == PayloadPlacement.inline && this.PayloadLocatorContainer.Visible)
{
this.PayloadLocatorContainer.Visible = false;
this.PayloadFileContainer.Visible = true;
} else if (selectedVal == PayloadPlacement.linked)
{
this.PayloadFileContainer.Visible = false;
this.PayloadEditorButtonBox.Visible = false;
this.PayloadLocatorContainer.Visible = true;
}
}
protected void PublishDocument (object sender, System.EventArgs e)
{
bool validated = ValidateRequiredFields();
if(validated)
{
WriteLineToConsole("\n========BEGIN PUBLISH ATTEMPT========");
lr_document doc = buildDoc();
//Examine signature information and sign if necessary
SignatureInformationWidget sigInfo = this.SignatureInformationWidget;
if(sigInfo.SignatureType == SignatureType.LR_PGP)
{
PgpSigner signer = new PgpSigner(sigInfo.PgpPublicKeyLocations,
sigInfo.PgpKeyringLocation,
sigInfo.PgpSecretKeyUsername,
sigInfo.PgpSecretKeyPassphrase);
doc = signer.Sign(doc);
}
lr_Envelope envelope = buildEnvelope(new List<lr_document>(){doc});
var client = new LRClient(this.NodeInfo.NodeUrl);
if (this.NodeInfo.AuthenticationType == AuthType.Basic)
{
client.Username = this.NodeInfo.HttpUsername;
client.Password = this.NodeInfo.HttpPassword;
}
WriteToConsole("Publishing envelope...");
try
{
PublishResponse pubResponse = client.Publish(envelope);
WriteToConsole("Done\n");
//Make sure the response was ok
if(!pubResponse.OK)
throw new Exception(pubResponse.error);
else if(!pubResponse.document_results[0].OK)
throw new Exception(pubResponse.document_results[0].error);
WriteLineToConsole("Document(s) were sucessfully published! "+
"Here are the results:");
WriteLineToConsole(pubResponse.Serialize());
PublishGUI.Helper.SavePublishHistory(this.NodeInfo.NodeUrl, pubResponse);
}
catch (Exception exception)
{
WriteLineToConsole("Publish failed! Reason:\n"+exception.Message);
WriteToConsole("Stack Trace:\n" + exception.StackTrace);
}
WriteLineToConsole("\n========END PUBLISH ATTEMPT========");
}
else
ShowMissingFields();
}
protected void ShowMissingFields()
{
Gdk.Color col = new Gdk.Color();
Gdk.Color.Parse("red", ref col);
foreach(var lbl in _missingFields)
lbl.ModifyFg(StateType.Normal, col);
Helper.CreateNotficationWindow(Helper.MSG_MISSING_FIELDS);
}
private bool ValidateRequiredFields()
{
List<Gtk.Label> missingFields = new List<Gtk.Label>();
if(String.IsNullOrEmpty(this.ResourceLocatorTextBox.Text))
missingFields.Add(lbl_ResourceLocator);
if(PayloadPlacementComboBox.Active == (int)PayloadPlacement.inline
&& String.IsNullOrEmpty(PayloadFileChooser.Filename))
missingFields.Add(this.lbl_PayloadFile);
else if(String.IsNullOrEmpty(this.PayloadLocatorTextBox.Text))
missingFields.Add(this.lbl_PayloadLocator);
if(String.IsNullOrEmpty(this.PayloadSchemaTextBox.Text))
missingFields.Add(this.lbl_PayloadSchema);
if(this.SubmitterTypeComboBox.Active > (int)SubmitterType.anonymous
&& String.IsNullOrEmpty(SubmitterNameTextBox.Text))
missingFields.Add(this.lbl_SubmitterName);
missingFields.AddRange(this.SignatureInformationWidget.GetMissingFields());
missingFields.AddRange(this.NodeInfo.GetMissingFields());
Gdk.Color col = new Gdk.Color();
Gdk.Color.Parse("black", ref col);
//Check the old ones to see if they have been fixed
if(_missingFields != null)
{
foreach(var lbl in _missingFields)
{
if(missingFields.Where( x => x.LabelProp == lbl.LabelProp ).Count() == 0)
lbl.ModifyFg(StateType.Normal, col);
}
}
_missingFields = missingFields;
return _missingFields.Count == 0;
}
private lr_document buildDoc()
{
WriteToConsole("Building document...");
lr_document doc = new lr_document();
//Required fields
doc.resource_data_type = this.ResourceDataTypeComboBox.ActiveText.ToLower();
doc.resource_locator = this.ResourceLocatorTextBox.Text;
doc.payload_placement = this.PayloadPlacementComboBox.ActiveText.ToLower();
doc.payload_schema = this.PayloadSchemaTextBox.Text.Split(',').ToList();
if(doc.payload_placement == LearningRegistry.Taxonomies.PayloadPlacement.Linked)
doc.payload_locator = this.PayloadLocatorTextBox.Text;
else
doc.resource_data = _resourceDataRaw;
//Optional Fields
if(!String.IsNullOrEmpty(this.PayloadSchemaLocatorTextBox.Text))
doc.payload_schema_locator = this.PayloadSchemaLocatorTextBox.Text;
if(!String.IsNullOrEmpty(this.SchemaFormatTextBox.Text))
doc.payload_schema_format = this.SchemaFormatTextBox.Text;
var keysText = this.KeywordsTextBox.Text;
if(!String.IsNullOrEmpty(keysText))
doc.keys = keysText.Split(',').ToList();
var ttlText = this.TimeToLiveTextBox.Text;
if(!String.IsNullOrEmpty(ttlText))
doc.resource_TTL = Int32.Parse(ttlText);
//Terms of Service
lr_TOS tos = new lr_TOS();
if(!String.IsNullOrEmpty(this.TermsOfServiceTextBox.Text))
tos.submission_TOS = this.TermsOfServiceTextBox.Text;
if(!String.IsNullOrEmpty(this.AttributionStatementTextView.Buffer.Text))
tos.submission_attribution = this.AttributionStatementTextView.Buffer.Text;
doc.TOS = tos;
//Submitter Info
lr_identity ident = new lr_identity();
int submitterTypeSelection = this.SubmitterTypeComboBox.Active;
ident.submitter_type = Enum.GetName(typeof(SubmitterType), submitterTypeSelection).ToLower();
ident.submitter = (submitterTypeSelection > (int)SubmitterType.anonymous)
? SubmitterNameTextBox.Text
: LearningRegistry.Taxonomies.SubmitterType.Anonymous;
if(!String.IsNullOrEmpty(CuratorTextBox.Text))
ident.curator = CuratorTextBox.Text;
if(!String.IsNullOrEmpty(OwnerTextBox.Text))
ident.owner = OwnerTextBox.Text;
if(!String.IsNullOrEmpty(SignerTextBox.Text))
ident.signer = SignerTextBox.Text;
doc.identity = ident;
WriteToConsole("Done\n");
return doc;
}
protected lr_Envelope buildEnvelope(IEnumerable<lr_document> docs)
{
WriteToConsole("Stuffing the envelope...");
lr_Envelope envelope = new lr_Envelope();
envelope.documents.AddRange(docs);
WriteToConsole("Done\n");
return envelope;
}
protected void SaveResourceDescriptionDocument (object sender, System.EventArgs e)
{
FileChooserDialog dialog = new FileChooserDialog("Save Resource Description",
this,
FileChooserAction.Save,
"Cancel", ResponseType.Cancel,
"Save", ResponseType.Accept);
dialog.AddFilter(getJsonFilter());
if(dialog.Run() == (int)ResponseType.Accept)
{
lr_document doc = this.buildDoc();
using(FileStream fs = new FileStream(dialog.Filename, FileMode.Create))
{
byte[] data = System.Text.Encoding.UTF8.GetBytes(doc.Serialize());
fs.Write(data, 0, data.Length);
}
}
WriteLineToConsole("Resource description saved to "+dialog.Filename);
dialog.Destroy();
}
protected void LoadResourceDescriptionDocument (object sender, System.EventArgs e)
{
FileChooserDialog dialog = new FileChooserDialog("Load Resource Description",
this,
FileChooserAction.Open,
"Cancel", ResponseType.Cancel,
"Open", ResponseType.Accept);
dialog.AddFilter(getJsonFilter());
if(dialog.Run() == (int)ResponseType.Accept)
{
WriteLineToConsole("Loading from "+dialog.Filename);
using(FileStream fs = new FileStream(dialog.Filename, FileMode.Open))
{
using (StreamReader reader = new StreamReader(fs))
{
var doc = lr_document.Deserialize(reader.ReadToEnd());
if(doc != null)
PopulateFields(doc);
}
}
WriteLineToConsole("Finished loading document.");
}
dialog.Destroy();
}
protected void PopulateFields(lr_document doc)
{
//Update fields
if(!String.IsNullOrEmpty(doc.resource_locator))
this.ResourceLocatorTextBox.Text = doc.resource_locator;
if(doc.payload_schema.Count > 0)
this.PayloadSchemaTextBox.Text = String.Join(",",doc.payload_schema.ToArray());
if(doc.payload_placement == LearningRegistry.Taxonomies.PayloadPlacement.Linked)
{
if(!String.IsNullOrEmpty(doc.payload_locator))
this.PayloadLocatorTextBox.Text = doc.payload_locator;
this.PayloadLocatorContainer.Visible = true;
this.PayloadFileContainer.Visible = false;
this.PayloadEditorButtonBox.Visible = false;
}
else
{
_resourceDataRaw = (string)doc.resource_data;
this.PayloadFileContainer.Visible = false;
this.PayloadLocatorContainer.Visible = false;
this.PayloadEditorButtonBox.Visible = true;
}
if(!String.IsNullOrEmpty(doc.payload_schema_locator))
this.PayloadSchemaLocatorTextBox.Text = doc.payload_schema_locator;
if(!String.IsNullOrEmpty(doc.payload_schema_format))
this.SchemaFormatTextBox.Text = doc.payload_schema_format;
if(doc.keys.Count > 0)
this.KeywordsTextBox.Text = String.Join (",", doc.keys.ToArray());
if(doc.resource_TTL > 0)
this.TimeToLiveTextBox.Text = doc.resource_TTL.ToString();
if(!String.IsNullOrEmpty(doc.identity.submitter))
this.SubmitterNameTextBox.Text = doc.identity.submitter;
if(!String.IsNullOrEmpty(doc.identity.curator))
this.CuratorTextBox.Text = doc.identity.curator;
if(!String.IsNullOrEmpty(doc.identity.owner))
this.OwnerTextBox.Text = doc.identity.owner;
if(!String.IsNullOrEmpty(doc.identity.signer))
this.SignerTextBox.Text = doc.identity.signer;
if(!String.IsNullOrEmpty(doc.TOS.submission_TOS))
this.TermsOfServiceTextBox.Text = doc.TOS.submission_TOS;
if(!String.IsNullOrEmpty(doc.TOS.submission_attribution))
this.AttributionStatementTextView.Buffer.Text = doc.TOS.submission_attribution;
//Update Comboboxes
PopulateComboBox<ResourceDataType>(doc.resource_data_type, ref this.ResourceDataTypeComboBox, ResourceDataType.other);
PopulateComboBox<PayloadPlacement>(doc.payload_placement, ref this.PayloadPlacementComboBox, PayloadPlacement.inline);
PopulateComboBox<SubmitterType>(doc.identity.submitter_type, ref this.SubmitterTypeComboBox, SubmitterType.anonymous);
EventArgs args = new EventArgs();
UpdatePayloadChooseContainer(this, args);
UpdateSubmitterNameVisibility(this, args);
}
protected void WriteToConsole(string text)
{
ConsoleWindow.Buffer.Text += text;
}
protected void WriteLineToConsole(string text)
{
ConsoleWindow.Buffer.Text += "\n"+text+"\n";
}
protected void UpdateSubmitterNameVisibility (object sender, System.EventArgs e)
{
int submitterType = this.SubmitterTypeComboBox.Active;
SubmitterNameContainer.Visible = submitterType > (int)SubmitterType.anonymous;
}
protected void CreateEditPayloadPopup (object sender, System.EventArgs e)
{
Window popup = new Window(WindowType.Toplevel);
popup.BorderWidth = 10;
VBox container = new VBox();
Label lbl = new Label();
lbl.Text = "Resource Data:";
lbl.Xalign = 0;
container.Add(lbl);
TextView tview = new TextView();
tview.HeightRequest = 300;
tview.WidthRequest = 500;
tview.WrapMode = WrapMode.Char;
if(!String.IsNullOrEmpty(_resourceDataRaw))
tview.Buffer.Text = _resourceDataRaw;
container.Add(tview);
HBox box = new HBox();
Button doneBtn = new Button();
doneBtn.Label = "Done";
doneBtn.Clicked += delegate(object s, EventArgs eargs) {
_resourceDataRaw = tview.Buffer.Text;
popup.Destroy();
};
Button cancelBtn = new Button();
cancelBtn.Label = "Cancel";
cancelBtn.Clicked += (s, eargs) => popup.Destroy();
box.Add(doneBtn);
box.Add(cancelBtn);
container.Add(box);
popup.Add(container);
popup.ShowAll();
}
protected void ResetFields (object sender, System.EventArgs e)
{
//Reset all of this container's fields
this.ResourceDataTypeComboBox.Active = (int)ResourceDataType.metadata;
this.ResourceLocatorTextBox.Text = "";
this.PayloadPlacementComboBox.Active = (int)PayloadPlacement.inline;
this.PayloadLocatorTextBox.Text = "";
this.PayloadSchemaTextBox.Text = "";
this.PayloadSchemaLocatorTextBox.Text = "";
this.SchemaFormatTextBox.Text = "";
this.KeywordsTextBox.Text = "";
this.TimeToLiveTextBox.Text = "";
this.SubmitterTypeComboBox.Active = (int)SubmitterType.anonymous;
this.SubmitterNameTextBox.Text = "";
this.CuratorTextBox.Text = "";
this.OwnerTextBox.Text = "";
this.SignerTextBox.Text = "";
this.TermsOfServiceTextBox.Text = "";
this.AttributionStatementTextView.Buffer.Text = "";
this.PayloadFileChooser.UnselectAll();
//Reset the widgets' fields
this.SignatureInformationWidget.ResetFields();
this.NodeInfo.ResetFields();
_resourceDataRaw = null;
UpdatePayloadChooseContainer(this, e);
UpdateSubmitterNameVisibility(this, e);
this.NodeInfo.HandleAuthTypeChanged(this, e);
}
protected void ChooseNewPayloadFile (object sender, System.EventArgs e)
{
FileChooserDialog dialog = new FileChooserDialog("Load Resource Data",
this,
FileChooserAction.Open,
"Cancel", ResponseType.Cancel,
"Open", ResponseType.Accept);
if(dialog.Run() == (int)ResponseType.Accept)
{
using(FileStream fs = new FileStream(dialog.Filename, FileMode.Open))
using (StreamReader reader = new StreamReader(fs))
_resourceDataRaw = reader.ReadToEnd();
}
dialog.Destroy();
}
protected void OnPayloadFileChooserSelectionChanged (object sender, System.EventArgs e)
{
this.PayloadFileContainer.Visible = false;
using(StreamReader reader = new StreamReader(this.PayloadFileChooser.Filename))
_resourceDataRaw = reader.ReadToEnd();
this.PayloadEditorButtonBox.Visible = true;
}
protected static void PopulateComboBox<TEnumType> (string docVal, ref ComboBox combo, TEnumType defaultVal)
{
TEnumType eType;
try
{
eType = (TEnumType)Enum.Parse(typeof(TEnumType), docVal);
}
catch
{
eType = defaultVal;
}
combo.Active = (int)Convert.ChangeType(eType, typeof(int));
}
private static FileFilter getJsonFilter()
{
FileFilter filter = new FileFilter();
filter.Name = "JSON Documents";
filter.AddMimeType("application/json");
filter.AddPattern("*.json");
return filter;
}
protected void OnPublishFromCSVActionActivated (object sender, System.EventArgs e)
{
FileChooserDialog dialog = new FileChooserDialog("Load CSV",
this,
FileChooserAction.Open,
"Cancel", ResponseType.Close,
"Open", ResponseType.Accept);
FileFilter filter = new FileFilter();
filter.Name = "CSV files";
filter.AddMimeType("text/csv");
filter.AddPattern("*.csv");
dialog.AddFilter(filter);
if (dialog.Run() == (int)ResponseType.Accept)
{
CsvToLrWindow csvWin = new CsvToLrWindow();
csvWin.PopulateFromCsv(dialog.Filename);
dialog.Destroy();
csvWin.ShowAll();
}
else
dialog.Destroy();
}
protected void CreateHistoryWindow (object sender, System.EventArgs e)
{
HistoryWindow hWin = new HistoryWindow();
hWin.ShowAll();
}
}