-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
304 lines (244 loc) · 6.19 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
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
package main
import (
"bytes"
"encoding/json"
"errors"
"fmt"
"io/ioutil"
"net/http"
"os"
"strconv"
"sync"
"text/template"
"time"
)
const (
generalConfigurationFileName = "conf.json"
endpoint = "https://api.nibol.co/v2/app/business/reservation/desk/create"
authorizeFolder = "/.config/nibblefibble"
)
type authConfig struct {
DeskID string `json:"desk_id"`
SpaceID string `json:"space_id"`
BearerToken string `json:"token"`
Identity string `json:"identity"`
ExcludingDays []int `json:"excluding_days"`
}
type generalConfig struct {
SlackHook string `json:"slack_hook"`
SlackTemplate interface{} `json:"slack_template"`
}
type bookDeskPayload struct {
Day string `json:"day"`
WeekDay int `json:"-"`
From int `json:"from"`
To int `json:"to"`
DeskID string `json:"desk_id"`
SpaceID string `json:"space_id"`
}
/*
Take the authorities files
from the .config/nibblefibble folder
*/
func listFileAuthorizations() ([]string, error) {
var output []string
homeDIR, err := os.UserHomeDir()
if err != nil {
return output, err
}
basePath := homeDIR + authorizeFolder
files, err := ioutil.ReadDir(basePath)
if err != nil {
return output, err
}
for _, file := range files {
if file.Name() != generalConfigurationFileName {
output = append(output, basePath+"/"+file.Name())
}
}
return output, nil
}
/*
Read a JSON file.
The function return the bytes obtained
*/
func readGeneralConfig() (generalConfig, error) {
var unstructuredPayload map[string]interface{}
var payload generalConfig
homeDIR, err := os.UserHomeDir()
if err != nil {
return payload, err
}
basePath := homeDIR + authorizeFolder
file, err := ioutil.ReadFile(basePath + "/" + generalConfigurationFileName)
if err != nil {
return payload, err
}
err = json.Unmarshal([]byte(file), &unstructuredPayload)
if err != nil {
return payload, err
}
payload.SlackHook = fmt.Sprintf("%v", unstructuredPayload["slack_hook"])
payload.SlackTemplate = unstructuredPayload["slack_template"]
return payload, nil
}
/*
Read the authorization file
and take the secret informations
*/
func readAuthorization(filePath string) (authConfig, error) {
var payload authConfig
file, err := ioutil.ReadFile(filePath)
if err != nil {
return payload, err
}
err = json.Unmarshal([]byte(file), &payload)
if err != nil {
return payload, err
}
return payload, nil
}
/*
The day to provide
must be in the following
form. For example:
20210210
*/
func composeNextDay(date time.Time) string {
year, month, day := date.Date()
monthAsString := strconv.Itoa(int(month))
dayAsString := strconv.Itoa(day)
if int(month) < 10 {
monthAsString = "0" + monthAsString
}
if day < 10 {
dayAsString = "0" + dayAsString
}
return strconv.Itoa(year) + monthAsString + dayAsString
}
func sendNotification(message string, hook string) error {
var jsonPayload map[string]interface{}
err := json.Unmarshal([]byte(message), &jsonPayload)
if err != nil {
return err
}
bytesPayload, err := json.Marshal(jsonPayload)
if err != nil {
return err
}
_, err = http.Post(hook, "application/json", bytes.NewBuffer(bytesPayload))
if err != nil {
return err
}
return nil
}
func bookDesk(payload bookDeskPayload, bearerToken string) error {
bodyAsBytes, err := json.Marshal(payload)
if err != nil {
return err
}
request, err := http.NewRequest("POST", endpoint, bytes.NewBuffer(bodyAsBytes))
if err != nil {
return err
}
request.Header.Set("Authorization", "Bearer "+bearerToken)
request.Header.Set("Content-Type", "application/json")
client := &http.Client{}
response, err := client.Do(request)
if err != nil {
return err
}
defer response.Body.Close()
responseBody, err := ioutil.ReadAll(response.Body)
if err != nil {
return err
}
if response.StatusCode < 200 || response.StatusCode > 299 {
return errors.New(string(responseBody))
}
return nil
}
func prepareBookingPayload(auth authConfig) bookDeskPayload {
tomorrow := time.Now().Add(24 * time.Hour)
tomorrowWeekdayAsInt := int(tomorrow.Weekday())
return bookDeskPayload{
To: 1800,
From: 900,
Day: composeNextDay(tomorrow),
WeekDay: tomorrowWeekdayAsInt,
SpaceID: auth.SpaceID,
DeskID: auth.DeskID,
}
}
func renderNotificationTemplate(templateRaw interface{}, identity string) (string, error) {
templateAsString, err := json.Marshal(templateRaw)
if err != nil {
return "", err
}
templateInstance, err := template.New("notification").Parse(string(templateAsString))
if err != nil {
return "", err
}
var templateAsBuffer bytes.Buffer
err = templateInstance.Execute(&templateAsBuffer, map[string]interface{}{
"Identity": identity,
})
if err != nil {
return "", err
}
return templateAsBuffer.String(), nil
}
func abortTheBooking(weekday int, excludingDays []int) bool {
matchExludedDay := false
for _, exludedDay := range excludingDays {
if weekday == exludedDay {
matchExludedDay = true
break
}
}
return matchExludedDay
}
func main() {
// Read configuration file general
conf, err := readGeneralConfig()
if err != nil {
fmt.Println(err.Error())
return
}
filesPath, err := listFileAuthorizations()
if err != nil {
fmt.Println(err.Error())
return
}
wg := new(sync.WaitGroup)
wg.Add(len(filesPath))
for _, filePath := range filesPath {
go func(fp string) {
defer wg.Done()
authorization, err := readAuthorization(fp)
if err != nil {
fmt.Println(err)
return
}
payload := prepareBookingPayload(authorization)
fmt.Printf("Try to booking the desk for the date %s for user %s\n", payload.Day, authorization.Identity)
if abortTheBooking(payload.WeekDay, authorization.ExcludingDays) == true {
fmt.Println("This day is excluded from the booking process")
return
}
err = bookDesk(payload, authorization.BearerToken)
if err != nil {
fmt.Println("Error", err.Error())
templateRendered, err := renderNotificationTemplate(conf.SlackTemplate, authorization.Identity)
if err != nil {
fmt.Println("Error", err.Error())
return
}
// Notify to a channel if something wrong
// occured
sendNotification(templateRendered, conf.SlackHook)
}
}(filePath)
}
wg.Wait()
}