-
Notifications
You must be signed in to change notification settings - Fork 0
/
weather.js
68 lines (58 loc) · 1.69 KB
/
weather.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
#!/usr/bin/env node
import { getArgs } from "./helpers/args.js";
import { printHelp, printError, printSuccess, printWeather } from "./services/log.service.js";
import { saveKeyValue, CONFIG_DICTIONARY, getKeyValue } from "./services/storage.service.js";
import { getWeather } from "./services/api.service.js";
const saveToken = async (token) => {
if (!token.length) {
printError('Не передан токен');
return;
}
try {
await saveKeyValue(CONFIG_DICTIONARY.token, token);
printSuccess('Токен сохранён');
} catch(e) {
printError(e.message);
}
};
const saveCity = async (city) => {
if (!city.length) {
printError('Не передан город');
return;
}
try {
await saveKeyValue(CONFIG_DICTIONARY.city, city);
printSuccess('Город сохранён');
} catch(e) {
printError(e.message);
}
};
const getForecast = async () => {
try {
const city = process.env.CITY ?? await getKeyValue(CONFIG_DICTIONARY.city);
const weather = await getWeather(city);
printWeather(weather);
} catch (e) {
if (e?.response?.status == 404) {
printError('Неверно указан город');
} else if (e?.response?.status == 401) {
printError('Неверно указан токен');
} else {
printError(e.message);
}
}
};
const initCLI = () => {
const args = getArgs(process.argv);
if (args.h) {
printHelp();
}
if (args.s) {
return saveCity(args.s)
}
if (args.t) {
return saveToken(args.t);
}
getForecast();
};
initCLI();