-
Notifications
You must be signed in to change notification settings - Fork 22
/
update-document.js
executable file
·69 lines (59 loc) · 1.56 KB
/
update-document.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
#!/usr/bin/env node
/**
* to run update-document applet from the project root folder type in your console:
* > node bin/update-document <client_id> <client_secret> <username> <password> <document_id> '<fields_stringified>'
* <client_id>, <client_secret>, <username>, <password>, <document_id>, <fields_stringified> - are required params
* options:
* --dev - request will be sent to developer sandbox API
*/
'use strict';
const args = process.argv.slice(2);
const flags = args.filter(arg => /^--/.test(arg));
const params = args.filter(arg => !/^--/.test(arg));
const [
clientId,
clientSecret,
username,
password,
documentId,
fieldsStringified,
] = params;
const dev = flags.includes('--dev');
const { promisify } = require('../utils');
const api = require('../lib')({
credentials: Buffer.from(`${clientId}:${clientSecret}`).toString('base64'),
production: !dev,
});
const {
oauth2: { requestToken: getAccessToken },
document: { update: addFields },
} = api;
const getAccessToken$ = promisify(getAccessToken);
const addFields$ = promisify(addFields);
getAccessToken$({
username,
password,
})
.then(({ access_token: token }) => {
const client_timestamp = Math.floor(Date.now() / 1000);
const fields = JSON.parse(fieldsStringified);
return {
token,
client_timestamp,
fields,
};
})
.then(({
token,
client_timestamp,
fields,
}) => addFields$({
fields: {
client_timestamp,
fields,
},
id: documentId,
token,
}))
.then(res => console.log(res))
.catch(err => console.error(err));