-
Notifications
You must be signed in to change notification settings - Fork 0
/
key-value-store.js
95 lines (62 loc) · 1.63 KB
/
key-value-store.js
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
// ---[ UI ]-----------------------------------------------
function showStatus(message) {
statusLabel.textContent = message;
}
function showRequest(text) {
requestCode.textContent = text;
}
function showResponse(text) {
responseCode.textContent = text;
}
function showValue(value) {
valueTextBox.value = value;
}
// ---[ Key/Value Store ]----------------------------------
function getValue(key) {
var pair = {
key: key,
value: undefined
};
post('get.php', JSON.stringify(pair), function(data) {
if(data.success === true) {
showValue(data.value);
} else {
showStatus('Error! Message: ' + data.message);
}
});
}
function setValue(key, value) {
var pair = {
key: key,
value: value
};
post('set.php', JSON.stringify(pair));
}
// ---[ Key/Value Store Internals ]------------------------
function onError() {
showStatus('Error!');
}
function post(url, data, callbackSuccess) {
showStatus('Sending request...');
showRequest(data);
var request = new XMLHttpRequest();
request.open('POST', url, true);
// Hack to get around servers that only support this mime type
request.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
request.onerror = onError;
request.onabort = onError;
request.ontimeout = onError;
request.onreadystatechange = function() {
if(request.readyState === 4) {
showStatus('Response recieved');
showResponse(request.responseText);
responseCode.textContent = request.responseText;
if(request.status === 200) {
if(typeof callbackSuccess === 'function') {
callbackSuccess(JSON.parse(request.responseText));
}
}
}
}
request.send(data);
}