-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmain.go
225 lines (217 loc) · 5.17 KB
/
main.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
package main
import (
"log"
"os"
"time"
"github.com/urfave/cli/v2"
"github.com/PatrikOlin/butler-burton/cfg"
"github.com/PatrikOlin/butler-burton/cmd"
"github.com/PatrikOlin/butler-burton/db"
"github.com/PatrikOlin/butler-burton/util"
)
var Version string
func init() {
db.InitDB()
cfg.InitConfig()
}
func main() {
opts := util.Options{
Verbose: false,
Catered: false,
Overtime: false,
Vab: false,
Weekend: false,
ShowStatus: false,
Loud: false,
}
app := &cli.App{
Name: "Butler Burton",
Usage: "a smartish utility to manage your BL time sheet",
Version: Version,
Compiled: time.Now(),
Authors: []*cli.Author{
{
Name: "Patrik Olin",
Email: "[email protected]",
},
},
Flags: []cli.Flag{
&cli.BoolFlag{
Name: "verbose",
Value: false,
Usage: "turn on verbose mode",
Destination: &opts.Verbose,
},
&cli.BoolFlag{
Name: "loud",
Aliases: []string{"l"},
Value: false,
Usage: "turn on loud mode for this command (send Teams message)",
Destination: &opts.Loud,
},
},
Commands: []*cli.Command{
{
Name: "check in",
Aliases: []string{"ci"},
Usage: "trigger check in sequence",
Flags: []cli.Flag{
&cli.BoolFlag{
Name: "vab",
Aliases: []string{"v"},
Value: false,
Usage: "check in as absent as result of vab",
Destination: &opts.Vab,
},
},
Action: func(c *cli.Context) error {
if opts.Vab {
return cmd.VabCheckin(opts)
}
return cmd.Checkin(opts)
},
},
{
Name: "check out",
Aliases: []string{"co"},
Usage: "trigger check out sequence",
Flags: []cli.Flag{
&cli.BoolFlag{
Name: "catered",
Aliases: []string{"c"},
Value: false,
Usage: "check BL-lunch field in time sheet for todays shift",
Destination: &opts.Catered,
},
&cli.BoolFlag{
Name: "overtime",
Aliases: []string{"o"},
Value: false,
Usage: "write overtime to overtime column",
Destination: &opts.Overtime,
},
&cli.BoolFlag{
Name: "weekend",
Aliases: []string{"w"},
Value: false,
Usage: "check out with weekend message",
Destination: &opts.Weekend,
},
},
Action: func(c *cli.Context) error {
if opts.Weekend {
return cmd.WeekendCheckout(opts)
}
return cmd.Checkout(opts)
},
},
{
Name: "check time",
Aliases: []string{"ct"},
Usage: "get time spent checked in",
Action: func(c *cli.Context) error {
return cmd.CheckTime()
},
},
{
Name: "time sheet",
Aliases: []string{"ts"},
Usage: "commands directly related to time sheet",
Category: "time sheet",
Subcommands: []*cli.Command{
{
Name: "create",
Aliases: []string{"c"},
Usage: "download original time sheet and name it according to month and username",
Category: "time sheet",
Action: func(c *cli.Context) error {
return cmd.CreateNewReport()
},
},
{
Name: "get",
Aliases: []string{"g"},
Usage: "get current time sheet filename",
Category: "time sheet",
Action: func(c *cli.Context) error {
return cmd.GetReportFilename()
},
},
{
Name: "set",
Aliases: []string{"s"},
Usage: "set new time sheet filename",
Category: "time sheet",
Action: func(c *cli.Context) error {
return cmd.SetReportFilename(c.Args().First())
},
},
{
Name: "upload",
Aliases: []string{"u"},
Usage: "upload the time sheet to sharepoint",
Category: "time sheet",
Action: func(c *cli.Context) error {
return cmd.UploadReport()
},
},
{
Name: "download",
Aliases: []string{"d"},
Usage: "download the time sheet from sharepoint",
Category: "time sheet",
Action: func(c *cli.Context) error {
return cmd.DownloadReport()
},
},
},
},
{
Name: "config",
Aliases: []string{"c"},
Usage: "commands directly related to config",
Category: "config",
Subcommands: []*cli.Command{
{
Name: "edit",
Aliases: []string{"e"},
Usage: "edit config-file",
Category: "config",
Action: func(c *cli.Context) error {
return cmd.EditConfig()
},
},
{
Name: "print",
Aliases: []string{"p"},
Usage: "print config-file",
Category: "config",
Action: func(c *cli.Context) error {
return cmd.PrintConfig()
},
},
},
},
{
Name: "afk",
Aliases: []string{"a"},
Usage: "set afk status",
Action: func(c *cli.Context) error {
return cmd.ToggleAFK(c.Args().Get(0), opts)
},
},
{
Name: "exercise",
Aliases: []string{"ex"},
Usage: "set exercise status",
Action: func(c *cli.Context) error {
return cmd.ToggleExercise(c.Args().Get(0), opts)
},
},
},
}
err := app.Run(os.Args)
if err != nil {
log.Fatal(err)
}
}