2024-03-27 23:08:40 +00:00
|
|
|
package cif
|
|
|
|
|
|
|
|
import (
|
2024-03-27 23:35:03 +00:00
|
|
|
"errors"
|
2024-03-27 23:08:40 +00:00
|
|
|
"time"
|
|
|
|
|
|
|
|
"git.fjla.uk/owlboard/timetable-mgr/log"
|
|
|
|
"go.uber.org/zap"
|
|
|
|
)
|
|
|
|
|
2024-03-30 01:09:12 +00:00
|
|
|
// Fetches the day string for the provided date.
|
|
|
|
func getDayString(t time.Time) string {
|
2024-03-27 23:08:40 +00:00
|
|
|
london, err := time.LoadLocation("Europe/London")
|
|
|
|
if err != nil {
|
|
|
|
log.Msg.Error("Unable to load time zone info", zap.Error(err))
|
|
|
|
}
|
|
|
|
|
2024-03-30 01:09:12 +00:00
|
|
|
timeNow := t.In(london)
|
2024-03-27 23:08:40 +00:00
|
|
|
day := timeNow.Weekday()
|
|
|
|
|
|
|
|
dayStrings := [...]string{"sun", "mon", "tue", "wed", "thu", "fri", "sat"}
|
|
|
|
|
|
|
|
return dayStrings[day]
|
|
|
|
}
|
2024-03-27 23:35:03 +00:00
|
|
|
|
2024-03-29 14:01:57 +00:00
|
|
|
// Simply returns the correct URL for either a 'daily' or 'full' update.
|
2024-03-27 23:35:03 +00:00
|
|
|
func getUpdateUrl(updateType string) (string, error) {
|
|
|
|
if updateType == "daily" {
|
2024-03-30 01:09:12 +00:00
|
|
|
return dailyUpdateUrl, nil
|
2024-03-27 23:35:03 +00:00
|
|
|
} else if updateType == "full" {
|
|
|
|
return fullUpdateUrl, nil
|
|
|
|
}
|
2024-03-28 22:47:08 +00:00
|
|
|
err := errors.New("invalid update type provided, must be one of 'daily' or 'full'")
|
2024-03-27 23:35:03 +00:00
|
|
|
return "", err
|
|
|
|
}
|
2024-03-30 01:09:12 +00:00
|
|
|
|
|
|
|
// Takes a time.Time as input and returns True if it is
|
|
|
|
// the same day as now, or false if it is not the same day as now
|
|
|
|
func isSameToday(t time.Time) bool {
|
2024-04-04 13:58:18 +01:00
|
|
|
test := t.In(time.UTC)
|
2024-03-30 01:09:12 +00:00
|
|
|
today := time.Now().In(time.UTC)
|
2024-04-04 13:58:18 +01:00
|
|
|
return test.Year() == today.Year() && test.Month() == today.Month() && test.Day() == today.Day()
|
2024-03-30 01:09:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Returns how many days ago `t` was compared to today
|
|
|
|
func howManyDaysAgo(t time.Time) int {
|
|
|
|
today := time.Now().In(time.UTC).Truncate(24 * time.Hour)
|
|
|
|
input := t.In(time.UTC).Truncate(24 * time.Hour)
|
|
|
|
|
|
|
|
diff := today.Sub(input)
|
|
|
|
days := int(diff.Hours() / 24)
|
|
|
|
return days
|
|
|
|
}
|