-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbackground.js
79 lines (76 loc) · 2.35 KB
/
background.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
chrome.runtime.onMessage.addListener(function (request, sender, sendResponse) {
if (request.opType === 'checkToken') {
var api_key = request.api_key;
var host = request.host;
fetch('https://' + host + '/api/i', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
},
body: JSON.stringify({i: api_key})
})
.then(response => response.json())
.then(result => {
console.log(result);
if (result.error) {
sendResponse({success: false, error: result.error});
}else{
sendResponse({success: true, error: null});
}
})
.catch(error => {
sendResponse({success: false, error: {message: error.message}});
});
return true;
}
if (request.opType === 'sendNote') {
var api_key = request.api_key;
var host = request.host;
var text = request.text;
fetch('https://' + host + '/api/notes/create', {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({
i: api_key,
text: text,
visibility: request.visible ? request.visible : 'public'
})
})
.then(response => response.json())
.then(result => {
console.log(result);
if (result.error) {
sendResponse({success: false, error: result.error});
}else{
sendResponse({success: true, error: null});
}
})
.catch(error => {
sendResponse({success: false, error: {message: error.message}});
});
return true;
}
if (request.opType === 'checkValidInstance') {
var host = request.host;
fetch('https://' + host + '/api/meta', {
method: 'POST',
headers: {
'Content-Type': 'application/json'
}
})
.then(response => response.json())
.then(result => {
if (result.error) {
sendResponse(false);
}else{
sendResponse(true);
}
})
.catch(error => {
sendResponse(false);
});
return true;
}
});