This repository has been archived by the owner on Mar 6, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathwunderlist-api.js
77 lines (67 loc) · 1.54 KB
/
wunderlist-api.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
var rp = require("request-promise");
const endpoint = "https://a.wunderlist.com/api/v1/";
var Wunderlist = function (clientID, accessToken) {
const defaults = {
headers: {
"X-Client-ID": clientID,
"X-Access-Token": accessToken,
"Content-Type": "application/json"
}
};
this.retrieveTodos = function (listID) {
return new Promise(function (resolve, reject) {
var options = defaults;
options.uri = endpoint + "tasks";
options.qs = {
list_id: listID
};
rp(options)
.then(function (resp) {
resolve(JSON.parse(resp));
})
.catch(function (err) {
reject(err);
});
});
};
this.retrieveLists = function () {
return new Promise(function (resolve, reject) {
var options = defaults;
options.uri = endpoint + "lists";
rp(options)
.then(function (resp) {
resolve(JSON.parse(resp));
})
.catch(function (err) {
reject(err);
});
});
};
this.retrieveList = function (listID) {
return new Promise(function (resolve, reject) {
var options = defaults;
options.uri = endpoint + "lists/" + listID;
rp(options)
.then(function (resp) {
resolve(JSON.parse(resp));
})
.catch(function (err) {
reject(err);
});
});
};
this.retrieveUsers = function () {
return new Promise(function (resolve, reject) {
var options = defaults;
options.uri = endpoint + "users";
rp(options)
.then(function (resp) {
resolve(JSON.parse(resp));
})
.catch(function (err) {
reject(err);
});
});
};
};
module.exports = Wunderlist;