Add support for recurring events and add year to channel name (#3)

This commit is contained in:
2023-03-05 13:08:18 -05:00
committed by GitHub
parent 97c9006fef
commit 228c293b70
7 changed files with 81 additions and 15 deletions

View File

@@ -10,11 +10,14 @@ import (
const REMOTE_LOCATION string = "online"
type Event struct {
Name string
ID string
Location string
Completed bool
DateTime time.Time
Name string
ID string
Location string
Completed bool
DateTime time.Time
CompleteTime time.Time
Description string
Image string
Organizer *User
}
@@ -25,8 +28,9 @@ func (event *Event) Channel() *Channel {
month := event.GetMonthPrefix()
day := event.DateTime.Day()
city := event.GetCityFromLocation()
year := event.DateTime.Year()
channel := fmt.Sprint(month, "-", day, city, "-", event.Name)
channel := fmt.Sprint(month, "-", day, city, "-", event.Name, "-", year)
channel = strings.ReplaceAll(channel, " ", "-")
channel = strings.ToLower(channel)