This repository was archived by the owner on Mar 7, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathevent.go
More file actions
74 lines (65 loc) · 1.48 KB
/
event.go
File metadata and controls
74 lines (65 loc) · 1.48 KB
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
package main
import (
"log"
"time"
calendar "code.google.com/p/google-api-go-client/calendar/v3"
)
const dateTimeFormat = "2006-01-02T15:04:05Z07:00"
type Event struct {
Source *calendar.Event
}
func (e Event) Name() string {
return e.Source.Summary
}
func (e Event) Creator() string {
if e.Source.Creator != nil {
return e.Source.Creator.DisplayName
}
return ""
}
func (e Event) Visibility() string {
if e.Source.Visibility == "private" || e.Source.Summary == "" {
return "private"
}
return "public"
}
func (e Event) StartAt() time.Time {
if e.Source.Start != nil {
if e.Source.Start.DateTime != "" {
t, err := time.Parse(dateTimeFormat, e.Source.Start.DateTime)
if err != nil {
log.Fatal("error parsing time:", e.Source.End.DateTime, err)
} else {
return t
}
} else if e.Source.Start.Date != "" {
t, err := time.Parse("2006-01-02", e.Source.Start.Date)
if err != nil {
log.Fatal("error parsing time:", err)
} else {
return t
}
}
}
return time.Time{}
}
func (e Event) EndAt() time.Time {
if e.Source.End != nil {
if e.Source.End.DateTime != "" {
t, err := time.Parse(dateTimeFormat, e.Source.End.DateTime)
if err != nil {
log.Fatal("error parsing time:", e.Source.End.DateTime, err)
} else {
return t
}
} else if e.Source.End.Date != "" {
t, err := time.Parse("2006-01-02", e.Source.End.Date)
if err != nil {
log.Fatal("error parsing time:", err)
} else {
return t
}
}
}
return time.Time{}
}