-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathreport.go
247 lines (208 loc) · 5.97 KB
/
report.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
package util
import (
"io"
"sort"
"time"
"github.com/lucassabreu/clockify-cli/api"
"github.com/lucassabreu/clockify-cli/api/dto"
"github.com/lucassabreu/clockify-cli/pkg/cmd/time-entry/util"
"github.com/lucassabreu/clockify-cli/pkg/cmdcompl"
"github.com/lucassabreu/clockify-cli/pkg/cmdcomplutil"
"github.com/lucassabreu/clockify-cli/pkg/cmdutil"
"github.com/lucassabreu/clockify-cli/pkg/search"
"github.com/lucassabreu/clockify-cli/pkg/timehlp"
"github.com/spf13/cobra"
"golang.org/x/sync/errgroup"
)
const (
HelpNamesForIds = util.HelpNamesForIds
HelpMoreInfoAboutPrinting = util.HelpMoreInfoAboutPrinting
)
// ReportFlags reads the "shared" flags for report commands
type ReportFlags struct {
util.OutputFlags
FillMissingDates bool
Billable bool
NotBillable bool
Description string
Client string
Projects []string
TagIDs []string
}
// Check will assure that there is no conflicting flag values
func (rf ReportFlags) Check() error {
if err := rf.OutputFlags.Check(); err != nil {
return err
}
return cmdutil.XorFlag(map[string]bool{
"billable": rf.Billable,
"not-billable": rf.NotBillable,
})
}
// NewReportFlags helps creating a util.ReportFlags for report commands
func NewReportFlags() ReportFlags {
return ReportFlags{
OutputFlags: util.OutputFlags{TimeFormat: timehlp.FullTimeFormat},
}
}
// AddReportFlags add flags for print out the time entries
func AddReportFlags(
f cmdutil.Factory, cmd *cobra.Command, rf *ReportFlags,
) {
util.AddPrintTimeEntriesFlags(cmd, &rf.OutputFlags)
util.AddPrintMultipleTimeEntriesFlags(cmd)
cmd.Flags().BoolVarP(&rf.FillMissingDates, "fill-missing-dates", "e", false,
"add empty lines for dates without time entries")
cmd.Flags().StringVarP(&rf.Description, "description", "d", "",
"will filter time entries that contains this on the description field")
cmd.Flags().StringSliceVarP(&rf.Projects, "project", "p", []string{},
"Will filter time entries using this project")
_ = cmdcompl.AddSuggestionsToFlag(cmd, "project",
cmdcomplutil.NewProjectAutoComplete(f))
cmd.Flags().StringVarP(&rf.Client, "client", "c", "",
"Will filter projects from this client")
_ = cmdcompl.AddSuggestionsToFlag(cmd, "project",
cmdcomplutil.NewProjectAutoComplete(f))
cmd.Flags().StringSliceVarP(&rf.TagIDs, "tag", "T", []string{},
"Will filter time entries using these tags")
_ = cmdcompl.AddSuggestionsToFlag(cmd, "tag",
cmdcomplutil.NewTagAutoComplete(f))
cmd.Flags().BoolVar(&rf.Billable, "billable", false,
"Will filter time entries that are billable")
cmd.Flags().BoolVar(&rf.NotBillable, "not-billable", false,
"Will filter time entries that are not billable")
}
// ReportWithRange fetches and prints out time entries
func ReportWithRange(
f cmdutil.Factory, start, end time.Time,
out io.Writer, rf ReportFlags,
) error {
userId, err := f.GetUserID()
if err != nil {
return err
}
workspace, err := f.GetWorkspaceID()
if err != nil {
return err
}
c, err := f.Client()
if err != nil {
return err
}
cnf := f.Config()
if len(rf.Projects) != 0 {
if f.Config().IsAllowNameForID() {
if rf.Projects, err = search.GetProjectsByName(
c, cnf, workspace, rf.Client, rf.Projects); err != nil {
return err
}
}
} else if rf.Client != "" {
if f.Config().IsAllowNameForID() {
if rf.Client, err = search.GetClientByName(
c, workspace, rf.Client); err != nil {
return err
}
}
ps, err := c.GetProjects(api.GetProjectsParam{
Workspace: workspace,
Clients: []string{rf.Client},
Hydrate: false,
PaginationParam: api.AllPages(),
})
if err != nil {
return err
}
rf.Projects = make([]string, len(ps))
for i := range ps {
rf.Projects[i] = ps[i].ID
}
}
if len(rf.TagIDs) > 0 && f.Config().IsAllowNameForID() {
if rf.TagIDs, err = search.GetTagsByName(
c, workspace, rf.TagIDs); err != nil {
return err
}
}
if len(rf.Projects) == 0 {
rf.Projects = []string{""}
}
start = timehlp.TruncateDate(start)
end = timehlp.TruncateDate(end).Add(time.Hour * 24)
wg := errgroup.Group{}
logs := make([][]dto.TimeEntry, len(rf.Projects))
for i := range rf.Projects {
i := i
wg.Go(func() error {
var err error
logs[i], err = c.LogRange(api.LogRangeParam{
Workspace: workspace,
UserID: userId,
FirstDate: start,
LastDate: end,
Description: rf.Description,
ProjectID: rf.Projects[i],
TagIDs: rf.TagIDs,
PaginationParam: api.AllPages(),
})
return err
})
}
if err = wg.Wait(); err != nil {
return err
}
log := make([]dto.TimeEntry, 0)
for i := range logs {
log = append(log, logs[i]...)
}
if rf.Billable || rf.NotBillable {
log = filterBilling(log, rf.Billable)
}
sort.Slice(log, func(i, j int) bool {
return log[j].TimeInterval.Start.After(
log[i].TimeInterval.Start,
)
})
if rf.FillMissingDates && len(log) > 0 {
l := log
log = make([]dto.TimeEntry, 0, len(l))
log = append(log, fillMissing(start, l[0].TimeInterval.Start)...)
nextDay := start
for i := range l {
log = append(log,
fillMissing(nextDay, l[i].TimeInterval.Start)...)
log = append(log, l[i])
nextDay = l[i].TimeInterval.Start.Add(
time.Duration(24-l[i].TimeInterval.Start.Hour()) * time.Hour)
}
log = append(log, fillMissing(nextDay, end)...)
}
return util.PrintTimeEntries(
log, out, cnf, rf.OutputFlags)
}
func filterBilling(l []dto.TimeEntry, billable bool) []dto.TimeEntry {
r := make([]dto.TimeEntry, 0, len(l))
for i := 0; i < len(l); i++ {
if l[i].Billable == billable {
r = append(r, l[i])
}
}
return r
}
func fillMissing(first, last time.Time) []dto.TimeEntry {
first = timehlp.TruncateDate(first)
last = timehlp.TruncateDate(last)
d := int(last.Sub(first).Hours() / 24)
if d <= 0 {
return []dto.TimeEntry{}
}
missing := make([]dto.TimeEntry, d)
for i := 0; i < d; i++ {
t := missing[i]
ti := first.AddDate(0, 0, i)
t.TimeInterval.Start = ti
t.TimeInterval.End = &ti
missing[i] = t
}
return missing
}