-
Notifications
You must be signed in to change notification settings - Fork 0
/
client_datastore.js
56 lines (50 loc) · 1013 Bytes
/
client_datastore.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
const Datastore = require('@google-cloud/datastore');
const datastore = new Datastore({
projectId: 'sleepy-project',
keyFilename: 'credential/cred-datastore.json'
});
function add(task, link, author) {
datastore
.insert({
key: datastore.key(['task']),
data: {
task: task,
author: author,
state: 0,
link: link
}
})
.catch(err => {
console.error('ERROR:', err);
return;
});
}
function update(id, state) {
const key = datastore.key(['task', parseInt(id)]);
datastore.get(key, (err, entity) => {
datastore
.update({
key: key,
data: {
task: entity.task,
author: entity.author,
state: state,
link: entity.link
}
})
.catch(err => {
console.error('ERROR:', err);
return;
});
});
}
function get() {
const query = datastore.createQuery('task');
return datastore.runQuery(query);
}
module.exports = {
datastore: datastore,
add: add,
update: update,
get: get
}