-
Notifications
You must be signed in to change notification settings - Fork 22
/
create-field-invite.js
executable file
·63 lines (53 loc) · 1.49 KB
/
create-field-invite.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
#!/usr/bin/env node
/**
* to run create-field-invite applet from the project root folder type in your console:
* > node bin/create-field-invite <client_id> <client_secret> <username> <password> <document_id> '<signers_stringified>'
* <client_id>, <client_secret>, <username>, <password>, <document_id>, <signers_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,
signersStringified,
] = 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: { invite: sendFieldInvite },
} = api;
const getAccessToken$ = promisify(getAccessToken);
const sendFieldInvite$ = promisify(sendFieldInvite);
getAccessToken$({
username,
password,
})
.then(({ access_token: token }) => {
const signers = JSON.parse(signersStringified);
return {
token,
signers,
};
})
.then(({ token, signers }) => sendFieldInvite$({
data: {
from: username,
to: signers,
},
id: documentId,
token,
}))
.then(res => console.log(res))
.catch(err => console.error(err));