-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdb.go
1124 lines (959 loc) · 32 KB
/
db.go
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
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
package main
import (
"database/sql"
"errors"
"fmt"
"log"
"os"
"path/filepath"
"time"
"gorm.io/driver/sqlite"
"gorm.io/gorm"
)
type Organization struct {
ID uint `gorm:"primarykey" json:"id"`
CreatedAt time.Time `json:"created_at"`
UpdatedAt time.Time `json:"updated_at"`
DeletedAt gorm.DeletedAt `gorm:"index" json:"deleted_at"`
Name string `json:"name"`
Favorite bool `json:"favorite"`
Projects []Project `json:"projects"`
}
type Project struct {
ID uint `gorm:"primarykey" json:"id"`
CreatedAt time.Time `json:"created_at"`
UpdatedAt time.Time `json:"updated_at"`
DeletedAt gorm.DeletedAt `gorm:"index" json:"deleted_at"`
Name string `json:"name"`
OrganizationID uint `json:"organization_id"`
Favorite bool `json:"favorite"`
WorkHours []WorkHours `json:"work_hours"`
}
type WorkHours struct {
ID uint `gorm:"primarykey" json:"id"`
CreatedAt time.Time `json:"created_at"`
UpdatedAt time.Time `json:"updated_at"`
DeletedAt gorm.DeletedAt `gorm:"index" json:"deleted_at"`
Date string `json:"date"`
Seconds int `json:"seconds"`
ProjectID uint `json:"project_id"`
}
type WorkSession struct {
ID uint `gorm:"primarykey" json:"id"`
CreatedAt time.Time `json:"created_at"`
UpdatedAt time.Time `json:"updated_at"`
DeletedAt gorm.DeletedAt `gorm:"index" json:"deleted_at"`
Date string `json:"date"`
Seconds int `json:"seconds"`
ProjectID uint `json:"project_id"`
}
var (
Logger = log.New(os.Stdout, "", log.LstdFlags|log.Lshortfile)
)
func handleDBError(err error) {
if err != nil {
panic(err)
}
}
func (a *App) cleanupSoftDeletedRecords() {
query := "deleted_at IS NOT NULL AND deleted_at <= datetime('now', '-30 days')"
// Delete soft deleted records for WorkHours
result := a.db.Unscoped().Where(query).Delete(&WorkHours{})
if err := result.Error; err != nil {
log.Printf("Error deleting WorkHours records: %v", err)
} else {
log.Printf("Deleted %d WorkHours records", result.RowsAffected)
}
// Delete soft deleted records for Project
result = a.db.Unscoped().Where(query).Delete(&Project{})
if err := result.Error; err != nil {
log.Printf("Error deleting Project records: %v", err)
} else {
log.Printf("Deleted %d Project records", result.RowsAffected)
}
// Delete soft deleted records for Organization
result = a.db.Unscoped().Where(query).Delete(&Organization{})
if err := result.Error; err != nil {
log.Printf("Error deleting Organization records: %v", err)
} else {
log.Printf("Deleted %d Organization records", result.RowsAffected)
}
}
func NewDb(dbDir string) *gorm.DB {
db, err := gorm.Open(sqlite.Open(filepath.Join(dbDir, "worktracker.sqlite")), &gorm.Config{})
handleDBError(err)
fixOutdatedDb(db)
err = db.AutoMigrate(&WorkHours{}, &Project{}, &Organization{}, &WorkSession{})
handleDBError(err)
return db
}
func (a *App) getOrganization(organizationID uint) (Organization, error) {
var organization Organization
err := a.db.
Where("organizations.deleted_at IS NULL"). // Ignore deleted organizations
Where(&Organization{ID: organizationID}).
First(&organization).Error
if err != nil {
Logger.Println(err)
return Organization{}, err
}
return organization, nil
}
func (a *App) getProject(projectID uint) (Project, error) {
var project Project
err := a.db.
Where("projects.deleted_at IS NULL"). // Ignore deleted projects
Where(&Project{ID: projectID}).
First(&project).Error
if err != nil {
Logger.Println(err)
return Project{}, err
}
return project, nil
}
type NewOrgRet struct {
Organization Organization `json:"organization"`
Project Project `json:"project"`
}
func (a *App) NewOrganization(organizationName string, projectName string) (NewOrgRet, error) {
if organizationName == "" || projectName == "" {
return NewOrgRet{}, errors.New("organization name or project name is empty")
}
// Check if organization exists, if not create it
var organization Organization
if err := a.db.Where(&Organization{Name: organizationName}).First(&organization).Error; err != nil {
if err == gorm.ErrRecordNotFound {
organization = Organization{Name: organizationName}
if err := a.db.Create(&organization).Error; err != nil {
return NewOrgRet{}, err
}
} else {
return NewOrgRet{}, err
}
}
// Check if project exists within the organization, if not create it
var project Project
if err := a.db.Where("name = ? AND organization_id = ?", projectName, organization.ID).First(&project).Error; err != nil {
if err == gorm.ErrRecordNotFound {
project = Project{Name: projectName, OrganizationID: organization.ID}
if err := a.db.Create(&project).Error; err != nil {
return NewOrgRet{}, err
}
} else {
return NewOrgRet{}, err
}
}
// Create a new WorkHours entry for the project
currentDate := time.Now().Format("2006-01-02")
workHours := WorkHours{
Date: currentDate,
ProjectID: project.ID,
Seconds: 0,
}
if err := a.db.Create(&workHours).Error; err != nil {
handleDBError(err)
}
return NewOrgRet{Organization: organization, Project: project}, nil
}
func (a *App) SetOrganization(organizationID uint) error {
organization, err := a.getOrganization(organizationID)
if err != nil {
return err
}
fmt.Println("Organization set to:", organization.Name)
a.organization = organization
return nil
}
func (a *App) RenameOrganization(organizationID uint, newName string) (Organization, error) {
if newName == "" {
return Organization{}, errors.New("organization name is empty")
}
organization, err := a.getOrganization(organizationID)
if err != nil {
return Organization{}, err
}
// Update the organization's name
organization.Name = newName
if err := a.db.Save(&organization).Error; err != nil {
handleDBError(err)
}
return organization, nil
}
func (a *App) ToggleFavoriteOrganization(organizationID uint) {
organization, err := a.getOrganization(organizationID)
if err != nil {
handleDBError(err)
}
organization.Favorite = !organization.Favorite
if err := a.db.Save(&organization).Error; err != nil {
handleDBError(err)
}
}
// Create a new project for the specified organization
func (a *App) NewProject(organizationName string, projectName string) (Project, error) {
if projectName == "" || organizationName == "" {
return Project{}, errors.New("project name or organization name is empty")
}
// Check if the organization exists, if not create it
var organization Organization
if err := a.db.Where(&Organization{Name: organizationName}).First(&organization).Error; err != nil {
if err == gorm.ErrRecordNotFound {
organization = Organization{Name: organizationName}
if err := a.db.Create(&organization).Error; err != nil {
return Project{}, err
}
} else {
return Project{}, err
}
}
// Check if the project exists within the organization, if not create it
var project Project
if err := a.db.Where(&Project{Name: projectName, OrganizationID: organization.ID}).First(&project).Error; err != nil {
if err == gorm.ErrRecordNotFound {
project = Project{Name: projectName, OrganizationID: organization.ID}
if err := a.db.Create(&project).Error; err != nil {
handleDBError(err)
}
} else {
handleDBError(err)
}
}
// Create a new WorkHours entry for the project
currentDate := time.Now().Format("2006-01-02")
workHours := WorkHours{
Date: currentDate,
ProjectID: project.ID,
Seconds: 0,
}
if err := a.db.Create(&workHours).Error; err != nil {
handleDBError(err)
}
return project, nil
}
// GetProjects returns the list of all projects
func (a *App) GetAllProjects() (projects []Project, err error) {
if err := a.db.Find(&projects).Where("projects.deleted_at IS NULL").Error; err != nil {
return nil, err
}
return projects, nil
}
func (a *App) SetProject(projectID uint) error {
if a.isRunning {
a.StopTimer()
}
project, err := a.getProject(projectID)
if err != nil {
return err
}
fmt.Println("Project set to:", project.Name, "for Organization:", a.organization.Name)
a.project = project
return nil
}
func (a *App) RenameProject(projectID uint, newName string) (Project, error) {
if newName == "" || projectID == 0 {
return Project{}, errors.New("project name is empty or project ID is 0")
}
// Find the project within the organization
var project Project
if err := a.db.Where(&Project{ID: projectID}).First(&project).Error; err != nil {
handleDBError(err)
}
// Update the project's name
project.Name = newName
if err := a.db.Save(&project).Error; err != nil {
handleDBError(err)
}
return project, nil
}
func (a *App) DeleteProject(projectID uint) {
if projectID == 0 {
return
}
var project Project
if err := a.db.Where(&Project{ID: projectID}).First(&project).Error; err != nil {
handleDBError(err)
}
// Delete the project's WorkHours entries
if err := a.db.Where(&WorkHours{ProjectID: project.ID}).Delete(&WorkHours{}).Error; err != nil {
handleDBError(err)
}
// Delete the project
if err := a.db.Delete(&project).Error; err != nil {
handleDBError(err)
}
}
func (a *App) ToggleFavoriteProject(projectID uint) {
if projectID == 0 {
return
}
project, err := a.getProject(projectID)
if err != nil {
handleDBError(err)
}
project.Favorite = !project.Favorite
if err := a.db.Save(&project).Error; err != nil {
handleDBError(err)
}
}
// GetProjects returns the list of projects for the specified organization
func (a *App) GetProjects(organizationID uint) (projects []Project, err error) {
// Find the organization
organization, err := a.getOrganization(organizationID)
if err != nil {
return nil, err
}
// Get the projects within the organization
err = a.db.
Where("projects.deleted_at IS NULL"). // Ignore deleted projects
Where(&Project{OrganizationID: organization.ID}).
Find(&projects).Error
if err != nil {
return nil, err
}
return projects, nil
}
func (a *App) DeleteOrganization(organizationID uint) {
// Find the organization
organization, err := a.getOrganization(organizationID)
if err != nil {
handleDBError(err)
}
// Delete the organization's projects' WorkHours entries
var projectIDs []int
err = a.db.Model(&Project{}).
Where("organization_id = ?", organization.ID).
Pluck("id", &projectIDs).Error
if err != nil {
handleDBError(err)
}
err = a.db.Where("project_id IN (?)", projectIDs).Delete(&WorkHours{}).Error
if err != nil {
handleDBError(err)
}
// Delete the organization's projects
if err := a.db.Where(&Project{OrganizationID: organization.ID}).Delete(&Project{}).Error; err != nil {
handleDBError(err)
}
// Delete the organization
if err := a.db.Delete(&organization).Error; err != nil {
handleDBError(err)
}
}
func (a *App) GetOrganizations() (organizations []Organization, err error) {
if err := a.db.Find(&organizations).Where("organizations.deleted_at IS NULL").Error; err != nil {
return nil, err
}
return organizations, nil
}
func (a *App) saveTimer(projectID uint) int {
endTime := time.Now()
secsWorked := 0
if !a.lastSave.IsZero() {
// If lastSave is set, calculate the seconds worked since the last save
secsWorked = int(endTime.Sub(a.lastSave).Seconds())
} else {
// If lastSave is not set, calculate the seconds worked since the timer started
secsWorked = int(endTime.Sub(a.startTime).Seconds())
}
date := a.startTime.Format("2006-01-02")
// Find the project within the organization
project, err := a.getProject(projectID)
if err != nil {
handleDBError(err)
}
workHours := WorkHours{
Date: date,
ProjectID: project.ID,
Seconds: 0,
}
err = a.db.FirstOrCreate(&workHours, WorkHours{Date: date, ProjectID: project.ID}).Error
handleDBError(err)
err = a.db.Model(&workHours).Update("seconds", gorm.Expr("seconds + ?", secsWorked)).Error
handleDBError(err)
a.lastSave = time.Now()
return int(endTime.Sub(a.startTime).Seconds())
}
// GetWorkTime returns the total seconds worked on the specified date
func (a *App) GetWorkTime(date string, organizationID uint) (seconds int, err error) {
if date == "" || organizationID == 0 {
return 0, nil
}
// Find the organization
organization, err := a.getOrganization(organizationID)
if err != nil {
Logger.Println(err)
return 0, err
}
// Get the total work time for the organization on the given date
var totalSeconds int
err = a.db.Model(&WorkHours{}).
Joins("JOIN projects ON projects.id = work_hours.project_id").
Where("projects.deleted_at IS NULL"). // Ignore deleted projects
Where("work_hours.date = ? AND projects.organization_id = ?", date, organization.ID).
Select("COALESCE(SUM(seconds), 0)").
Row().Scan(&totalSeconds)
if err != nil {
Logger.Println(err, totalSeconds)
return 0, nil
}
return totalSeconds, nil
}
// GetWorkTimeForRange(startDate, endDate, organizationID)
func (a *App) GetWorkTimeForRange(startDate, endDate string, organizationID uint) (workTimes map[string]int, err error) {
if startDate == "" || endDate == "" || organizationID == 0 {
return nil, nil
}
organization, err := a.getOrganization(organizationID)
if err != nil {
Logger.Println(err)
return nil, err
}
totalSeconds := 0
workTimes = make(map[string]int)
// Query to get the total work time for each project within the given date range
rows, err := a.db.Model(&WorkHours{}).
Select("projects.name, COALESCE(SUM(work_hours.seconds), 0) as total_seconds").
Joins("JOIN projects ON projects.id = work_hours.project_id").
Where("projects.organization_id = ? AND projects.deleted_at IS NULL", organization.ID).
Where("work_hours.date >= ? AND work_hours.date <= ?", startDate, endDate).
Group("projects.name").
Rows()
if err != nil {
Logger.Println(err)
return nil, err
}
defer rows.Close()
// Iterate over the rows and populate the map
for rows.Next() {
var projectName string
var projectSeconds int
if err := rows.Scan(&projectName, &projectSeconds); err != nil {
Logger.Println(err)
return nil, err
}
workTimes[projectName] = projectSeconds
totalSeconds += projectSeconds
}
workTimes["total"] = totalSeconds
return workTimes, nil
}
// GetProjectWorkTimeForRange(startDate, endDate, projectID) (seconds, err)
func (a *App) GetProjectWorkTimeForRange(startDate, endDate string, projectID uint) (seconds int, err error) {
if startDate == "" || endDate == "" || projectID == 0 {
return 0, nil
}
// Find the project
project, err := a.getProject(projectID)
if err != nil {
Logger.Println(err)
return 0, err
}
// Get the total work time for the project within the given date range
var totalSeconds int
err = a.db.Model(&WorkHours{}).
Where("project_id = ? AND date >= ? AND date <= ?", project.ID, startDate, endDate).
Select("COALESCE(SUM(seconds), 0)").
Row().Scan(&totalSeconds)
if err != nil {
Logger.Println(err, totalSeconds)
return 0, err
}
return totalSeconds, nil
}
// GetDailyWorkTime returns the total seconds worked for each day for the specified organization
// func (a *App) GetDailyWorkTime(organizationName string) (dailyWorkTime map[string]int, err error) {
// dailyWorkTime = make(map[string]int)
// // Find the organization
// organization, err := a.getOrganization(organizationName)
// if err != nil {
// return nil, err
// }
// rows, err := a.db.Table("work_hours").
// Select("date, COALESCE(SUM(seconds), 0)").
// Joins("JOIN projects ON projects.id = work_hours.project_id").
// Where("projects.deleted_at IS NULL"). // Ignore deleted projects
// Where("projects.organization_id = ?", organization.ID).
// Group("date").
// Rows()
// if err != nil {
// Logger.Println(err)
// return nil, err
// }
// defer rows.Close()
// for rows.Next() {
// var date string
// var seconds int
// if err := rows.Scan(&date, &seconds); err != nil {
// Logger.Println(err)
// return nil, err
// }
// dailyWorkTime[date] = seconds
// }
// if err := rows.Err(); err != nil {
// Logger.Println(err)
// return nil, err
// }
// return dailyWorkTime, nil
// }
// GetDailyWorkTimeByMonth returns the total seconds worked for each day for each project of the specified organization for a specific month
func (a *App) GetDailyWorkTimeByMonth(year int, month time.Month, organizationID uint) (dailyWorkTime map[string]map[string]int, err error) {
dailyWorkTime = make(map[string]map[string]int)
// Find the organization
organization, err := a.getOrganization(organizationID)
if err != nil {
return nil, err
}
rows, err := a.db.Table("work_hours").
Select("date, projects.name, COALESCE(SUM(work_hours.seconds), 0)").
Joins("JOIN projects ON projects.id = work_hours.project_id").
Where("projects.deleted_at IS NULL"). // Ignore deleted projects
Where("strftime('%Y-%m', date) = ? AND projects.organization_id = ?", fmt.Sprintf("%04d-%02d", year, month), organization.ID).
Group("date, projects.name").
Rows()
if err != nil {
Logger.Println(err)
return nil, err
}
defer rows.Close()
for rows.Next() {
var date string
var project string
var seconds int
if err := rows.Scan(&date, &project, &seconds); err != nil {
Logger.Println(err)
return nil, err
}
if _, ok := dailyWorkTime[date]; !ok {
dailyWorkTime[date] = make(map[string]int)
}
dailyWorkTime[date][project] = seconds
}
if err := rows.Err(); err != nil {
Logger.Println(err)
return nil, err
}
return dailyWorkTime, nil
}
// GetWorkTimeByProject returns the total seconds worked for the specified project on specific date
func (a *App) GetWorkTimeByProject(projectID uint, date string) (seconds int, err error) {
if projectID == 0 {
return 0, nil
}
if date == "" {
date = time.Now().Format("2006-01-02")
}
project, err := a.getProject(projectID)
if err != nil {
return 0, err
}
// Get the work time for the project on the given date
var totalSeconds int
err = a.db.Model(&WorkHours{}).
Where("date = ? AND project_id = ?", date, project.ID).
Select("COALESCE(SUM(seconds), 0)").
Row().Scan(&totalSeconds)
if err != nil {
Logger.Println(err)
if err == sql.ErrNoRows {
// No entry for the given project
return 0, nil
}
return 0, err
}
return totalSeconds, nil
}
// GetWeeklyWorkTime returns the total seconds worked for each week of the specified month
func (a *App) GetWeeklyWorkTime(year int, month time.Month, organizationID uint) (weeklyWorkTimes map[int]map[string]int, err error) {
weeklyWorkTimes = make(map[int]map[string]int)
// Find the organization
organization, err := a.getOrganization(organizationID)
if err != nil {
return nil, err
}
rows, err := a.db.Table("work_hours").
Select("strftime('%W', date) - strftime('%W', date('now','start of month')) + (strftime('%w', date('now','start of month')) <> '1') as week, projects.name, COALESCE(SUM(work_hours.seconds), 0)").
Joins("JOIN projects ON projects.id = work_hours.project_id").
Where("projects.deleted_at IS NULL"). // Ignore deleted projects
Where("strftime('%Y-%m', date) = ? AND projects.organization_id = ?", fmt.Sprintf("%04d-%02d", year, month), organization.ID).
Group("week, projects.name").
Rows()
if err != nil {
Logger.Println(err)
return nil, err
}
defer rows.Close()
for rows.Next() {
var week int
var project string
var seconds int
if err := rows.Scan(&week, &project, &seconds); err != nil {
Logger.Println(err)
return nil, err
}
adjustedWeek := week + 1
if _, ok := weeklyWorkTimes[adjustedWeek]; !ok {
weeklyWorkTimes[adjustedWeek] = make(map[string]int)
}
weeklyWorkTimes[adjustedWeek][project] = seconds
}
if err := rows.Err(); err != nil {
return nil, err
}
return weeklyWorkTimes, nil
}
// GetWorkTimeByWeek returns the total seconds worked for each project of a week of the specified month
func (a *App) GetWorkTimeByWeek(year int, month time.Month, week int, organizationID uint) (workTime map[string]int, err error) {
workTime = make(map[string]int)
// Find the organization
organization, err := a.getOrganization(organizationID)
if err != nil {
return nil, err
}
rows, err := a.db.Table("work_hours").
Select("projects.name, COALESCE(SUM(work_hours.seconds), 0)").
Joins("JOIN projects ON projects.id = work_hours.project_id").
Where("projects.deleted_at IS NULL"). // Ignore deleted projects
Where("strftime('%Y-%m', date) = ? AND projects.organization_id = ?", fmt.Sprintf("%04d-%02d", year, month), organization.ID).
Where("strftime('%W', date) - strftime('%W', date('now','start of month')) + (strftime('%w', date('now','start of month')) <> '1') = ?", week-1).
Group("projects.name").
Rows()
if err != nil {
Logger.Println(err)
return nil, err
}
defer rows.Close()
for rows.Next() {
var project string
var seconds int
if err := rows.Scan(&project, &seconds); err != nil {
Logger.Println(err)
return nil, err
}
workTime[project] = seconds
}
if err := rows.Err(); err != nil {
return nil, err
}
return workTime, nil
}
// GetOrgWorkTimeByWeek returns the total seconds worked an organization a week of the specified month
func (a *App) GetOrgWorkTimeByWeek(year int, month time.Month, week int, organizationID uint) (workTime int, err error) {
workTime = 0
// Find the organization
organization, err := a.getOrganization(organizationID)
if err != nil {
return 0, err
}
startOfWeek, endOfWeek := getWeekRange(year, month, week)
fmt.Printf("week %v startOfWeek: %s, endOfWeek: %s\n", week, startOfWeek, endOfWeek)
err = a.db.Table("work_hours").
Select("COALESCE(SUM(work_hours.seconds), 0)").
Joins("JOIN projects ON projects.id = work_hours.project_id").
Where("projects.deleted_at IS NULL"). // Ignore deleted projects
Where("projects.organization_id = ?", organization.ID).
Where("date >= ? AND date <= ?", startOfWeek, endOfWeek).
Row().Scan(&workTime)
if err != nil {
Logger.Println(err)
return 0, err
}
return workTime, nil
}
// GetProjWorkTimeByWeek returns the total seconds worked a project of a week of the specified month
func (a *App) GetProjWorkTimeByWeek(year int, month time.Month, week int, projectID uint) (workTime int, err error) {
workTime = 0
project, err := a.getProject(projectID)
if err != nil {
return 0, err
}
startOfWeek, endOfWeek := getWeekRange(year, month, week)
err = a.db.Table("work_hours").
Select("COALESCE(SUM(work_hours.seconds), 0)").
Joins("JOIN projects ON projects.id = work_hours.project_id").
Where("projects.deleted_at IS NULL"). // Ignore deleted projects
Where("projects.id = ?", project.ID).
Where("date >= ? AND date <= ?", startOfWeek, endOfWeek).
Row().Scan(&workTime)
if err != nil {
Logger.Println(err)
return 0, err
}
return workTime, nil
}
// GetMonthlyWorkTime returns the total seconds worked for each month of the specified year
func (a *App) GetMonthlyWorkTime(year int, organizationID uint) (monthlyWorkTimes map[int]map[string]int, err error) {
// Find the organization
organization, err := a.getOrganization(organizationID)
if err != nil {
return nil, err
}
rows, err := a.db.Table("work_hours").
Select("strftime('%m', date) as month, projects.name, COALESCE(SUM(work_hours.seconds), 0)").
Joins("JOIN projects ON projects.id = work_hours.project_id").
Where("projects.deleted_at IS NULL"). // Ignore deleted projects
Where("strftime('%Y', date) = ? AND projects.organization_id = ?", fmt.Sprintf("%04d", year), organization.ID).
Group("month, projects.name").
Rows()
if err != nil {
Logger.Println(err)
return nil, err
}
defer rows.Close()
monthlyWorkTimes = make(map[int]map[string]int)
for rows.Next() {
var month int
var project string
var seconds int
if err := rows.Scan(&month, &project, &seconds); err != nil {
return nil, err
}
if _, ok := monthlyWorkTimes[month]; !ok {
monthlyWorkTimes[month] = make(map[string]int)
}
monthlyWorkTimes[month][project] = seconds
}
if err := rows.Err(); err != nil {
return nil, err
}
return monthlyWorkTimes, nil
}
// GetProjWorkTimeByMonth returns the total seconds worked for a project of a month of the specified year
func (a *App) GetProjWorkTimeByMonth(year int, month time.Month, projectID uint) (workTime int, err error) {
project, err := a.getProject(projectID)
if err != nil {
return 0, err
}
err = a.db.Table("work_hours").
Select("COALESCE(SUM(work_hours.seconds), 0)").
Joins("JOIN projects ON projects.id = work_hours.project_id").
Where("projects.deleted_at IS NULL"). // Ignore deleted projects
Where("strftime('%Y-%m', date) = ?", fmt.Sprintf("%04d-%02d", year, month)).
Where("projects.id = ?", project.ID).
Row().Scan(&workTime)
if err != nil {
Logger.Println(err)
return 0, err
}
return workTime, nil
}
// GetOrgWorkTimeByMonth returns the total seconds worked for a organization of a month of the specified year
func (a *App) GetOrgWorkTimeByMonth(year int, month time.Month, organizationID uint) (workTime int, err error) {
// Find the organization
organization, err := a.getOrganization(organizationID)
if err != nil {
return 0, err
}
err = a.db.Table("work_hours").
Select("COALESCE(SUM(work_hours.seconds), 0)").
Joins("JOIN projects ON projects.id = work_hours.project_id").
Where("projects.deleted_at IS NULL"). // Ignore deleted projects
Where("strftime('%Y-%m', date) = ? AND projects.organization_id = ?", fmt.Sprintf("%04d-%02d", year, month), organization.ID).
Row().Scan(&workTime)
if err != nil {
Logger.Println(err)
return 0, err
}
return workTime, nil
}
// GetWorkTimeByMonth returns the total seconds worked for each project of a month of the specified year
func (a *App) GetWorkTimeByMonth(year int, month time.Month, organizationID uint) (workTime map[string]int, err error) {
workTime = make(map[string]int)
// Find the organization
organization, err := a.getOrganization(organizationID)
if err != nil {
return nil, err
}
rows, err := a.db.Table("work_hours").
Select("projects.name, COALESCE(SUM(work_hours.seconds), 0)").
Joins("JOIN projects ON projects.id = work_hours.project_id").
Where("projects.deleted_at IS NULL"). // Ignore deleted projects
Where("strftime('%Y-%m', date) = ? AND projects.organization_id = ?", fmt.Sprintf("%04d-%02d", year, month), organization.ID).
Group("projects.name").
Rows()
if err != nil {
Logger.Println(err)
return nil, err
}
defer rows.Close()
for rows.Next() {
var project string
var seconds int
if err := rows.Scan(&project, &seconds); err != nil {
Logger.Println(err)
return nil, err
}
workTime[project] = seconds
}
if err := rows.Err(); err != nil {
Logger.Println(err)
return nil, err
}
return workTime, nil
}
// GetYearlyWorkTime returns the total seconds worked for the specified year
func (a *App) GetYearlyWorkTime(year int, organizationID uint) (yearlyWorkTime int, err error) {
// Find the organization
organization, err := a.getOrganization(organizationID)
if err != nil {
return 0, err
}
row := a.db.Table("work_hours").
Select("COALESCE(SUM(work_hours.seconds), 0)").
Joins("JOIN projects ON projects.id = work_hours.project_id").
Where("projects.deleted_at IS NULL"). // Ignore deleted projects
Where("strftime('%Y', date) = ? AND projects.organization_id = ?", fmt.Sprintf("%04d", year), organization.ID).
Row()
err = row.Scan(&yearlyWorkTime)
if err != nil {
Logger.Println(err)
if err == sql.ErrNoRows {
// No entry for the given year
return 0, nil
}
return 0, err
}
return yearlyWorkTime, nil
}
// GetYearlyWorkTimeByProject returns the total seconds worked for each project for the specified year
func (a *App) GetYearlyWorkTimeByProject(year int, organizationID uint) (yearlyWorkTimes map[string]int, err error) {
yearlyWorkTimes = make(map[string]int)
// Find the organization
organization, err := a.getOrganization(organizationID)
if err != nil {
return nil, err
}
rows, err := a.db.Table("work_hours").
Select("projects.name, COALESCE(SUM(work_hours.seconds), 0) as seconds").
Joins("JOIN projects ON projects.id = work_hours.project_id").
Where("projects.deleted_at IS NULL"). // Ignore deleted projects
Where("strftime('%Y', date) = ? AND projects.organization_id = ?", fmt.Sprintf("%04d", year), organization.ID).
Group("projects.name").
Rows()
if err != nil {
Logger.Println(err)
return nil, err
}
defer rows.Close()
for rows.Next() {
var project string
var seconds int
if err := rows.Scan(&project, &seconds); err != nil {
Logger.Println(err)
return nil, err
}
yearlyWorkTimes[project] = seconds
}
if err := rows.Err(); err != nil {
Logger.Println(err)
return nil, err
}
return yearlyWorkTimes, nil
}
// NewWorkSession creates a new work session for the specified project
func (a *App) NewWorkSession(projectID uint, seconds int) (WorkSession, error) {
if projectID == 0 {
return WorkSession{}, errors.New("project ID is 0")
}
project, err := a.getProject(projectID)