-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.js
63 lines (57 loc) · 1.12 KB
/
index.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
const request = require('request')
exports = module.exports = {}
exports.register = (option, cb) => {
let url = [
option.url,
'/api/external.php?action=requestApiKey&email=',
option.email,
'&siteName=',
option.siteName,
'&siteUrl=',
option.siteUrl,
'&public=',
option.isPublic
].join('')
request({
url: url,
json: true
}, (error, response, body) => {
cb(error, response, body)
})
}
exports.updateSiteData = (option, cb) => {
let url = [
option.url,
'/api/external.php?action=updateSiteData&privateApiKey=',
option.privateApiKey,
'&email=',
option.email,
'&siteName=',
option.siteName,
'&siteUrl=',
option.siteUrl,
'&public=',
option.isPublic
].join('')
request({
url: url,
json: true
}, (error, response, body) => {
cb(error, response, body)
})
}
exports.getMapData = (option, cb) => {
let url = [
option.url,
'/api/external.php?action=getMapData&privateApiKey=',
option.privateApiKey,
(option.date ? ['&date=', option.date].join('') : '')
].join('')
console.log(url)
request({
url: url,
json: true
}, (error, response, body) => {
cb(error, response, body)
})
}