This repository has been archived by the owner on Dec 6, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 45
/
reminder.go
executable file
·585 lines (483 loc) · 13.8 KB
/
reminder.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
package main
import (
"encoding/json"
"fmt"
"os"
"strings"
"time"
"github.com/mattermost/mattermost-server/v5/model"
)
type Reminder struct {
TeamId string
Id string
Username string
Target string
Message string
When string
Occurrences []Occurrence
Completed time.Time
}
type ReminderRequest struct {
TeamId string
Username string
Payload string
Reminder Reminder
}
func (p *Plugin) TriggerReminders() {
bytes, err := p.API.KVGet(string(fmt.Sprintf("%v", time.Now().UTC().Round(time.Second))))
if err != nil {
p.API.LogError("failed KVGet %s", err)
}
if string(bytes[:]) != "" {
var occurrences []Occurrence
oErr := json.Unmarshal(bytes, &occurrences)
if oErr != nil {
p.API.LogError("Failed to unmarshal reminder occurrences " + fmt.Sprintf("%v", oErr))
return
}
hostname, _ := os.Hostname()
for _, occurrence := range occurrences {
if hostname != occurrence.Hostname {
continue
}
user, uErr := p.API.GetUserByUsername(occurrence.Username)
if uErr != nil {
p.API.LogError("failed to query user %s", user.Id)
continue
}
bytes, bErr := p.API.KVGet(user.Username)
if bErr != nil {
p.API.LogError("failed KVGet %s", bErr)
continue
}
var reminders []Reminder
rsErr := json.Unmarshal(bytes, &reminders)
if rsErr != nil {
p.API.LogError("failed json Unmarshal %s", rsErr)
continue
}
T, _ := p.translation(user)
reminder := p.findReminder(reminders, occurrence)
if reminder.Target == "" {
p.API.LogError("No target found for reminder")
continue
}
if strings.HasPrefix(reminder.Target, "@") || strings.HasPrefix(reminder.Target, T("me")) { //@user
var targetId string
if strings.HasPrefix(reminder.Target, "@") {
target := strings.Trim(reminder.Target, "@")
targetUser, tErr := p.API.GetUserByUsername(target)
if tErr != nil {
p.API.LogError("failed to find target user " + reminder.Target)
continue
}
targetId = targetUser.Id
} else {
targetId = user.Id
}
channel, cErr := p.API.GetDirectChannel(p.remindUserId, targetId)
if cErr != nil {
p.API.LogError("failed to create channel " + cErr.Error())
continue
}
finalTarget := reminder.Target
if finalTarget == T("me") {
finalTarget = T("you")
} else {
finalTarget = "@" + user.Username
}
messageParameters := map[string]interface{}{
"FinalTarget": finalTarget,
"Message": reminder.Message,
}
interactivePost := model.Post{}
if occurrence.Repeat == "" {
interactivePost = model.Post{
ChannelId: channel.Id,
PendingPostId: model.NewId() + ":" + fmt.Sprint(model.GetMillis()),
UserId: p.remindUserId,
Props: model.StringInterface{
"attachments": []*model.SlackAttachment{
{
Text: T("reminder.message", messageParameters),
Actions: []*model.PostAction{
{
Id: model.NewId(),
Integration: &model.PostActionIntegration{
Context: model.StringInterface{
"orig_user_id": user.Id,
"reminder_id": reminder.Id,
"occurrence_id": occurrence.Id,
"action": "complete",
},
URL: fmt.Sprintf("/plugins/%s/complete", manifest.ID),
},
Type: model.POST_ACTION_TYPE_BUTTON,
Name: T("button.complete"),
},
{
Integration: &model.PostActionIntegration{
Context: model.StringInterface{
"orig_user_id": user.Id,
"reminder_id": reminder.Id,
"occurrence_id": occurrence.Id,
"action": "delete",
},
URL: fmt.Sprintf("/plugins/%s/delete", manifest.ID),
},
Name: T("button.delete"),
Type: "action",
},
{
Integration: &model.PostActionIntegration{
Context: model.StringInterface{
"orig_user_id": user.Id,
"reminder_id": reminder.Id,
"occurrence_id": occurrence.Id,
"action": "snooze",
},
URL: fmt.Sprintf("/plugins/%s/snooze", manifest.ID),
},
Name: T("button.snooze"),
Type: "select",
Options: []*model.PostActionOptions{
{
Text: T("button.snooze.20min"),
Value: "20min",
},
{
Text: T("button.snooze.1hr"),
Value: "1hr",
},
{
Text: T("button.snooze.3hr"),
Value: "3hrs",
},
{
Text: T("button.snooze.tomorrow"),
Value: "tomorrow",
},
{
Text: T("button.snooze.nextweek"),
Value: "nextweek",
},
},
},
},
},
},
},
}
} else {
interactivePost = model.Post{
ChannelId: channel.Id,
PendingPostId: model.NewId() + ":" + fmt.Sprint(model.GetMillis()),
UserId: p.remindUserId,
Props: model.StringInterface{
"attachments": []*model.SlackAttachment{
{
Text: T("reminder.message", messageParameters),
Actions: []*model.PostAction{
{
Integration: &model.PostActionIntegration{
Context: model.StringInterface{
"reminder_id": reminder.Id,
"occurrence_id": occurrence.Id,
"action": "snooze",
},
URL: fmt.Sprintf("/plugins/%s/snooze", manifest.ID),
},
Name: T("button.snooze"),
Type: "select",
Options: []*model.PostActionOptions{
{
Text: T("button.snooze.20min"),
Value: "20min",
},
{
Text: T("button.snooze.1hr"),
Value: "1hr",
},
{
Text: T("button.snooze.3hr"),
Value: "3hrs",
},
{
Text: T("button.snooze.tomorrow"),
Value: "tomorrow",
},
{
Text: T("button.snooze.nextweek"),
Value: "nextweek",
},
},
},
},
},
},
},
}
}
if _, pErr := p.API.CreatePost(&interactivePost); pErr != nil {
p.API.LogError(fmt.Sprintf("%v", pErr))
continue
}
if occurrence.Repeat != "" {
defer p.rescheduleOccurrence(&occurrence)
}
} else if strings.HasPrefix(reminder.Target, "~") { //~ channel
channel, cErr := p.API.GetChannelByName(
reminder.TeamId,
strings.Replace(reminder.Target, "~", "", -1),
false,
)
if cErr != nil {
p.API.LogError("fail to get channel " + fmt.Sprintf("%v", cErr))
} else {
var messageParameters = map[string]interface{}{
"FinalTarget": "@" + user.Username,
"Message": reminder.Message,
}
interactivePost := model.Post{
ChannelId: channel.Id,
PendingPostId: model.NewId() + ":" + fmt.Sprint(model.GetMillis()),
UserId: p.remindUserId,
Message: T("reminder.message", messageParameters),
Props: model.StringInterface{},
}
if _, pErr := p.API.CreatePost(&interactivePost); pErr != nil {
p.API.LogError(fmt.Sprintf("%v", pErr))
}
if occurrence.Repeat != "" {
defer p.rescheduleOccurrence(&occurrence)
}
}
}
}
}
}
func (p *Plugin) GetReminder(userId string, reminderId string) Reminder {
user, uErr := p.API.GetUser(userId)
if uErr != nil {
return Reminder{}
}
reminders := p.GetReminders(user.Username)
for _, reminder := range reminders {
if reminder.Id == reminderId {
return reminder
}
}
return Reminder{}
}
func (p *Plugin) GetReminders(username string) []Reminder {
user, uErr := p.API.GetUserByUsername(username)
if uErr != nil {
p.API.LogError("failed to query user " + username)
return []Reminder{}
}
bytes, bErr := p.API.KVGet(user.Username)
if bErr != nil {
p.API.LogError("failed KVGet " + bErr.Error())
return []Reminder{}
}
var reminders []Reminder
err := json.Unmarshal(bytes, &reminders)
if err != nil {
p.API.LogError("no reminders for " + user.Username)
}
return reminders
}
func (p *Plugin) UpdateReminder(userId string, reminder Reminder) error {
user, uErr := p.API.GetUser(userId)
if uErr != nil {
p.API.LogError("failed to query user %s", user.Username)
return uErr
}
bytes, bErr := p.API.KVGet(user.Username)
if bErr != nil {
p.API.LogError("failed KVGet %s", bErr)
return bErr
}
var reminders []Reminder
if err := json.Unmarshal(bytes, &reminders); err != nil {
return err
}
updatedReminders := []Reminder{}
for _, r := range reminders {
if r.Id == reminder.Id {
updatedReminders = append(updatedReminders, reminder)
} else {
updatedReminders = append(updatedReminders, r)
}
}
ro, rErr := json.Marshal(updatedReminders)
if rErr != nil {
p.API.LogError("failed to marshal reminders %s", user.Username)
return rErr
}
p.API.KVSet(user.Username, ro)
return nil
}
func (p *Plugin) UpsertReminder(request *ReminderRequest) error {
user, uErr := p.API.GetUserByUsername(request.Username)
if uErr != nil {
p.API.LogError("failed to query user %s", request.Username)
return uErr
}
bytes, bErr := p.API.KVGet(user.Username)
if bErr != nil {
p.API.LogError("failed KVGet %s", bErr)
return bErr
}
var reminders []Reminder
err := json.Unmarshal(bytes, &reminders)
if err != nil {
p.API.LogDebug("new reminder " + user.Username)
}
duplicateReminder := false
// a feature requested by PM. seems to create undesired results
//for _, r := range reminders {
// r.Id = request.Reminder.Id
// if r.Username == request.Reminder.Username &&
// r.Target == request.Reminder.Target &&
// r.Message == request.Reminder.Message &&
// r.When == request.Reminder.When {
// duplicateReminder = true
// break
// }
//}
if !duplicateReminder {
reminders = append(reminders, request.Reminder)
}
ro, rErr := json.Marshal(reminders)
if rErr != nil {
p.API.LogError("failed to marshal reminders %s", user.Username)
return rErr
}
p.API.KVSet(user.Username, ro)
return nil
}
func (p *Plugin) DeleteReminder(userId string, reminder Reminder) error {
user, uErr := p.API.GetUser(userId)
if uErr != nil {
p.API.LogError("failed to query user %s", user.Username)
return uErr
}
bytes, bErr := p.API.KVGet(user.Username)
if bErr != nil {
p.API.LogError("failed KVGet %s", bErr)
return bErr
}
var reminders []Reminder
if err := json.Unmarshal(bytes, &reminders); err != nil {
return err
}
var prunedReminders []Reminder
for _, r := range reminders {
if r.Id != reminder.Id {
prunedReminders = append(prunedReminders, r)
}
}
ro, rErr := json.Marshal(prunedReminders)
if rErr != nil {
p.API.LogError("failed to marshal reminders %s", user.Username)
return rErr
}
p.API.KVSet(user.Username, ro)
return nil
}
func (p *Plugin) DeleteReminders(user *model.User) string {
T, _ := p.translation(user)
bytes, bErr := p.API.KVGet(user.Username)
if bErr != nil {
p.API.LogError("failed KVGet %s", bErr)
return T("exception.response")
}
var reminders []Reminder
if err := json.Unmarshal(bytes, &reminders); err != nil {
p.API.LogError("failed json unmarshal %s", bErr)
return T("exception.reponse")
}
for _, r := range reminders {
for _, o := range r.Occurrences {
if o.Snoozed != p.emptyTime && r.Completed != p.emptyTime {
p.deleteSnoozedOccurrence(o)
} else if o.Occurrence != p.emptyTime && r.Completed != p.emptyTime {
p.deleteOccurrence(o)
}
}
}
dErr := p.API.KVDelete(user.Username)
if dErr != nil {
p.API.LogError("failed KVDelete %s", dErr)
return T("exception.response")
}
return T("clear.response")
}
func (p *Plugin) rescheduleOccurrence(occurrence *Occurrence) {
time.Sleep(1000 * time.Millisecond)
user, _ := p.API.GetUserByUsername(occurrence.Username)
_, locale := p.translation(user)
var times []time.Time
switch locale {
case "en":
times, _ = p.rescheduleOccurrenceEN(occurrence)
default:
times, _ = p.rescheduleOccurrenceEN(occurrence)
}
if len(times) > 1 {
for _, ts := range times {
if ts.Weekday() == occurrence.Occurrence.Weekday() {
occurrence.Occurrence = ts
p.upsertOccurrence(occurrence)
return
}
}
} else {
occurrence.Occurrence = times[0]
p.upsertOccurrence(occurrence)
}
bytes, bErr := p.API.KVGet(user.Username)
if bErr != nil {
p.API.LogError("failed KVGet %s", bErr)
}
var reminders []Reminder
rsErr := json.Unmarshal(bytes, &reminders)
if rsErr != nil {
p.API.LogError("failed json Unmarshal %s", rsErr)
}
reminder := p.findReminder(reminders, *occurrence)
updatedOccurrences := []Occurrence{}
for _, o := range reminder.Occurrences {
if o.Id == occurrence.Id {
updatedOccurrences = append(updatedOccurrences, *occurrence)
} else {
updatedOccurrences = append(updatedOccurrences, o)
}
}
reminder.Occurrences = updatedOccurrences
p.UpdateReminder(user.Id, reminder)
}
func (p *Plugin) rescheduleOccurrenceEN(occurrence *Occurrence) ([]time.Time, error) {
user, _ := p.API.GetUserByUsername(occurrence.Username)
T, _ := p.translation(user)
if strings.HasPrefix(occurrence.Repeat, T("in")) {
return p.in(occurrence.Repeat, user)
} else if strings.HasPrefix(occurrence.Repeat, T("at")) {
return p.at(occurrence.Repeat, user)
} else if strings.HasPrefix(occurrence.Repeat, T("on")) {
return p.on(occurrence.Repeat, user)
} else if strings.HasPrefix(occurrence.Repeat, T("every")) {
return p.every(occurrence.Repeat, user)
} else {
return p.freeForm(occurrence.Repeat, user)
}
}
func (p *Plugin) findReminder(reminders []Reminder, occurrence Occurrence) Reminder {
for _, reminder := range reminders {
if reminder.Id == occurrence.ReminderId {
return reminder
}
}
return Reminder{}
}