blob: ce363545d8d0a832ad574ab7335c07857f0e3663 [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
Akron22598cd2019-12-09 14:59:03 +010011define(["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
Akron7c6e05f2018-07-12 19:08:13 +0200112 // Register plugin by name
113 var plugin = plugins[name] = {
114 name : name,
115 desc : obj["desc"],
116 about : obj["about"],
Akron22598cd2019-12-09 14:59:03 +0100117 widgets : [],
118 services : []
Akron7c6e05f2018-07-12 19:08:13 +0200119 };
Akron10a47962018-07-12 21:17:10 +0200120
121 if (typeof obj["embed"] !== 'object')
122 throw new Error("Embedding of plugin is no list");
Akron7c6e05f2018-07-12 19:08:13 +0200123
124 // Embed all embeddings of the plugin
Akrone1c27f62018-07-20 11:42:59 +0200125 var that = this;
Akron22598cd2019-12-09 14:59:03 +0100126 for (let i in obj["embed"]) {
127 let embed = obj["embed"][i];
Akron10a47962018-07-12 21:17:10 +0200128
129 if (typeof embed !== 'object')
130 throw new Error("Embedding of plugin is no object");
131
Akron7c6e05f2018-07-12 19:08:13 +0200132 // Needs to be localized as well
Akron22598cd2019-12-09 14:59:03 +0100133 let title = embed["title"];
134 let panel = embed["panel"];
135 let onClick = embed["onClick"];
hebasta40a85cf2020-07-15 18:10:08 +0200136 let icon = embed["icon"];
137
Akron22598cd2019-12-09 14:59:03 +0100138 if (!panel || !(buttons[panel] || buttonsSingle[panel]))
Akronba09ed22020-10-01 16:01:45 +0200139 throw new Error("Panel for plugin is invalid");
Akron7c6e05f2018-07-12 19:08:13 +0200140
141 // The embedding will open a widget
Akronba09ed22020-10-01 16:01:45 +0200142 if (!onClick["action"] ||
143 onClick["action"] == "addWidget" ||
144 onClick["action"] == "setWidget") {
Akron22598cd2019-12-09 14:59:03 +0100145
146 let cb = function (e) {
Akron7c6e05f2018-07-12 19:08:13 +0200147
Akrone1c27f62018-07-20 11:42:59 +0200148 // "this" is bind to the panel
Akronba09ed22020-10-01 16:01:45 +0200149 // "this".button is the button
150 // "that" is the server object
Akrone1c27f62018-07-20 11:42:59 +0200151
Akron7c6e05f2018-07-12 19:08:13 +0200152 // Get the URL of the widget
Akron22598cd2019-12-09 14:59:03 +0100153 let url = onClick["template"];
Akrone1c27f62018-07-20 11:42:59 +0200154 // that._interpolateURI(onClick["template"], this.match);
Akron7c6e05f2018-07-12 19:08:13 +0200155
Akronba09ed22020-10-01 16:01:45 +0200156 // The button has a state and the state is associated to the
157 // a intermediate object to toggle the view
158 if ('state' in this.button && this.button.state.associates() > 0) {
159
160 // TODO:
161 // Use roll() when existing
162 let s = this.button.state;
163 if (s.get()) {
164 s.set(false);
165 } else {
166 s.set(true);
167 };
168 return;
169 };
170
Akron7c6e05f2018-07-12 19:08:13 +0200171 // Add the widget to the panel
Akron22598cd2019-12-09 14:59:03 +0100172 let id = that.addWidget(this, name, url);
Akron7c6e05f2018-07-12 19:08:13 +0200173 plugin["widgets"].push(id);
Akronba09ed22020-10-01 16:01:45 +0200174
175 // If a state exists, associate with a mediator object
176 if ('state' in this.button) {
177 this.button.state.associate({
178 setState : function (value) {
179 // Minimize the widget
180 if (value == false) {
181 services[id].minimize();
182 }
183 else {
184 services[id].show();
185 };
186 }
187 });
188 }
Akron7c6e05f2018-07-12 19:08:13 +0200189 };
190
Akron22598cd2019-12-09 14:59:03 +0100191
Akronba09ed22020-10-01 16:01:45 +0200192 // Button object
193 let obj = {'cls':embed["classes"], 'icon': icon }
194
195 if (onClick["action"] && onClick["action"] == "setWidget") {
196
197 // Create a boolean state value, that initializes to true == opened
198 obj['state'] = stateClass.create(true);
199 };
200
Akron2d0d96d2019-11-18 19:49:50 +0100201 // Add to dynamic button list (e.g. for matches)
202 if (buttons[panel]) {
Akronba09ed22020-10-01 16:01:45 +0200203 buttons[panel].push([title, obj, cb]);
Akron2d0d96d2019-11-18 19:49:50 +0100204 }
205
206 // Add to static button list (e.g. for query) already loaded
207 else if (KorAP.Panel[panel]) {
Akronba09ed22020-10-01 16:01:45 +0200208 KorAP.Panel[panel].actions.add(title, obj, cb);
Akron2d0d96d2019-11-18 19:49:50 +0100209 }
210
211 // Add to static button list (e.g. for query) not yet loaded
212 else {
Akronba09ed22020-10-01 16:01:45 +0200213 buttonsSingle[panel].push([title, obj, cb]);
Akron2d0d96d2019-11-18 19:49:50 +0100214 }
Akron22598cd2019-12-09 14:59:03 +0100215 }
Akronba09ed22020-10-01 16:01:45 +0200216
217 // TODO There is no possibility to add icons to an plugin toggle button right now.
Akron22598cd2019-12-09 14:59:03 +0100218 else if (onClick["action"] == "toggle") {
219
220 // Todo: Initially false
221 let state = stateClass.create(false);
222
223 // TODO:
224 // Lazy registration (see above!)
Akron792b1a42020-09-14 18:56:38 +0200225 KorAP.Panel[panel].actions.addToggle(title, {'cls':["title"]}, state);
Akron22598cd2019-12-09 14:59:03 +0100226
227 // Get the URL of the service
228
229 // TODO:
230 // Use the "service" keyword
231 let url = onClick["template"];
232
233 // Add the service
234 let id = this.addService(name, url);
235
236 // TODO:
237 // This is a bit stupid to get the service window
Akronc3003642020-03-30 10:19:14 +0200238 let service = services[id];
239 let iframe = service.load();
Akron22598cd2019-12-09 14:59:03 +0100240
241 // Create object to communicate the toggle state
242 // once the iframe is loaded.
243 iframe.onload = function () {
244 let sendToggle = {
245 setState : function (val) {
Akronc3003642020-03-30 10:19:14 +0200246 service.sendMsg({
Akron22598cd2019-12-09 14:59:03 +0100247 action: 'state',
248 key : onClick['state'],
249 value : val
Akronc3003642020-03-30 10:19:14 +0200250 });
Akron22598cd2019-12-09 14:59:03 +0100251 }
252 };
253
254 // Associate object with the state
255 state.associate(sendToggle);
256 };
257
258 plugin["services"].push(id);
Akron7c6e05f2018-07-12 19:08:13 +0200259 };
260 };
261 },
262
Akron7c6e05f2018-07-12 19:08:13 +0200263 // TODO:
264 // Interpolate URIs similar to https://tools.ietf.org/html/rfc6570
265 // but as simple as possible
266 _interpolateURI : function (uri, obj) {
267 // ...
268 },
269
270
271 /**
Akron4a703872018-07-26 10:59:41 +0200272 * Get named button group - better rename to "action"
Akron7c6e05f2018-07-12 19:08:13 +0200273 */
274 buttonGroup : function (name) {
Akron2d0d96d2019-11-18 19:49:50 +0100275 if (buttons[name] != undefined) {
276 return buttons[name];
277 } else if (buttonsSingle[name] != undefined) {
278 return buttonsSingle[name];
279 };
280 return [];
281 },
282
283 /**
284 * Clear named button group - better rename to "action"
285 */
286 clearButtonGroup : function (name) {
287 if (buttons[name] != undefined) {
288 buttons[name] = [];
289 } else if (buttonsSingle[name] != undefined) {
290 buttonsSingle[name] = [];
291 }
Akron7c6e05f2018-07-12 19:08:13 +0200292 },
Akron479994e2018-07-02 13:21:44 +0200293
Akron22598cd2019-12-09 14:59:03 +0100294 // Optionally initialize the service mechanism and get an ID
295 _getServiceID : function () {
Akron4a703872018-07-26 10:59:41 +0200296
Akron22598cd2019-12-09 14:59:03 +0100297 // Is it the first service?
Akron76dd8d32018-07-06 09:30:22 +0200298 if (!this._listener) {
299
300 /*
301 * Establish the global 'message' hook.
302 */
303 this._listener = this._receiveMsg.bind(this);
304 window.addEventListener("message", this._listener);
305
Akron22598cd2019-12-09 14:59:03 +0100306 // Every second increase the limits of all registered services
Akron76dd8d32018-07-06 09:30:22 +0200307 this._timer = window.setInterval(function () {
308 for (var i in limits) {
309 if (limits[i]++ >= maxMessages) {
310 limits[i] = maxMessages;
311 }
312 }
313 }, 1000);
314 };
315
Akron22598cd2019-12-09 14:59:03 +0100316 // Create a unique random ID per service
317 return 'id-' + this._randomID();
318 },
319
320 /**
321 * Add a service in a certain panel and return the id.
322 */
323 addService : function (name, src) {
324 if (!src)
325 return;
326
327 let id = this._getServiceID();
328
329 // Create a new service
330 let service = serviceClass.create(name, src, id);
331
Akron22598cd2019-12-09 14:59:03 +0100332 services[id] = service;
333 limits[id] = maxMessages;
334
Akron22598cd2019-12-09 14:59:03 +0100335 // Add service to panel
336 this.element().appendChild(
337 service.load()
338 );
339
340 return id;
341 },
342
343
344 /**
345 * Open a new widget view in a certain panel and return
346 * the id.
347 */
348 addWidget : function (panel, name, src) {
349
350 let id = this._getServiceID();
Akrona6c32b92018-07-02 18:39:42 +0200351
352 // Create a new widget
Akron7991b192018-07-09 17:28:43 +0200353 var widget = widgetClass.create(name, src, id);
Akrona6c32b92018-07-02 18:39:42 +0200354
355 // Store the widget based on the identifier
Akron22598cd2019-12-09 14:59:03 +0100356 services[id] = widget;
Akrona99315e2018-07-03 22:56:45 +0200357 limits[id] = maxMessages;
Akrona6c32b92018-07-02 18:39:42 +0200358
Akron4a703872018-07-26 10:59:41 +0200359 widget._mgr = this;
360
Akrone1c27f62018-07-20 11:42:59 +0200361 // Add widget to panel
362 panel.add(widget);
Akronb43c8c62018-07-04 18:27:28 +0200363
364 return id;
Akron479994e2018-07-02 13:21:44 +0200365 },
366
Akron4a703872018-07-26 10:59:41 +0200367
368 /**
Akron22598cd2019-12-09 14:59:03 +0100369 * Get service by identifier
Akron4a703872018-07-26 10:59:41 +0200370 */
Akron22598cd2019-12-09 14:59:03 +0100371 service : function (id) {
372 return services[id];
Akron4a703872018-07-26 10:59:41 +0200373 },
374
375
Akron22598cd2019-12-09 14:59:03 +0100376 // Receive a call from an embedded service.
Akrone8e2c952018-07-04 13:43:12 +0200377 // The handling needs to be very careful,
378 // as this can easily become a security nightmare.
Akron479994e2018-07-02 13:21:44 +0200379 _receiveMsg : function (e) {
380 // Get event data
381 var d = e.data;
382
Akrona99315e2018-07-03 22:56:45 +0200383 // If no data given - fail
384 // (probably check that it's an assoc array)
385 if (!d)
386 return;
387
388 // e.origin is probably set and okay - CHECK!
Akron479994e2018-07-02 13:21:44 +0200389
Akrona99315e2018-07-03 22:56:45 +0200390 // Get origin ID
391 var id = d["originID"];
392
393 // If no origin ID given - fail
394 if (!id)
395 return;
396
Akron22598cd2019-12-09 14:59:03 +0100397 // Get the service
398 let service = services[id];
Akrona6c32b92018-07-02 18:39:42 +0200399
Akron22598cd2019-12-09 14:59:03 +0100400 // If the addressed service does not exist - fail
401 if (!service)
Akrona6c32b92018-07-02 18:39:42 +0200402 return;
403
Akrona99315e2018-07-03 22:56:45 +0200404 // Check for message limits
405 if (limits[id]-- < 0) {
Akrone8e2c952018-07-04 13:43:12 +0200406
Akron22598cd2019-12-09 14:59:03 +0100407 // Kill service
408 KorAP.log(0, 'Suspicious action by service', service.src);
Akron7c6e05f2018-07-12 19:08:13 +0200409
410 // TODO:
411 // Potentially kill the whole plugin!
Akron4a703872018-07-26 10:59:41 +0200412
Akron22598cd2019-12-09 14:59:03 +0100413 // This removes all connections before closing the service
414 this._closeService(service.id);
415
416 // if (service.isWidget)
417 service.close();
418
Akrona99315e2018-07-03 22:56:45 +0200419 return;
420 };
Akrona6c32b92018-07-02 18:39:42 +0200421
Akron479994e2018-07-02 13:21:44 +0200422 // Resize the iframe
Akron22598cd2019-12-09 14:59:03 +0100423 switch (d.action) {
424 case 'resize':
425 if (service.isWidget)
426 service.resize(d);
427 break;
Akron479994e2018-07-02 13:21:44 +0200428
429 // Log message from iframe
Akron22598cd2019-12-09 14:59:03 +0100430 case 'log':
431 KorAP.log(d.code, d.msg, service.src);
432 break;
Akron51ee6232019-12-17 21:00:05 +0100433
434 // Modify pipes
435 case 'pipe':
436 if (KorAP.Pipe != undefined) {
437 if (d.job == 'del') {
438 KorAP.Pipe.remove(d.service);
439 } else {
440 KorAP.Pipe.append(d.service);
441 };
442 };
443 break;
Akronc3003642020-03-30 10:19:14 +0200444
445 // Get information from the embedding platform
446 case 'get':
Akron45308ce2020-08-28 14:10:23 +0200447
448 // Get KoralQuery
Akronc3003642020-03-30 10:19:14 +0200449 if (d.key == 'KQ') {
450 if (KorAP.koralQuery !== undefined) {
451 d["value"] = KorAP.koralQuery;
452 };
Akron45308ce2020-08-28 14:10:23 +0200453 }
454
Akron432972b2020-09-18 17:05:53 +0200455 // Get Query information from from
Akron45308ce2020-08-28 14:10:23 +0200456 else if (d.key == 'QueryForm') {
457 let doc = document;
458 let v = d["value"] = {};
459
460 var el;
461 if (el = doc.getElementById('q-field')) {
462 v["q"] = el.value;
463 };
464 if (el = doc.getElementById('ql-field')) {
465 v["ql"] = el.value;
466 };
467 if (el = KorAP.vc) {
468 v["cq"] = el.toQuery();
469 };
Akron432972b2020-09-18 17:05:53 +0200470 }
471
472 // Get Query information from parameters
473 else if (d.key == 'QueryParam') {
474
475 // Supported in all modern browsers
476 var p = new URLSearchParams(window.location.search);
477 let v = d["value"] = {};
478 v["q"] = p.get('q');
479 v["ql"] = p.get('ql');
480 v["cq"] = p.get('cq');
Akronc3003642020-03-30 10:19:14 +0200481 };
482 };
483
484 // data needs to be mirrored
485 if (d._id) {
486 service.sendMsg(d);
Akrona6c32b92018-07-02 18:39:42 +0200487 };
488
489 // TODO:
490 // Close
Akron479994e2018-07-02 13:21:44 +0200491 },
492
Akron22598cd2019-12-09 14:59:03 +0100493 // Close the service
494 _closeService : function (id) {
Akron4a703872018-07-26 10:59:41 +0200495 delete limits[id];
Akron22598cd2019-12-09 14:59:03 +0100496
497 // Close the iframe
498 if (services[id] && services[id]._closeIframe) {
499 services[id]._closeIframe();
500
501 // Remove from list
502 delete services[id];
503 };
504
Akron76dd8d32018-07-06 09:30:22 +0200505
506 // Remove listeners in case no widget
507 // is available any longer
508 if (Object.keys(limits).length == 0)
509 this._removeListener();
510 },
511
Akrona6c32b92018-07-02 18:39:42 +0200512 // Get a random identifier
513 _randomID : function () {
514 return randomID(20);
Akronb43c8c62018-07-04 18:27:28 +0200515 },
516
Akron76dd8d32018-07-06 09:30:22 +0200517 // Remove the listener
518 _removeListener : function () {
519 window.clearInterval(this._timer);
520 this._timer = undefined;
521 window.removeEventListener("message", this._listener);
522 this._listener = undefined;
523 },
524
Akron22598cd2019-12-09 14:59:03 +0100525 /**
526 * Return the service element.
527 */
528 element : function () {
529 if (!this._element) {
530 this._element = document.createElement('div');
531 this._element.setAttribute("id", "services");
532 }
533 return this._element;
534 },
535
Akronb43c8c62018-07-04 18:27:28 +0200536 // Destructor, just for testing scenarios
537 destroy : function () {
538 limits = {};
Akron22598cd2019-12-09 14:59:03 +0100539 for (let s in services) {
540 services[s].close();
Akron4a703872018-07-26 10:59:41 +0200541 };
Akron22598cd2019-12-09 14:59:03 +0100542 services = {};
Akron2d0d96d2019-11-18 19:49:50 +0100543 for (let b in buttons) {
544 buttons[b] = [];
545 };
546 for (let b in buttonsSingle) {
547 buttonsSingle[b] = [];
548 };
Akron22598cd2019-12-09 14:59:03 +0100549
550 if (this._element) {
551 let e = this._element;
552 if (e.parentNode) {
553 e.parentNode.removeChild(e);
554 };
555 this._element = null;
556 };
557
Akron76dd8d32018-07-06 09:30:22 +0200558 this._removeListener();
Akron479994e2018-07-02 13:21:44 +0200559 }
Akrone1c27f62018-07-20 11:42:59 +0200560 };
Akron479994e2018-07-02 13:21:44 +0200561});