1
0
mirror of https://github.com/taigrr/wtf synced 2025-01-18 04:03:14 -08:00

Cleaner GCal code

This commit is contained in:
Chris Cummer
2018-04-09 17:36:43 -07:00
committed by Chris Cummer
parent 830c790081
commit 2ef5b9d7ed
2 changed files with 8 additions and 12 deletions

View File

@@ -18,6 +18,7 @@ import (
"time"
"github.com/senorprogrammer/wtf/homedir"
"github.com/senorprogrammer/wtf/wtf"
"golang.org/x/net/context"
"golang.org/x/oauth2"
"golang.org/x/oauth2/google"
@@ -47,7 +48,7 @@ func Fetch() (*calendar.Events, error) {
return nil, err
}
t := today().Format(time.RFC3339)
t := wtf.Today().Format(time.RFC3339)
events, err := srv.Events.List("primary").ShowDeleted(false).SingleEvents(true).TimeMin(t).MaxResults(int64(Config.UInt("wtf.gcal.eventCount", 10))).OrderBy("startTime").Do()
if err != nil {
return nil, err
@@ -130,8 +131,3 @@ func saveToken(file string, token *oauth2.Token) {
json.NewEncoder(f).Encode(token)
}
func today() time.Time {
now := time.Now()
return time.Date(now.Year(), now.Month(), now.Day(), 0, 0, 0, 0, now.Location())
}