-
Notifications
You must be signed in to change notification settings - Fork 0
/
toggl.js
213 lines (180 loc) · 4.45 KB
/
toggl.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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
const axios = require("axios");
const { promisify } = require("util");
const homedir = require("os").homedir();
const fs = require("fs");
const config = require("./config.json");
const { minutesToString, calcDiffMin } = require("./utils.js");
const projectPath = homedir + config.pathRelativeToHome + "projects.json";
const readFile = promisify(fs.readFile);
const writeFile = promisify(fs.writeFile);
const toggl = axios.create({
baseURL: "https://api.track.toggl.com/api/v8/",
auth: {
username: process.env.TOGGL_API_KEY || config.api_token,
password: "api_token",
},
});
const readProj = async () => {
const rawFile = await readFile(projectPath);
const { projects } = JSON.parse(rawFile);
return projects;
};
const findInProjList = (projects, { name, pid }) => {
if (name) {
// make first letter capital by convention
const wantedName = name.charAt(0).toUpperCase() + name.slice(1);
return projects.find((item) => item.name.startsWith(wantedName));
}
return projects.find((item) => item.pid === pid);
};
const privateFindProject = async (timer) => {
const projects = await readProj();
const foundProj = findInProjList(projects, timer);
if (foundProj) {
return {
project: foundProj,
error: null,
};
}
const newProjects = await fetchProjects();
const newAttempt = findInProjList(newProjects, timer);
return newAttempt
? {
project: newAttempt,
error: null,
}
: {
project: null,
error: `no project found matching ${timer.name}`,
};
};
const privateCurrentTimer = async () => {
try {
const resp = await toggl("time_entries/current");
const timer = resp.data.data;
return timer
? {
timer,
error: null,
}
: {
timer: null,
error: "no timer running",
};
} catch (e) {
return {
timer: null,
error: "could not reach toggl",
};
}
};
const fetchProjects = async () => {
const resp = await toggl("workspaces/1041293/projects");
const projects = resp.data.map((item) => ({
name: item.name,
pid: item.id,
}));
await writeFile(
projectPath,
JSON.stringify({
projects,
})
);
return projects;
};
const privateGetCurrent = async () => {
const { timer, error } = await privateCurrentTimer();
if (error) {
return {
error,
timer: null,
project: null,
};
}
const { project, error: new_error } = await privateFindProject(timer);
if (new_error) {
return {
error: new_error,
timer: null,
project: null,
};
}
return {
project,
timer,
error: null,
};
};
const getCurrent = async () => {
const { timer, project, error } = await privateGetCurrent();
if (error) {
return error;
}
const diffMin = calcDiffMin(timer.start);
return `${project.name} (${timer.description}) for ${minutesToString(
diffMin
)}`;
};
const stop = async () => {
const { timer, project, error } = await privateGetCurrent();
if (error) {
return error;
}
await toggl.put("time_entries/" + timer.id + "/stop");
return `stopped ${project.name} (${
timer.description
}), after ${minutesToString(calcDiffMin(timer.start))}`;
};
const start = async (inProject, description = "") => {
if (!inProject) {
return "no project entered";
}
const stopped = await stop();
stopped && console.log(stopped);
const { project, error } = await privateFindProject({
name: inProject,
});
if (error) {
return error;
}
const { name, pid } = project;
try {
await toggl.post("/time_entries/start", {
time_entry: {
description,
pid,
tags: [],
created_with: "curl",
},
});
return "started timer for " + name;
} catch (e) {
return "failed to start timer " + e;
}
};
const main = async (command, arg1, arg2) => {
// Skaffa en UNDO
// t s -> status
// när startar en ny så skriv förra och hur länge den var
// byt API endpoint
switch (command) {
case "s":
console.log(await getCurrent());
break;
case "start":
console.log(await start(arg1, arg2));
break;
case "stop":
console.log(await stop());
break;
case "status":
console.log(await getCurrent());
break;
case "update":
console.log(await fetchProjects());
break;
default:
console.log(`no command ${command}`);
}
};
main(process.argv[2], process.argv[3], process.argv[4]);