blob: 76ac11d56e201605a3b8791c40775174f519d4d0 [file] [log] [blame]
Akron479994e2018-07-02 13:21:44 +02001/**
2 * The plugin system is based
Akron22598cd2019-12-09 14:59:03 +01003 * on registered services (iframes) from
Akron479994e2018-07-02 13:21:44 +02004 * foreign services.
5 * The server component spawns new iframes and
6 * listens to them.
7 *
8 * @author Nils Diewald
9 */
10
Akron3d013802020-10-07 15:03:38 +020011define(['plugin/widget', 'plugin/service', 'state', 'util'], function (widgetClass, serviceClass, stateClass) {
Akron479994e2018-07-02 13:21:44 +020012 "use strict";
13
Akron2d0d96d2019-11-18 19:49:50 +010014 KorAP.Panel = KorAP.Panel || {};
15
Akron22598cd2019-12-09 14:59:03 +010016 // Contains all servicess to address with
Akrona6c32b92018-07-02 18:39:42 +020017 // messages to them
Akron22598cd2019-12-09 14:59:03 +010018 var services = {};
19 var plugins = {};
Akron10a47962018-07-12 21:17:10 +020020
21 // TODO:
22 // These should better be panels and every panel
23 // has a buttonGroup
Akron2d0d96d2019-11-18 19:49:50 +010024
25 // List of panels with dynamic buttons, i.e.
26 // panels that may occur multiple times.
Akron7c6e05f2018-07-12 19:08:13 +020027 var buttons = {
28 match : []
29 };
Akron2d0d96d2019-11-18 19:49:50 +010030
31 // List of panels with static buttons, i.e.
32 // panels that occur only once.
33 var buttonsSingle = {
hebasta043e96f2019-11-28 12:33:00 +010034 query : [],
35 result : []
Akron22598cd2019-12-09 14:59:03 +010036 }
Akron10a47962018-07-12 21:17:10 +020037
Akrone8e2c952018-07-04 13:43:12 +020038 // This is a counter to limit acceptable incoming messages
39 // to a certain amount. For every message, this counter will
40 // be decreased (down to 0), for every second this will be
41 // increased (up to 100).
42 // Once a widget surpasses the limit, it will be killed
43 // and called suspicious.
44 var maxMessages = 100;
45 var limits = {};
46
47 // TODO:
48 // It may be useful to establish a watcher that pings
Akrone1c27f62018-07-20 11:42:59 +020049 // all widgets every second to see if it is still alive,
50 // otherwise kill
Akrone8e2c952018-07-04 13:43:12 +020051
Akrone1c27f62018-07-20 11:42:59 +020052 // Load Plugin server
Akron479994e2018-07-02 13:21:44 +020053 return {
54
55 /**
56 * Create new plugin management system
57 */
58 create : function () {
59 return Object.create(this)._init();
60 },
61
62 /*
Akron76dd8d32018-07-06 09:30:22 +020063 * Initialize the plugin manager
Akron479994e2018-07-02 13:21:44 +020064 */
65 _init : function () {
Akron479994e2018-07-02 13:21:44 +020066 return this;
67 },
68
69 /**
Akron7c6e05f2018-07-12 19:08:13 +020070 * Register a plugin described as a JSON object.
71 *
72 * This is work in progress.
Akron10a47962018-07-12 21:17:10 +020073 *
74 * Example:
75 *
76 * KorAP.Plugin.register({
77 * 'name' : 'CatContent',
78 * 'desc' : 'Some content about cats',
79 * 'about' : 'https://localhost:5678/',
80 * 'embed' : [{
81 * 'panel' : 'match',
82 * 'title' : loc.TRANSLATE,
83 * 'classes' : ['translate']
84 * 'onClick' : {
85 * 'action' : 'addWidget',
86 * 'template' : 'https://localhost:5678/?match={matchid}',
87 * }
Akron22598cd2019-12-09 14:59:03 +010088 * },{
89 * 'title' : 'glemm',
90 * 'panel' : 'query',
91 * 'onClick' : {
92 * 'action' : 'toggle',
93 * 'state' : 'glemm',
94 * 'service' : {
95 * 'id' : 'glemm',
96 * 'template' : 'https://localhost:5678/'
97 * }
98 * }
Akron10a47962018-07-12 21:17:10 +020099 * }]
100 * });
101 *
Akron7c6e05f2018-07-12 19:08:13 +0200102 */
103 register : function (obj) {
Akron7c6e05f2018-07-12 19:08:13 +0200104 // TODO:
Akron10a47962018-07-12 21:17:10 +0200105 // These fields need to be localized for display by a structure like
106 // { de : { name : '..' }, en : { .. } }
Akron7c6e05f2018-07-12 19:08:13 +0200107 var name = obj["name"];
108
Akron10a47962018-07-12 21:17:10 +0200109 if (!name)
110 throw new Error("Missing name of plugin");
111
Akron3d013802020-10-07 15:03:38 +0200112 var desc = obj["desc"];
113
Akron7c6e05f2018-07-12 19:08:13 +0200114 // Register plugin by name
115 var plugin = plugins[name] = {
116 name : name,
Akron3d013802020-10-07 15:03:38 +0200117 desc : desc,
Akron7c6e05f2018-07-12 19:08:13 +0200118 about : obj["about"],
Akron22598cd2019-12-09 14:59:03 +0100119 widgets : [],
120 services : []
Akron7c6e05f2018-07-12 19:08:13 +0200121 };
Akron10a47962018-07-12 21:17:10 +0200122
123 if (typeof obj["embed"] !== 'object')
124 throw new Error("Embedding of plugin is no list");
Akron7c6e05f2018-07-12 19:08:13 +0200125
126 // Embed all embeddings of the plugin
Akrone1c27f62018-07-20 11:42:59 +0200127 var that = this;
Akron22598cd2019-12-09 14:59:03 +0100128 for (let i in obj["embed"]) {
129 let embed = obj["embed"][i];
Akron10a47962018-07-12 21:17:10 +0200130
131 if (typeof embed !== 'object')
132 throw new Error("Embedding of plugin is no object");
133
Akron7c6e05f2018-07-12 19:08:13 +0200134 // Needs to be localized as well
Akron22598cd2019-12-09 14:59:03 +0100135 let title = embed["title"];
136 let panel = embed["panel"];
137 let onClick = embed["onClick"];
hebasta40a85cf2020-07-15 18:10:08 +0200138 let icon = embed["icon"];
139
Akron22598cd2019-12-09 14:59:03 +0100140 if (!panel || !(buttons[panel] || buttonsSingle[panel]))
Akronba09ed22020-10-01 16:01:45 +0200141 throw new Error("Panel for plugin is invalid");
Akron7c6e05f2018-07-12 19:08:13 +0200142
143 // The embedding will open a widget
Akronba09ed22020-10-01 16:01:45 +0200144 if (!onClick["action"] ||
145 onClick["action"] == "addWidget" ||
146 onClick["action"] == "setWidget") {
Akron22598cd2019-12-09 14:59:03 +0100147
148 let cb = function (e) {
Akron7c6e05f2018-07-12 19:08:13 +0200149
Akrone1c27f62018-07-20 11:42:59 +0200150 // "this" is bind to the panel
Akronba09ed22020-10-01 16:01:45 +0200151 // "this".button is the button
152 // "that" is the server object
Akrone1c27f62018-07-20 11:42:59 +0200153
Akronba09ed22020-10-01 16:01:45 +0200154 // The button has a state and the state is associated to the
155 // a intermediate object to toggle the view
156 if ('state' in this.button && this.button.state.associates() > 0) {
157
Akronba09ed22020-10-01 16:01:45 +0200158 let s = this.button.state;
Akronfcf89db2020-10-01 17:40:20 +0200159
160 // The associated service is existent
161 if (services[this.button['widgetID']]) {
162
163 // TODO:
164 // Use roll() when existing
165 if (s.get()) {
166 s.set(false);
167 } else {
168 s.set(true);
169 };
170 return;
171 }
172
173 // The service is not existent
174 else {
175
176 // Remove broken state associations
177 s.clear();
Akronba09ed22020-10-01 16:01:45 +0200178 s.set(true);
Akronfcf89db2020-10-01 17:40:20 +0200179 }
Akronba09ed22020-10-01 16:01:45 +0200180 };
181
Akron7c6e05f2018-07-12 19:08:13 +0200182 // Add the widget to the panel
Akronbb891982020-10-05 16:07:18 +0200183 let id = that.addWidget(this, {
184 "name": name,
185 "src": onClick["template"], // that._interpolateURI(onClick["template"], this.match);
Akron3d013802020-10-07 15:03:38 +0200186 "permissions": onClick["permissions"],
187 "desc":desc
Akronbb891982020-10-05 16:07:18 +0200188 });
Akron7c6e05f2018-07-12 19:08:13 +0200189 plugin["widgets"].push(id);
Akronba09ed22020-10-01 16:01:45 +0200190
191 // If a state exists, associate with a mediator object
192 if ('state' in this.button) {
Akronfcf89db2020-10-01 17:40:20 +0200193 this.button['widgetID'] = id;
Akronba09ed22020-10-01 16:01:45 +0200194 this.button.state.associate({
195 setState : function (value) {
196 // Minimize the widget
197 if (value == false) {
198 services[id].minimize();
199 }
200 else {
201 services[id].show();
202 };
203 }
204 });
205 }
Akron7c6e05f2018-07-12 19:08:13 +0200206 };
207
Akron22598cd2019-12-09 14:59:03 +0100208
Akronba09ed22020-10-01 16:01:45 +0200209 // Button object
210 let obj = {'cls':embed["classes"], 'icon': icon }
211
212 if (onClick["action"] && onClick["action"] == "setWidget") {
213
214 // Create a boolean state value, that initializes to true == opened
215 obj['state'] = stateClass.create(true);
216 };
217
Akron2d0d96d2019-11-18 19:49:50 +0100218 // Add to dynamic button list (e.g. for matches)
219 if (buttons[panel]) {
Akronba09ed22020-10-01 16:01:45 +0200220 buttons[panel].push([title, obj, cb]);
Akron2d0d96d2019-11-18 19:49:50 +0100221 }
222
223 // Add to static button list (e.g. for query) already loaded
224 else if (KorAP.Panel[panel]) {
Akronba09ed22020-10-01 16:01:45 +0200225 KorAP.Panel[panel].actions.add(title, obj, cb);
Akron2d0d96d2019-11-18 19:49:50 +0100226 }
227
228 // Add to static button list (e.g. for query) not yet loaded
229 else {
Akronba09ed22020-10-01 16:01:45 +0200230 buttonsSingle[panel].push([title, obj, cb]);
Akron2d0d96d2019-11-18 19:49:50 +0100231 }
Akron22598cd2019-12-09 14:59:03 +0100232 }
Akronba09ed22020-10-01 16:01:45 +0200233
234 // TODO There is no possibility to add icons to an plugin toggle button right now.
Akron22598cd2019-12-09 14:59:03 +0100235 else if (onClick["action"] == "toggle") {
236
237 // Todo: Initially false
238 let state = stateClass.create(false);
239
240 // TODO:
241 // Lazy registration (see above!)
Akron792b1a42020-09-14 18:56:38 +0200242 KorAP.Panel[panel].actions.addToggle(title, {'cls':["title"]}, state);
Akron22598cd2019-12-09 14:59:03 +0100243
Akron22598cd2019-12-09 14:59:03 +0100244 // Add the service
Akronbb891982020-10-05 16:07:18 +0200245 let id = this.addService({
246 "name" : name,
247 // TODO:
248 // Use the "service" keyword
249 "src" : onClick["template"],
250 "permissions" : onClick["permissions"]
251 });
Akronfb11a962020-10-05 12:12:55 +0200252
Akron22598cd2019-12-09 14:59:03 +0100253 // TODO:
254 // This is a bit stupid to get the service window
Akronc3003642020-03-30 10:19:14 +0200255 let service = services[id];
256 let iframe = service.load();
Akron22598cd2019-12-09 14:59:03 +0100257
258 // Create object to communicate the toggle state
259 // once the iframe is loaded.
260 iframe.onload = function () {
261 let sendToggle = {
262 setState : function (val) {
Akronc3003642020-03-30 10:19:14 +0200263 service.sendMsg({
Akron22598cd2019-12-09 14:59:03 +0100264 action: 'state',
265 key : onClick['state'],
266 value : val
Akronc3003642020-03-30 10:19:14 +0200267 });
Akron22598cd2019-12-09 14:59:03 +0100268 }
269 };
270
271 // Associate object with the state
272 state.associate(sendToggle);
273 };
274
275 plugin["services"].push(id);
Akron7c6e05f2018-07-12 19:08:13 +0200276 };
277 };
278 },
279
Akron7c6e05f2018-07-12 19:08:13 +0200280 // TODO:
281 // Interpolate URIs similar to https://tools.ietf.org/html/rfc6570
282 // but as simple as possible
283 _interpolateURI : function (uri, obj) {
284 // ...
285 },
286
287
288 /**
Akron4a703872018-07-26 10:59:41 +0200289 * Get named button group - better rename to "action"
Akron7c6e05f2018-07-12 19:08:13 +0200290 */
291 buttonGroup : function (name) {
Akron2d0d96d2019-11-18 19:49:50 +0100292 if (buttons[name] != undefined) {
293 return buttons[name];
294 } else if (buttonsSingle[name] != undefined) {
295 return buttonsSingle[name];
296 };
297 return [];
298 },
299
300 /**
301 * Clear named button group - better rename to "action"
302 */
303 clearButtonGroup : function (name) {
304 if (buttons[name] != undefined) {
305 buttons[name] = [];
306 } else if (buttonsSingle[name] != undefined) {
307 buttonsSingle[name] = [];
308 }
Akron7c6e05f2018-07-12 19:08:13 +0200309 },
Akron479994e2018-07-02 13:21:44 +0200310
Akron22598cd2019-12-09 14:59:03 +0100311 // Optionally initialize the service mechanism and get an ID
312 _getServiceID : function () {
Akron4a703872018-07-26 10:59:41 +0200313
Akron22598cd2019-12-09 14:59:03 +0100314 // Is it the first service?
Akron76dd8d32018-07-06 09:30:22 +0200315 if (!this._listener) {
316
317 /*
318 * Establish the global 'message' hook.
319 */
320 this._listener = this._receiveMsg.bind(this);
321 window.addEventListener("message", this._listener);
322
Akron22598cd2019-12-09 14:59:03 +0100323 // Every second increase the limits of all registered services
Akron76dd8d32018-07-06 09:30:22 +0200324 this._timer = window.setInterval(function () {
325 for (var i in limits) {
326 if (limits[i]++ >= maxMessages) {
327 limits[i] = maxMessages;
328 }
329 }
330 }, 1000);
331 };
332
Akron22598cd2019-12-09 14:59:03 +0100333 // Create a unique random ID per service
334 return 'id-' + this._randomID();
335 },
336
337 /**
338 * Add a service in a certain panel and return the id.
339 */
Akronbb891982020-10-05 16:07:18 +0200340 addService : function (data) {
341 if (!data["src"])
Akron22598cd2019-12-09 14:59:03 +0100342 return;
343
344 let id = this._getServiceID();
345
Akronbb891982020-10-05 16:07:18 +0200346 data["id"] = id;
347
Akron22598cd2019-12-09 14:59:03 +0100348 // Create a new service
Akronbb891982020-10-05 16:07:18 +0200349 let service = serviceClass.create(data);
Akron22598cd2019-12-09 14:59:03 +0100350
Akron22598cd2019-12-09 14:59:03 +0100351 services[id] = service;
352 limits[id] = maxMessages;
353
Akron22598cd2019-12-09 14:59:03 +0100354 // Add service to panel
355 this.element().appendChild(
356 service.load()
357 );
358
359 return id;
360 },
361
362
363 /**
364 * Open a new widget view in a certain panel and return
365 * the id.
366 */
Akronbb891982020-10-05 16:07:18 +0200367 addWidget : function (panel, data) {
368 // panel, name, src, permissions
Akron22598cd2019-12-09 14:59:03 +0100369
370 let id = this._getServiceID();
Akrona6c32b92018-07-02 18:39:42 +0200371
Akronbb891982020-10-05 16:07:18 +0200372 data["id"] = id;
373
Akrona6c32b92018-07-02 18:39:42 +0200374 // Create a new widget
Akronbb891982020-10-05 16:07:18 +0200375 var widget = widgetClass.create(data);
Akrona6c32b92018-07-02 18:39:42 +0200376
377 // Store the widget based on the identifier
Akron22598cd2019-12-09 14:59:03 +0100378 services[id] = widget;
Akrona99315e2018-07-03 22:56:45 +0200379 limits[id] = maxMessages;
Akrona6c32b92018-07-02 18:39:42 +0200380
Akron4a703872018-07-26 10:59:41 +0200381 widget._mgr = this;
382
Akrone1c27f62018-07-20 11:42:59 +0200383 // Add widget to panel
384 panel.add(widget);
Akronb43c8c62018-07-04 18:27:28 +0200385
386 return id;
Akron479994e2018-07-02 13:21:44 +0200387 },
388
Akron4a703872018-07-26 10:59:41 +0200389
390 /**
Akron22598cd2019-12-09 14:59:03 +0100391 * Get service by identifier
Akron4a703872018-07-26 10:59:41 +0200392 */
Akron22598cd2019-12-09 14:59:03 +0100393 service : function (id) {
394 return services[id];
Akron4a703872018-07-26 10:59:41 +0200395 },
396
397
Akron22598cd2019-12-09 14:59:03 +0100398 // Receive a call from an embedded service.
Akrone8e2c952018-07-04 13:43:12 +0200399 // The handling needs to be very careful,
400 // as this can easily become a security nightmare.
Akron479994e2018-07-02 13:21:44 +0200401 _receiveMsg : function (e) {
402 // Get event data
403 var d = e.data;
404
Akrona99315e2018-07-03 22:56:45 +0200405 // If no data given - fail
406 // (probably check that it's an assoc array)
407 if (!d)
408 return;
409
410 // e.origin is probably set and okay - CHECK!
Akron479994e2018-07-02 13:21:44 +0200411
Akrona99315e2018-07-03 22:56:45 +0200412 // Get origin ID
413 var id = d["originID"];
414
415 // If no origin ID given - fail
416 if (!id)
417 return;
418
Akron22598cd2019-12-09 14:59:03 +0100419 // Get the service
420 let service = services[id];
Akrona6c32b92018-07-02 18:39:42 +0200421
Akron22598cd2019-12-09 14:59:03 +0100422 // If the addressed service does not exist - fail
423 if (!service)
Akrona6c32b92018-07-02 18:39:42 +0200424 return;
425
Akrona99315e2018-07-03 22:56:45 +0200426 // Check for message limits
427 if (limits[id]-- < 0) {
Akrone8e2c952018-07-04 13:43:12 +0200428
Akron22598cd2019-12-09 14:59:03 +0100429 // Kill service
430 KorAP.log(0, 'Suspicious action by service', service.src);
Akron7c6e05f2018-07-12 19:08:13 +0200431
432 // TODO:
433 // Potentially kill the whole plugin!
Akron4a703872018-07-26 10:59:41 +0200434
Akron22598cd2019-12-09 14:59:03 +0100435 // This removes all connections before closing the service
436 this._closeService(service.id);
437
438 // if (service.isWidget)
439 service.close();
440
Akrona99315e2018-07-03 22:56:45 +0200441 return;
442 };
Akrona6c32b92018-07-02 18:39:42 +0200443
Akron479994e2018-07-02 13:21:44 +0200444 // Resize the iframe
Akron22598cd2019-12-09 14:59:03 +0100445 switch (d.action) {
446 case 'resize':
447 if (service.isWidget)
448 service.resize(d);
449 break;
Akron479994e2018-07-02 13:21:44 +0200450
451 // Log message from iframe
Akron22598cd2019-12-09 14:59:03 +0100452 case 'log':
453 KorAP.log(d.code, d.msg, service.src);
454 break;
Akron51ee6232019-12-17 21:00:05 +0100455
456 // Modify pipes
457 case 'pipe':
458 if (KorAP.Pipe != undefined) {
459 if (d.job == 'del') {
460 KorAP.Pipe.remove(d.service);
461 } else {
462 KorAP.Pipe.append(d.service);
463 };
464 };
465 break;
Akronc3003642020-03-30 10:19:14 +0200466
467 // Get information from the embedding platform
468 case 'get':
Akron45308ce2020-08-28 14:10:23 +0200469
470 // Get KoralQuery
Akronc3003642020-03-30 10:19:14 +0200471 if (d.key == 'KQ') {
472 if (KorAP.koralQuery !== undefined) {
473 d["value"] = KorAP.koralQuery;
474 };
Akron45308ce2020-08-28 14:10:23 +0200475 }
476
Akron432972b2020-09-18 17:05:53 +0200477 // Get Query information from from
Akron45308ce2020-08-28 14:10:23 +0200478 else if (d.key == 'QueryForm') {
479 let doc = document;
480 let v = d["value"] = {};
481
482 var el;
483 if (el = doc.getElementById('q-field')) {
484 v["q"] = el.value;
485 };
486 if (el = doc.getElementById('ql-field')) {
487 v["ql"] = el.value;
488 };
489 if (el = KorAP.vc) {
490 v["cq"] = el.toQuery();
491 };
Akron432972b2020-09-18 17:05:53 +0200492 }
493
494 // Get Query information from parameters
495 else if (d.key == 'QueryParam') {
496
497 // Supported in all modern browsers
498 var p = new URLSearchParams(window.location.search);
499 let v = d["value"] = {};
500 v["q"] = p.get('q');
501 v["ql"] = p.get('ql');
502 v["cq"] = p.get('cq');
Akronc3003642020-03-30 10:19:14 +0200503 };
504 };
505
506 // data needs to be mirrored
507 if (d._id) {
508 service.sendMsg(d);
Akrona6c32b92018-07-02 18:39:42 +0200509 };
510
511 // TODO:
512 // Close
Akron479994e2018-07-02 13:21:44 +0200513 },
514
Akron22598cd2019-12-09 14:59:03 +0100515 // Close the service
516 _closeService : function (id) {
Akron4a703872018-07-26 10:59:41 +0200517 delete limits[id];
Akronfcf89db2020-10-01 17:40:20 +0200518
Akron22598cd2019-12-09 14:59:03 +0100519 // Close the iframe
520 if (services[id] && services[id]._closeIframe) {
521 services[id]._closeIframe();
522
523 // Remove from list
524 delete services[id];
525 };
526
Akron76dd8d32018-07-06 09:30:22 +0200527
528 // Remove listeners in case no widget
529 // is available any longer
530 if (Object.keys(limits).length == 0)
531 this._removeListener();
532 },
533
Akrona6c32b92018-07-02 18:39:42 +0200534 // Get a random identifier
535 _randomID : function () {
536 return randomID(20);
Akronb43c8c62018-07-04 18:27:28 +0200537 },
538
Akron76dd8d32018-07-06 09:30:22 +0200539 // Remove the listener
540 _removeListener : function () {
541 window.clearInterval(this._timer);
542 this._timer = undefined;
543 window.removeEventListener("message", this._listener);
544 this._listener = undefined;
545 },
546
Akron22598cd2019-12-09 14:59:03 +0100547 /**
548 * Return the service element.
549 */
550 element : function () {
551 if (!this._element) {
552 this._element = document.createElement('div');
553 this._element.setAttribute("id", "services");
554 }
555 return this._element;
556 },
557
Akronb43c8c62018-07-04 18:27:28 +0200558 // Destructor, just for testing scenarios
559 destroy : function () {
560 limits = {};
Akron22598cd2019-12-09 14:59:03 +0100561 for (let s in services) {
562 services[s].close();
Akron4a703872018-07-26 10:59:41 +0200563 };
Akron22598cd2019-12-09 14:59:03 +0100564 services = {};
Akron2d0d96d2019-11-18 19:49:50 +0100565 for (let b in buttons) {
566 buttons[b] = [];
567 };
568 for (let b in buttonsSingle) {
569 buttonsSingle[b] = [];
570 };
Akron22598cd2019-12-09 14:59:03 +0100571
572 if (this._element) {
573 let e = this._element;
574 if (e.parentNode) {
575 e.parentNode.removeChild(e);
576 };
577 this._element = null;
578 };
579
Akron76dd8d32018-07-06 09:30:22 +0200580 this._removeListener();
Akron479994e2018-07-02 13:21:44 +0200581 }
Akrone1c27f62018-07-20 11:42:59 +0200582 };
Akron479994e2018-07-02 13:21:44 +0200583});