toggl 0.5.1

Unofficial command-line interface for Toggl Track using the v9 API.
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
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
use std::collections::HashMap;

use crate::credentials;
use crate::error;
use crate::models;
use crate::models::Entities;
use crate::models::Project;
use crate::models::Tag;
use crate::models::Task;
use crate::models::TimeEntry;
use crate::models::Workspace;
use async_trait::async_trait;
use base64::{engine::general_purpose, Engine as _};
use error::ApiError;
#[cfg(test)]
use mockall::automock;
use models::{ResultWithDefaultError, User};
use reqwest::Client;
use reqwest::{header, RequestBuilder};
use serde::{de, Serialize};

use super::models::NetworkClient;
use super::models::NetworkCreateProject;
use super::models::NetworkCreateTag;
use super::models::NetworkProject;
use super::models::NetworkRenameProject;
use super::models::NetworkRenameTag;
use super::models::NetworkTag;
use super::models::NetworkTask;
use super::models::NetworkTimeEntry;
use super::models::NetworkWorkspace;

#[cfg_attr(test, automock)]
#[async_trait]
pub trait ApiClient {
    async fn get_user(&self) -> ResultWithDefaultError<User>;
    async fn get_entities(&self) -> ResultWithDefaultError<Entities>;

    async fn create_time_entry(&self, time_entry: TimeEntry) -> ResultWithDefaultError<i64>;
    async fn update_time_entry(&self, time_entry: TimeEntry) -> ResultWithDefaultError<i64>;
    async fn get_time_entries_filtered(
        &self,
        since: Option<String>,
        until: Option<String>,
    ) -> ResultWithDefaultError<Vec<TimeEntry>>;
    async fn delete_time_entry(
        &self,
        workspace_id: i64,
        time_entry_id: i64,
    ) -> ResultWithDefaultError<()>;

    async fn create_project(
        &self,
        workspace_id: i64,
        name: String,
        color: String,
    ) -> ResultWithDefaultError<Project>;

    async fn delete_project(
        &self,
        workspace_id: i64,
        project_id: i64,
    ) -> ResultWithDefaultError<()>;

    async fn rename_project(
        &self,
        workspace_id: i64,
        project_id: i64,
        new_name: String,
    ) -> ResultWithDefaultError<Project>;

    async fn get_tags(&self, workspace_id: i64) -> ResultWithDefaultError<Vec<Tag>>;

    async fn create_tag(&self, workspace_id: i64, name: String) -> ResultWithDefaultError<Tag>;

    async fn delete_tag(&self, workspace_id: i64, tag_id: i64) -> ResultWithDefaultError<()>;

    async fn rename_tag(
        &self,
        workspace_id: i64,
        tag_id: i64,
        new_name: String,
    ) -> ResultWithDefaultError<Tag>;
}

pub struct V9ApiClient {
    http_client: Client,
    base_url: String,
}

impl V9ApiClient {
    async fn get_time_entries(
        &self,
        since: Option<&str>,
        until: Option<&str>,
    ) -> ResultWithDefaultError<Vec<NetworkTimeEntry>> {
        let mut url = format!("{}/me/time_entries", self.base_url);
        let mut params: Vec<String> = Vec::new();
        if let Some(since) = since {
            params.push(format!("start_date={since}"));
        }
        if let Some(until) = until {
            params.push(format!("end_date={until}"));
        }
        if !params.is_empty() {
            url = format!("{}?{}", url, params.join("&"));
        }
        self.get::<Vec<NetworkTimeEntry>>(url).await
    }

    async fn get_projects(&self) -> ResultWithDefaultError<Vec<NetworkProject>> {
        let url = format!("{}/me/projects", self.base_url);
        self.get::<Vec<NetworkProject>>(url).await
    }

    async fn get_clients(&self) -> ResultWithDefaultError<Vec<NetworkClient>> {
        let url = format!("{}/me/clients", self.base_url);
        self.get::<Vec<NetworkClient>>(url).await
    }

    async fn get_tasks(&self) -> ResultWithDefaultError<Vec<NetworkTask>> {
        let url = format!("{}/me/tasks", self.base_url);
        self.get::<Vec<NetworkTask>>(url).await
    }

