-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
cli.js
executable file
·169 lines (140 loc) · 3.35 KB
/
cli.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
#!/usr/bin/env node
'use strict';
const got = require('got');
const chalk = require('chalk');
const strl = require('string-length');
const repeat = require('repeating');
const meow = require('meow');
const updateNotifier = require('update-notifier');
const storage = require('./storage');
const CODE_REGEX = /[\w]{2}[\d]{9}[\w]{2}/gi;
const { exit } = process;
const { bold, italic } = chalk;
const CORREIOS_SERVICE_URL =
'https://correios-tracking.filipe.now.sh/api/track?code=';
const cli = meow(
`
Como usar:
$ onde-ta RE108441783BR
Salvar e visualizar códigos de rastreio
$ onde-ta RE108441783BR --save batman
$ onde-ta batman
Remover um código salvo
$ onde-ta --remove batman
$ onde-ta --clear
Listar todos os códigos salvos
$ onde-ta --list
Opções
-s, --save Salva um código de rastreio com nome
-r, --remove Remove o código selecionado
-c, --clear Remove todos os códigos salvos
-l, --list Listar todos os códigos salvos com um nome
`,
{
flags: {
save: {
alias: 's',
},
remove: {
alias: 'r',
},
clear: {
alias: 'c',
},
list: {
alias: 'l',
},
},
},
);
function parse(data) {
const { locale, status, observation } = data;
// Check for the longest line
const longestLine = Math.max(
...[
locale.state,
locale.city,
observation.from,
observation.to,
`${bold(locale.city)}/${bold(locale.state)}`,
`${chalk.bold(locale.city)}/${chalk.bold(locale.state)}`,
].map(strl),
);
const bottomSize = longestLine + 3;
const topSize = bottomSize;
const { from, to } = observation;
const output = `
├┈ • [${bold(data.trackedAt)}]
┆
┆ ${bold(italic(status))}
┆
┆ ┌ ${repeat(topSize, '─')} ┐
┆ ${bold(locale.city)}/${bold(locale.state)}
┆ ${
to
? `
┆ • ${from}
┆ ⇢ ${to}`
: from.replace('-', '')
}
┆ └ ${repeat(bottomSize, '─')} ┘
┆`;
return output;
}
function fetchTracking(command, flags) {
return got(CORREIOS_SERVICE_URL + command, { json: true })
.then(function(response) {
const { body } = response;
if (body.error) {
console.log(chalk.red.bold('ErroR! ' + response.body[0].erro));
}
let { tracks } = body;
if (flags.last) {
const [first] = tracks;
tracks = [first];
}
tracks.forEach(function(data) {
console.log(parse(data));
});
})
.catch(function(error) {
if (cli.flags.verbose) {
console.log(error);
}
console.log(chalk.red.bold('Error!'));
exit();
});
}
process.on('SIGINT', function() {
console.log(chalk.red.bold('\n Operação cancelada!'));
exit();
});
updateNotifier({ pkg: cli.pkg }).notify();
async function run() {
if (cli.flags.save) {
storage.save(cli.flags.save, cli.input[0]);
exit();
}
if (cli.flags.clear) {
storage.clear();
exit();
}
if (cli.flags.remove) {
storage.del(cli.flags.remove);
exit();
}
if (cli.flags.list) {
storage.list();
exit();
}
if (!CODE_REGEX.test(cli.input[0]) && cli.input[0]) {
await fetchTracking(storage.get(cli.input[0]), cli.flags);
exit();
}
if (cli.input[0]) {
await fetchTracking(cli.input[0], cli.flags);
exit();
}
cli.showHelp();
}
run(cli);