-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathweather.js
74 lines (67 loc) · 1.61 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
69
70
71
72
73
74
#!/usr/bin/env node
import { getArgs } from "./helpers/helpers.js";
import { getIcon, getWeather } from "./services/api.service.js";
import {
printError,
printHelp,
printSuccess,
printWeather,
} from "./services/log.service.js";
import {
APP_DICTIONARY,
getKeyValue,
saveKeyValue,
} from "./services/storage.service.js";
const saveToken = async (token) => {
if (!token.length) {
printError("Не передан токен");
return;
}
try {
await saveKeyValue(APP_DICTIONARY.token, token);
printSuccess("Токен сохранен");
} catch (e) {
printError(e.message);
}
};
const saveCity = async (city) => {
if (!city.length) {
printError("Не передано название города");
return;
}
try {
await saveKeyValue(APP_DICTIONARY.city, city);
printSuccess(`Город ${city} сохранен`);
} catch (e) {
printError(e.message);
}
};
const getForecast = async () => {
try {
const city = await getKeyValue(APP_DICTIONARY.city);
const weather = await getWeather(city);
printWeather(weather, getIcon(weather.weather[0].icon));
} 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) {
return printHelp();
}
if (args.s) {
return saveCity(args.s);
}
if (args.t) {
return saveToken(args.t);
}
return getForecast();
};
initCli();