    async fn get_workspaces(&self) -> ResultWithDefaultError<Vec<NetworkWorkspace>> {
        let url = format!("{}/me/workspaces", self.base_url);
        self.get::<Vec<NetworkWorkspace>>(url).await
    }

    async fn get_workspace_tags(
        &self,
        workspace_id: i64,
    ) -> ResultWithDefaultError<Vec<NetworkTag>> {
        let url = format!("{}/workspaces/{}/tags", self.base_url, workspace_id);
        self.get::<Vec<NetworkTag>>(url).await
    }

    pub fn from_credentials(
        credentials: credentials::Credentials,
        proxy: Option<String>,
    ) -> ResultWithDefaultError<V9ApiClient> {
        let auth_string = credentials.api_token + ":api_token";
        let header_content =
            "Basic ".to_string() + general_purpose::STANDARD.encode(auth_string).as_str();
        let mut headers = header::HeaderMap::new();
        let auth_header =
            header::HeaderValue::from_str(header_content.as_str()).expect("Invalid header value");
        headers.insert(header::AUTHORIZATION, auth_header);

        let base_client = Client::builder().default_headers(headers);
        let http_client = {
            if let Some(proxy) = proxy {
                base_client.proxy(reqwest::Proxy::all(proxy).expect("Invalid proxy"))
            } else {
                base_client
            }
        }
        .build()
        .expect("Couldn't build a http client");
        let api_client = Self {
            http_client,
            base_url: "https://track.toggl.com/api/v9".to_string(),
        };
        Ok(api_client)
    }

    async fn get<T: de::DeserializeOwned>(&self, url: String) -> ResultWithDefaultError<T> {
        V9ApiClient::send::<T>(self.http_client.get(url)).await
    }

    async fn put<T: de::DeserializeOwned, Body: Serialize>(
        &self,
        url: String,
        body: &Body,
    ) -> ResultWithDefaultError<T> {
        V9ApiClient::send::<T>(self.http_client.put(url).json(body)).await
    }

    async fn post<T: de::DeserializeOwned, Body: Serialize>(
        &self,
        url: String,
        body: &Body,
    ) -> ResultWithDefaultError<T> {
        V9ApiClient::send::<T>(self.http_client.post(url).json(body)).await
    }

    async fn send<T: de::DeserializeOwned>(request: RequestBuilder) -> ResultWithDefaultError<T> {
        match request.send().await {
            Err(_) => Err(Box::new(ApiError::Network)),
            Ok(response) => match response.json::<T>().await {
                Err(_) => Err(Box::new(ApiError::Deserialization)),
                Ok(parsed_response) => Ok(parsed_response),
            },
        }
    }

    async fn delete(&self, url: String) -> ResultWithDefaultError<()> {
        match self.http_client.delete(url).send().await {
            Err(_) => Err(Box::new(ApiError::Network)),
            Ok(response) => {
                if response.status().is_success() {
                    Ok(())
                } else {
                    Err(Box::new(ApiError::Deserialization))
                }
            }
        }
    }
}

#[async_trait]
impl ApiClient for V9ApiClient {
    async fn get_user(&self) -> ResultWithDefaultError<User> {
        let url = format!("{}/me", self.base_url);
        return self.get::<User>(url).await;
    }

    async fn create_time_entry(&self, time_entry: TimeEntry) -> ResultWithDefaultError<i64> {
        let url = format!("{}/time_entries", self.base_url);
        let network_time_entry = self
            .post::<NetworkTimeEntry, NetworkTimeEntry>(url, &time_entry.into())
            .await?;
        return Ok(network_time_entry.id);
    }

    async fn update_time_entry(&self, time_entry: TimeEntry) -> ResultWithDefaultError<i64> {
        let url = format!("{}/time_entries/{}", self.base_url, time_entry.id);
        let network_time_entry = self
            .put::<NetworkTimeEntry, NetworkTimeEntry>(url, &time_entry.into())
            .await?;
        return Ok(network_time_entry.id);
    }

    async fn delete_time_entry(
        &self,
        workspace_id: i64,
        time_entry_id: i64,
    ) -> ResultWithDefaultError<()> {
        let url = format!(
            "{}/workspaces/{}/time_entries/{}",
            self.base_url, workspace_id, time_entry_id
        );
        self.delete(url).await
    }

