blob: ce52c50ad64a7228a4bbeb908660f6563426c720 (
plain) (
blame)
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
|
// @license magnet:?xt=urn:btih:0b31508aeb0634b347b8270c7bee4d411b5d4109&dn=agpl-3.0.txt AGPL-3.0
'use strict';
function check(url, next) {
if (!url || !next) {
return;
}
const req = new XMLHttpRequest();
req.open('GET', url, true);
req.setRequestHeader('Authorization', 'GoogleLogin auth=test/1');
req.onerror = function (e) {
next('FAIL: HTTP ' + e);
};
req.onload = function () {
if (this.status == 200) {
next(this.response);
} else {
next('FAIL: HTTP error ' + this.status + ' ' + this.statusText);
}
};
req.send();
}
const jsonVars = JSON.parse(document.getElementById('jsonVars').innerHTML);
check(jsonVars.greader + '/check/compatibility', function next(result1) {
const greaderOutput = document.getElementById('greaderOutput');
if (result1 === 'PASS') {
greaderOutput.innerHTML = '✔️ ' + result1;
} else {
check(jsonVars.greader + '/check%2Fcompatibility', function next(result2) {
if (result2 === 'PASS') {
greaderOutput.innerHTML = '⚠️ WARN: no <code>%2F</code> support, so some clients will not work!';
} else {
check('./greader.php/check/compatibility', function next(result3) {
if (result3 === 'PASS') {
greaderOutput.innerHTML = '⚠️ WARN: Probable invalid base URL in ./data/config.php';
} else {
greaderOutput.innerHTML = '❌ ' + result1;
}
});
}
});
}
});
check(jsonVars.fever + '?api', function next(result1) {
const feverOutput = document.getElementById('feverOutput');
try {
JSON.parse(result1);
feverOutput.innerHTML = '✔️ PASS';
} catch (ex) {
check('./fever.php?api', function next(result2) {
try {
JSON.parse(result2);
feverOutput.innerHTML = '⚠️ WARN: Probable invalid base URL in ./data/config.php';
} catch (ex) {
feverOutput.innerHTML = '❌ ' + result1;
}
});
}
});
// @license-end
|