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
|
// Furtherance - Track your time without being tracked
// Copyright (C) 2022 Ricky Kresslein <rk@lakoliu.com>
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
use chrono::{DateTime, Local};
use directories::ProjectDirs;
use gettextrs::*;
use glib::clone;
use gtk::prelude::*;
use gtk::glib;
use rusqlite::{Connection, Result, backup};
use std::convert::TryFrom;
use std::fs::create_dir_all;
use std::path::PathBuf;
use std::time::Duration;
use crate::ui::FurtheranceWindow;
use crate::settings_manager;
#[derive(Clone, Debug, serde::Serialize, serde::Deserialize)]
pub struct Task {
pub id: i32,
pub task_name: String,
pub start_time: String,
pub stop_time: String,
pub tags: String,
}
#[derive(
Debug,
Clone,
Copy,
PartialEq,
Eq,
PartialOrd,
Ord,
num_derive::FromPrimitive,
num_derive::ToPrimitive,
)]
pub enum SortOrder {
Ascending = 0,
Descending,
}
impl Default for SortOrder {
fn default() -> Self {
// matches the default in sqlite
Self::Ascending
}
}
impl TryFrom<u32> for SortOrder {
type Error = anyhow::Error;
fn try_from(value: u32) -> Result<Self, Self::Error> {
num_traits::FromPrimitive::from_u32(value)
.ok_or_else(|| anyhow::anyhow!("SortOrder from_u32() failed for value {}", value))
}
}
impl SortOrder {
fn to_sqlite(&self) -> &str {
match self {
SortOrder::Ascending => "ASC",
SortOrder::Descending => "DESC",
}
}
}
#[derive(
Debug,
Clone,
Copy,
PartialEq,
Eq,
PartialOrd,
Ord,
num_derive::ToPrimitive,
num_derive::FromPrimitive,
)]
pub enum TaskSort {
StartTime = 0,
StopTime,
TaskName,
}
impl Default for TaskSort {
fn default() -> Self {
Self::StartTime
}
}
impl TryFrom<u32> for TaskSort {
type Error = anyhow::Error;
fn try_from(value: u32) -> Result<Self, Self::Error> {
num_traits::FromPrimitive::from_u32(value)
.ok_or_else(|| anyhow::anyhow!("TaskSort from_u32() failed for value {}", value))
}
}
impl TaskSort {
fn to_sqlite(&self) -> &str {
match self {
Self::StartTime => "start_time",
Self::StopTime => "stop_time",
Self::TaskName => "task_name",
}
}
}
pub fn get_directory() -> PathBuf {
let dir_from_settings = settings_manager::get_string("database-loc");
if dir_from_settings != "default" && PathBuf::from(dir_from_settings.clone()).exists() {
return PathBuf::from(dir_from_settings);
} else {
if let Some(proj_dirs) = ProjectDirs::from("com", "lakoliu", "Furtherance") {
let mut path = PathBuf::from(proj_dirs.data_dir());
create_dir_all(path.clone()).expect("Unable to create database directory");
path.extend(&["furtherance.db"]);
let path_str = path.to_string_lossy().to_string();
if path_str != dir_from_settings {
let settings = settings_manager::get_settings();
let _ = settings.set_string("database-loc", &path_str);
}
return path;
}
}
PathBuf::new()
}
pub fn db_init() -> Result<()> {
let conn = Connection::open(get_directory())?;
conn.execute(
"CREATE TABLE tasks (
id integer primary key,
task_name text,
start_time timestamp,
stop_time timestamp,
tags text)",
[],
)?;
Ok(())
}
pub fn upgrade_old_db() -> Result<()> {
// Update from old DB w/o tags
let conn = Connection::open(get_directory())?;
conn.execute("ALTER TABLE tasks ADD COLUMN tags TEXT DEFAULT ' '", [])?;
Ok(())
}
pub fn db_write(
task_name: &str,
start_time: DateTime<Local>,
stop_time: DateTime<Local>,
tags: String,
) -> Result<()> {
// Write data into database
let conn = Connection::open(get_directory())?;
conn.execute(
"INSERT INTO tasks (task_name, start_time, stop_time, tags) values (?1, ?2, ?3, ?4)",
&[
&task_name.to_string(),
&start_time.to_rfc3339(),
&stop_time.to_rfc3339(),
&tags,
],
)?;
Ok(())
}
pub fn write_autosave(
task_name: &str,
start_time: &str,
stop_time: &str,
tags: &str,
) -> Result<()> {
// Write data into database
let conn = Connection::open(get_directory())?;
conn.execute(
"INSERT INTO tasks (task_name, start_time, stop_time, tags) values (?1, ?2, ?3, ?4)",
&[&task_name, &start_time, &stop_time, &tags],
)?;
Ok(())
}
pub fn retrieve(sort: TaskSort, order: SortOrder) -> Result<Vec<Task>, rusqlite::Error> {
// Retrieve all tasks from the database
let conn = Connection::open(get_directory())?;
let mut query = conn.prepare(
format!(
"SELECT * FROM tasks ORDER BY {0} {1}",
sort.to_sqlite(),
order.to_sqlite()
)
.as_str(),
)?;
let task_iter = query.query_map([], |row| {
Ok(Task {
id: row.get(0)?,
task_name: row.get(1)?,
start_time: row.get(2)?,
stop_time: row.get(3)?,
tags: row.get(4)?,
})
})?;
let mut tasks_vec: Vec<Task> = Vec::new();
for task_item in task_iter {
tasks_vec.push(task_item.unwrap());
}
Ok(tasks_vec)
}
/// Exports the database as CSV.
/// The delimiter parameter is interpreted as a ASCII character.
pub fn export_as_csv(sort: TaskSort, order: SortOrder, delimiter: u8) -> anyhow::Result<String> {
let mut csv_writer = csv::WriterBuilder::new()
.delimiter(delimiter)
.from_writer(vec![]);
let tasks = retrieve(sort, order)?;
for task in tasks {
csv_writer.serialize(task)?;
}
csv_writer.flush()?;
Ok(String::from_utf8(csv_writer.into_inner()?)?)
}
pub fn update_start_time(id: i32, start_time: String) -> Result<()> {
let conn = Connection::open(get_directory())?;
conn.execute(
"UPDATE tasks SET start_time = (?1) WHERE id = (?2)",
&[&start_time, &id.to_string()],
)?;
Ok(())
}
pub fn update_stop_time(id: i32, stop_time: String) -> Result<()> {
let conn = Connection::open(get_directory())?;
conn.execute(
"UPDATE tasks SET stop_time = (?1) WHERE id = (?2)",
&[&stop_time, &id.to_string()],
)?;
Ok(())
}
pub fn update_task_name(id: i32, task_name: String) -> Result<()> {
let conn = Connection::open(get_directory())?;
conn.execute(
"UPDATE tasks SET task_name = (?1) WHERE id = (?2)",
&[&task_name, &id.to_string()],
)?;
Ok(())
}
pub fn update_tags(id: i32, tags: String) -> Result<()> {
let conn = Connection::open(get_directory())?;
conn.execute(
"UPDATE tasks SET tags = (?1) WHERE id = (?2)",
&[&tags, &id.to_string()],
)?;
Ok(())
}
pub fn get_list_by_id(id_list: Vec<i32>) -> Result<Vec<Task>, rusqlite::Error> {
let conn = Connection::open(get_directory())?;
let mut tasks_vec: Vec<Task> = Vec::new();
for id in id_list {
let mut query = conn.prepare("SELECT * FROM tasks WHERE id = :id;")?;
let task_iter = query.query_map(&[(":id", &id.to_string())], |row| {
Ok(Task {
id: row.get(0)?,
task_name: row.get(1)?,
start_time: row.get(2)?,
stop_time: row.get(3)?,
tags: row.get(4)?,
})
})?;
for task_item in task_iter {
tasks_vec.push(task_item.unwrap());
}
}
Ok(tasks_vec)
}
pub fn check_for_tasks() -> Result<String> {
let conn = Connection::open(get_directory())?;
conn.query_row(
"SELECT task_name FROM tasks ORDER BY ROWID ASC LIMIT 1",
[],
|row| row.get(0),
)
}
pub fn check_db_validity(db_path: String) -> Result<String> {
let conn = Connection::open(db_path)?;
conn.query_row(
"SELECT task_name FROM tasks ORDER BY ROWID ASC LIMIT 1",
[],
|row| row.get(0),
)
}
pub fn delete_by_ids(id_list: Vec<i32>) -> Result<()> {
let conn = Connection::open(get_directory())?;
for id in id_list {
conn.execute("delete FROM tasks WHERE id = (?1)", &[&id.to_string()])?;
}
Ok(())
}
pub fn delete_by_id(id: i32) -> Result<()> {
let conn = Connection::open(get_directory())?;
conn.execute("delete FROM tasks WHERE id = (?1)", &[&id.to_string()])?;
Ok(())
}
pub fn delete_all() -> Result<()> {
// Delete everything from the database
let conn = Connection::open(get_directory())?;
conn.execute("delete from tasks", [])?;
Ok(())
}
pub fn backup_db(backup_file: String) -> Result<()> {
let mut bkup_conn = Connection::open(backup_file)?;
let conn = Connection::open(get_directory())?;
let backup = backup::Backup::new(&conn, &mut bkup_conn)?;
backup.run_to_completion(5, Duration::from_millis(250), None)
}
pub fn import_db(new_db: String) -> Result<()> {
let new_conn = Connection::open(new_db.clone())?;
let valid = match check_db_validity(new_db) {
Ok(_) => true,
Err(_) => false
};
if valid {
let mut conn = Connection::open(get_directory())?;
let backup = backup::Backup::new(&new_conn, &mut conn)?;
backup.run_to_completion(5, Duration::from_millis(250), None)
} else {
let window = FurtheranceWindow::default();
let dialog = gtk::MessageDialog::with_markup(
Some(&window),
gtk::DialogFlags::MODAL,
gtk::MessageType::Error,
gtk::ButtonsType::Ok,
Some(&format!(
"<span size='large' weight='bold'>{}</span>",
&gettext("Not a valid database")
)),
);
dialog.connect_response(clone!(@weak dialog = > move |_, _| {
dialog.close();
}));
dialog.show();
Ok(())
}
}
|