    async fn create_project(
        &self,
        workspace_id: i64,
        name: String,
        color: String,
    ) -> ResultWithDefaultError<Project> {
        let url = format!("{}/workspaces/{}/projects", self.base_url, workspace_id);
        let body = NetworkCreateProject {
            name,
            workspace_id,
            color,
            is_private: false,
            active: true,
        };
        let network_project = self
            .post::<NetworkProject, NetworkCreateProject>(url, &body)
            .await?;
        Ok(Project {
            id: network_project.id,
            name: network_project.name,
            workspace_id: network_project.workspace_id,
            client: None,
            is_private: network_project.is_private,
            active: network_project.active,
            at: network_project.at,
            created_at: network_project.created_at,
            color: network_project.color,
            billable: network_project.billable,
        })
    }

    async fn delete_project(
        &self,
        workspace_id: i64,
        project_id: i64,
    ) -> ResultWithDefaultError<()> {
        let url = format!(
            "{}/workspaces/{}/projects/{}",
            self.base_url, workspace_id, project_id
        );
        self.delete(url).await
    }

    async fn rename_project(
        &self,
        workspace_id: i64,
        project_id: i64,
        new_name: String,
    ) -> ResultWithDefaultError<Project> {
        let url = format!(
            "{}/workspaces/{}/projects/{}",
            self.base_url, workspace_id, project_id
        );
        let body = NetworkRenameProject { name: new_name };
        let network_project = self
            .put::<NetworkProject, NetworkRenameProject>(url, &body)
            .await?;
        Ok(Project {
            id: network_project.id,
            name: network_project.name,
            workspace_id: network_project.workspace_id,
            client: None,
            is_private: network_project.is_private,
            active: network_project.active,
            at: network_project.at,
            created_at: network_project.created_at,
            color: network_project.color,
            billable: network_project.billable,
        })
    }

    async fn get_tags(&self, workspace_id: i64) -> ResultWithDefaultError<Vec<Tag>> {
        let network_tags = self.get_workspace_tags(workspace_id).await?;
        Ok(network_tags
            .into_iter()
            .map(|t| Tag {
                id: t.id,
                name: t.name,
                workspace_id: t.workspace_id,
            })
            .collect())
    }

    async fn create_tag(&self, workspace_id: i64, name: String) -> ResultWithDefaultError<Tag> {
        let url = format!("{}/workspaces/{}/tags", self.base_url, workspace_id);
        let body = NetworkCreateTag { name, workspace_id };
        let network_tag = self
            .post::<NetworkTag, NetworkCreateTag>(url, &body)
            .await?;
        Ok(Tag {
            id: network_tag.id,
            name: network_tag.name,
            workspace_id: network_tag.workspace_id,
        })
    }

    async fn delete_tag(&self, workspace_id: i64, tag_id: i64) -> ResultWithDefaultError<()> {
        let url = format!(
            "{}/workspaces/{}/tags/{}",
            self.base_url, workspace_id, tag_id
        );
        self.delete(url).await
    }

    async fn rename_tag(
        &self,
        workspace_id: i64,
        tag_id: i64,
        new_name: String,
    ) -> ResultWithDefaultError<Tag> {
        let url = format!(
            "{}/workspaces/{}/tags/{}",
            self.base_url, workspace_id, tag_id
        );
        let body = NetworkRenameTag {
            name: new_name,
            workspace_id,
        };
        let network_tag = self.put::<NetworkTag, NetworkRenameTag>(url, &body).await?;
        Ok(Tag {
            id: network_tag.id,
            name: network_tag.name,
            workspace_id: network_tag.workspace_id,
        })
    }

