-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathget_pin.js
executable file
·37 lines (31 loc) · 1.3 KB
/
get_pin.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
#!/usr/bin/env node
import { ArgumentParser } from 'argparse';
import { AccessToken } from '../src/access_token.js';
import { ApiConfig } from '../src/api_config.js';
import { common_arguments } from '../src/arguments.js';
import { Pin } from '../src/pin.js';
import { Scope } from '../src/oauth_scope.js';
/**
* This script prints the information associated with a pin. The pin identifier
* my be obtained with the get_user_pins.py or get_board.py script.
*/
async function main(argv) {
const parser = new ArgumentParser({
description: 'Get A Pin'
});
parser.add_argument('-p', '--pin-id', { required: true, help: 'pin identifier' });
common_arguments(parser);
const args = parser.parse_args(argv);
// get configuration from defaults and/or the environment
const api_config = new ApiConfig({ verbosity: args.log_level });
// Note: It's possible to use the same API configuration with
// multiple access tokens, so these objects are kept separate.
const access_token = new AccessToken(api_config, { name: args.access_token });
await access_token.fetch({ scopes: [Scope.READ_PINS, Scope.READ_BOARDS] });
const pin = new Pin(args.pin_id, api_config, access_token);
const pin_data = await pin.get();
Pin.print_summary(pin_data);
}
if (!process.env.TEST_ENV) {
main(process.argv.slice(2));
}