blob: 5295b3cb7ae6766e3960bd8dcc2f3cb174fc02a1 [file] [log] [blame]
Nils Diewald0e6992a2015-04-14 20:13:52 +00001define(['util'], function () {
Nils Diewald58141332015-04-07 16:18:45 +00002 // TODO: https://github.com/honza/140medley/blob/master/140medley.js
3 // https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest
4 // https://developer.mozilla.org/en-US/docs/Web/API/XMLHttpRequest/Using_XMLHttpRequest
5 // r.addEventListener("progress", updateProgress, false);
6 // http://www.javascriptkit.com/javatutors/loadjavascriptcss.shtml
7 // http://stackoverflow.com/questions/6112744/load-javascript-on-demand
8
Nils Diewald29f25ee2015-05-08 00:51:47 +00009 KorAP.URL = KorAP.URL !== undefined ? KorAP.URL : 'http://korap.ids-mannheim.de/kalamar';
Nils Diewald0e6992a2015-04-14 20:13:52 +000010
Nils Diewald4347ee92015-05-04 20:32:48 +000011 KorAP.API = KorAP.API || {};
Nils Diewald58141332015-04-07 16:18:45 +000012
Akron48b1e4d2015-06-17 18:47:01 +020013 /**
14 * Retrieve information about a match
15 */
Nils Diewald4347ee92015-05-04 20:32:48 +000016 KorAP.API.getMatchInfo = function (match, param, cb) {
Nils Diewald58141332015-04-07 16:18:45 +000017
Nils Diewald4347ee92015-05-04 20:32:48 +000018 // match is a KorAP.Match object
19 var url = KorAP.URL;
20 url += '/corpus';
Akron0a6768f2016-07-13 18:00:43 +020021/*
Nils Diewald4347ee92015-05-04 20:32:48 +000022 url += '/' + match.corpusID;
23 url += '/' + match.docID;
24 url += '/' + match.textID;
Akron0a6768f2016-07-13 18:00:43 +020025*/
Akron19d97fe2016-09-06 20:47:05 +020026
27 var legacySigle = new RegExp('^([^_]+)_([^\.]+)\.(.+?)$');
28
29 // This is for legacy support
30 var legacy = legacySigle.exec(match.textSigle);
Akron7f613e02016-11-07 02:50:44 +010031 if (legacy !== null && legacy[0]) {
Akron19d97fe2016-09-06 20:47:05 +020032 url += '/' + legacy[1] + '/' + legacy[2] + '/' + legacy[3];
33 }
34 else {
35 url += '/' + match.textSigle;
36 }
37
Nils Diewald4347ee92015-05-04 20:32:48 +000038 url += '/' + match.matchID;
Nils Diewald58141332015-04-07 16:18:45 +000039
Nils Diewald4347ee92015-05-04 20:32:48 +000040 // { spans: true, layer:x, foundry : y}
41 if (param['spans'] == true) {
42 url += '?spans=true';
43 if (param['foundry'] !== undefined)
44 url += '&foundry=' + param['foundry'];
45 if (param['layer'] !== undefined)
46 url += '&layer=' + param['layer'];
Nils Diewald58141332015-04-07 16:18:45 +000047 }
Nils Diewald4347ee92015-05-04 20:32:48 +000048
49 // { spans : false, layer: [Array of KorAP.InfoLayer] }
50 else {
51 // TODO
52 url += '?spans=false';
53 }
54
55 KorAP.API.getJSON(url, cb);
Nils Diewald58141332015-04-07 16:18:45 +000056 };
Nils Diewald4347ee92015-05-04 20:32:48 +000057
Akron48b1e4d2015-06-17 18:47:01 +020058 /**
59 * Retrieve information about collections
60 */
61 KorAP.API.getCollections = function (cb) {
62 KorAP.API.getJSON(KorAP.URL + '/collection', cb);
63 };
64
65 /**
66 * General method to retrieve JSON information
67 */
Nils Diewald4347ee92015-05-04 20:32:48 +000068 KorAP.API.getJSON = function (url, onload) {
69 var req = new XMLHttpRequest();
70
71 req.open("GET", url, true);
72 req.setRequestHeader("Accept", "application/json");
73 req.setRequestHeader('X-Requested-With', 'XMLHttpRequest');
74 req.onreadystatechange = function () {
75 /*
76 States:
77 0 - unsent (prior to open)
78 1 - opened (prior to send)
79 2 - headers received
80 3 - loading (responseText has partial data)
81 4 - done
82 */
83 if (this.readyState == 4) {
Akron9f64fd02016-02-13 05:51:38 +010084 if (this.status === 200) {
85 var json = JSON.parse(this.responseText);
86 if (json["errors"] !== null) {
87 for (var i in json["errors"]) {
88 KorAP.log(json["errors"][i][0], json["errors"][i][1]);
89 };
90 };
91 onload(json);
92 }
Nils Diewald4347ee92015-05-04 20:32:48 +000093 else
94 KorAP.log(this.status, this.statusText);
95 }
96 };
97 req.ontimeout = function () {
98 KorAP.log(0, 'Request Timeout');
99 };
100 req.send();
101 }
Nils Diewald0e6992a2015-04-14 20:13:52 +0000102});