    async fn get_time_entries_filtered(
        &self,
        since: Option<String>,
        until: Option<String>,
    ) -> ResultWithDefaultError<Vec<TimeEntry>> {
        let (network_entries, network_projects, network_tasks, network_clients) = tokio::join!(
            self.get_time_entries(since.as_deref(), until.as_deref()),
            self.get_projects(),
            self.get_tasks(),
            self.get_clients(),
        );

        let clients: HashMap<i64, crate::models::Client> = network_clients
            .unwrap_or_default()
            .into_iter()
            .map(|c| {
                (
                    c.id,
                    crate::models::Client {
                        id: c.id,
                        name: c.name,
                        workspace_id: c.wid,
                    },
                )
            })
            .collect();

        let projects: HashMap<i64, Project> = network_projects
            .unwrap_or_default()
            .into_iter()
            .map(|p| {
                (
                    p.id,
                    Project {
                        id: p.id,
                        name: p.name.clone(),
                        workspace_id: p.workspace_id,
                        client: clients.get(&p.client_id.unwrap_or(-1)).cloned(),
                        is_private: p.is_private,
                        active: p.active,
                        at: p.at,
                        created_at: p.created_at,
                        color: p.color,
                        billable: p.billable,
                    },
                )
            })
            .collect();

        let tasks: HashMap<i64, Task> = network_tasks
            .unwrap_or_default()
            .into_iter()
            .filter_map(|t| {
                projects.get(&t.project_id).map(|project| {
                    (
                        t.id,
                        Task {
                            id: t.id,
                            name: t.name,
                            project: project.clone(),
                            workspace_id: t.workspace_id,
                        },
                    )
                })
            })
            .collect();

        let entries = network_entries
            .unwrap_or_default()
            .into_iter()
            .map(|te| TimeEntry {
                id: te.id,
                description: te.description,
                start: te.start,
                stop: te.stop,
                duration: te.duration,
                billable: te.billable,
                workspace_id: te.workspace_id,
                tags: te.tags.unwrap_or_default(),
                project: projects.get(&te.project_id.unwrap_or(-1)).cloned(),
                task: tasks.get(&te.task_id.unwrap_or(-1)).cloned(),
                ..Default::default()
            })
            .collect();

        Ok(entries)
    }

    async fn get_entities(&self) -> ResultWithDefaultError<Entities> {
        let (
            network_time_entries,
            network_projects,
            network_tasks,
            network_clients,
            network_workspaces,
        ) = tokio::join!(
            self.get_time_entries(None, None),
            self.get_projects(),
            self.get_tasks(),
            self.get_clients(),
            self.get_workspaces(),
        );

        let clients: HashMap<i64, crate::models::Client> = network_clients
            .unwrap_or_default()
            .iter()
            .map(|c| {
                (
                    c.id,
                    crate::models::Client {
                        id: c.id,
                        name: c.name.clone(),
                        workspace_id: c.wid,
                    },
                )
            })
            .collect();

        let projects: HashMap<i64, Project> = network_projects
            .unwrap_or_default()
            .iter()
            .map(|p| {
                (
                    p.id,
                    Project {
                        id: p.id,
                        name: p.name.clone(),
                        workspace_id: p.workspace_id,
                        client: clients.get(&p.client_id.unwrap_or(-1)).cloned(),
                        is_private: p.is_private,
                        active: p.active,
                        at: p.at,
                        created_at: p.created_at,
                        color: p.color.clone(),
                        billable: p.billable,
                    },
                )
            })
            .collect();

        let tasks: HashMap<i64, Task> = network_tasks
            .unwrap_or_default()
            .iter()
            .map(|t| {
                (
                    t.id,
                    Task {
                        id: t.id,
                        name: t.name.clone(),
                        project: projects.get(&t.project_id).unwrap().clone(),
                        workspace_id: t.workspace_id,
                    },
                )
            })
            .collect();

        let time_entries = network_time_entries
            .unwrap_or_default()
            .iter()
            .map(|te| TimeEntry {
                id: te.id,
                description: te.description.clone(),
                start: te.start,
                stop: te.stop,
                duration: te.duration,
                billable: te.billable,
                workspace_id: te.workspace_id,
                tags: te.tags.clone().unwrap_or_default(),
                project: projects.get(&te.project_id.unwrap_or(-1)).cloned(),
                task: tasks.get(&te.task_id.unwrap_or(-1)).cloned(),
                ..Default::default()
            })
            .collect();

        let workspaces = network_workspaces
            .unwrap_or_default()
            .iter()
            .map(|w| Workspace {
                id: w.id,
                name: w.name.clone(),
                admin: w.admin,
            })
            .collect();

        Ok(Entities {
            time_entries,
            projects,
            tasks,
            clients,
            workspaces,
            tags: Vec::new(),
        })
    }
}