mirror of
https://github.com/taigrr/wtf
synced 2025-01-18 04:03:14 -08:00
* Another actions test Signed-off-by: Chris Cummer <chriscummer@me.com> * Add BuildTest action Signed-off-by: Chris Cummer <chriscummer@me.com> * Remove lint check for the time being (so many issues) Signed-off-by: Chris Cummer <chriscummer@me.com> * Fix issues found by errcheck Signed-off-by: Chris Cummer <chriscummer@me.com> * Fix errors found by staticcheck Signed-off-by: Chris Cummer <chriscummer@me.com> * Fix issues found by goimports Signed-off-by: Chris Cummer <chriscummer@me.com> * Comment out the action for the time being Signed-off-by: Chris Cummer <chriscummer@me.com> * Fix shadowed variables Signed-off-by: Chris Cummer <chriscummer@me.com> * go mod tidy Signed-off-by: Chris Cummer <chriscummer@me.com> * Remove buildtest.yml Signed-off-by: Chris Cummer <chriscummer@me.com> * go mod tidy Signed-off-by: Chris Cummer <chriscummer@me.com>
226 lines
6.0 KiB
Go
226 lines
6.0 KiB
Go
/*
|
|
* This butt-ugly code is direct from Google itself
|
|
* https://developers.google.com/calendar/quickstart/go
|
|
*
|
|
* With some changes by me to improve things a bit.
|
|
*/
|
|
|
|
package gcal
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
"fmt"
|
|
"io/ioutil"
|
|
"log"
|
|
"net/http"
|
|
"os"
|
|
"path/filepath"
|
|
"sort"
|
|
"time"
|
|
|
|
"github.com/wtfutil/wtf/cfg"
|
|
"github.com/wtfutil/wtf/utils"
|
|
"golang.org/x/oauth2"
|
|
"golang.org/x/oauth2/google"
|
|
"google.golang.org/api/calendar/v3"
|
|
"google.golang.org/api/option"
|
|
)
|
|
|
|
/* -------------------- Exported Functions -------------------- */
|
|
|
|
func (widget *Widget) Fetch() ([]*CalEvent, error) {
|
|
ctx := context.Background()
|
|
|
|
secretPath, _ := utils.ExpandHomeDir(widget.settings.secretFile)
|
|
|
|
b, err := ioutil.ReadFile(filepath.Clean(secretPath))
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
config, err := google.ConfigFromJSON(b, calendar.CalendarReadonlyScope)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
client := getClient(ctx, config)
|
|
|
|
srv, err := calendar.NewService(context.Background(), option.WithHTTPClient(client))
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
// Get calendar events
|
|
var events calendar.Events
|
|
|
|
startTime := fromMidnight().Format(time.RFC3339)
|
|
eventLimit := int64(widget.settings.eventCount)
|
|
|
|
timezone := widget.settings.timezone
|
|
|
|
calendarIDs, err := widget.getCalendarIdList(srv)
|
|
for _, calendarID := range calendarIDs {
|
|
calendarEvents, listErr := srv.Events.List(calendarID).TimeZone(timezone).ShowDeleted(false).TimeMin(startTime).MaxResults(eventLimit).SingleEvents(true).OrderBy("startTime").Do()
|
|
if listErr != nil {
|
|
break
|
|
}
|
|
events.Items = append(events.Items, calendarEvents.Items...)
|
|
}
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
// Sort events
|
|
timeDateChooser := func(event *calendar.Event) (time.Time, error) {
|
|
if len(event.Start.Date) > 0 {
|
|
return time.Parse("2006-01-02", event.Start.Date)
|
|
}
|
|
|
|
return time.Parse(time.RFC3339, event.Start.DateTime)
|
|
}
|
|
|
|
sort.Slice(events.Items, func(i, j int) bool {
|
|
dateA, _ := timeDateChooser(events.Items[i])
|
|
dateB, _ := timeDateChooser(events.Items[j])
|
|
return dateA.Before(dateB)
|
|
})
|
|
|
|
// Wrap the calendar events in our custom CalEvent
|
|
calEvents := []*CalEvent{}
|
|
for _, event := range events.Items {
|
|
calEvents = append(calEvents, NewCalEvent(event))
|
|
}
|
|
|
|
return calEvents, err
|
|
}
|
|
|
|
/* -------------------- Unexported Functions -------------------- */
|
|
|
|
func fromMidnight() time.Time {
|
|
now := time.Now()
|
|
return time.Date(now.Year(), now.Month(), now.Day(), 0, 0, 0, 0, now.Location())
|
|
}
|
|
|
|
// getClient uses a Context and Config to retrieve a Token
|
|
// then generate a Client. It returns the generated Client.
|
|
func getClient(ctx context.Context, config *oauth2.Config) *http.Client {
|
|
cacheFile, err := tokenCacheFile()
|
|
if err != nil {
|
|
log.Fatalf("Unable to get path to cached credential file. %v", err)
|
|
}
|
|
tok, err := tokenFromFile(cacheFile)
|
|
if err != nil {
|
|
tok = getTokenFromWeb(config)
|
|
saveToken(cacheFile, tok)
|
|
}
|
|
return config.Client(ctx, tok)
|
|
}
|
|
|
|
func isAuthenticated() bool {
|
|
cacheFile, err := tokenCacheFile()
|
|
if err != nil {
|
|
log.Fatalf("Unable to get path to cached credential file. %v", err)
|
|
}
|
|
_, err = tokenFromFile(cacheFile)
|
|
return err == nil
|
|
}
|
|
|
|
func (widget *Widget) authenticate() {
|
|
secretPath, _ := utils.ExpandHomeDir(filepath.Clean(widget.settings.secretFile))
|
|
|
|
b, err := ioutil.ReadFile(filepath.Clean(secretPath))
|
|
if err != nil {
|
|
log.Fatalf("Unable to read secret file. %v", widget.settings.secretFile)
|
|
}
|
|
|
|
config, _ := google.ConfigFromJSON(b, calendar.CalendarReadonlyScope)
|
|
tok := getTokenFromWeb(config)
|
|
cacheFile, _ := tokenCacheFile()
|
|
saveToken(cacheFile, tok)
|
|
}
|
|
|
|
// getTokenFromWeb uses Config to request a Token.
|
|
// It returns the retrieved Token.
|
|
func getTokenFromWeb(config *oauth2.Config) *oauth2.Token {
|
|
authURL := config.AuthCodeURL("state-token", oauth2.AccessTypeOffline)
|
|
fmt.Printf("Go to the following link in your browser then type the "+
|
|
"authorization code: \n%v (press 'return' before inserting the code)", authURL)
|
|
|
|
var code string
|
|
if _, err := fmt.Scan(&code); err != nil {
|
|
log.Fatalf("Unable to read authorization code %v", err)
|
|
}
|
|
|
|
tok, err := config.Exchange(context.Background(), code)
|
|
if err != nil {
|
|
log.Fatalf("Unable to retrieve token from web %v", err)
|
|
}
|
|
return tok
|
|
}
|
|
|
|
// tokenCacheFile generates credential file path/filename.
|
|
// It returns the generated credential path/filename.
|
|
func tokenCacheFile() (string, error) {
|
|
return cfg.CreateFile("gcal-auth.json")
|
|
}
|
|
|
|
// tokenFromFile retrieves a Token from a given file path.
|
|
// It returns the retrieved Token and any read error encountered.
|
|
func tokenFromFile(file string) (*oauth2.Token, error) {
|
|
f, err := os.Open(filepath.Clean(file))
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
t := &oauth2.Token{}
|
|
err = json.NewDecoder(f).Decode(t)
|
|
defer func() { _ = f.Close() }()
|
|
|
|
return t, err
|
|
}
|
|
|
|
// saveToken uses a file path to create a file and store the
|
|
// token in it.
|
|
func saveToken(file string, token *oauth2.Token) {
|
|
fmt.Printf("Saving credential file to: %s\n", file)
|
|
f, err := os.OpenFile(file, os.O_RDWR|os.O_CREATE|os.O_TRUNC, 0600)
|
|
if err != nil {
|
|
log.Fatalf("unable to cache oauth token: %v", err)
|
|
}
|
|
defer func() { _ = f.Close() }()
|
|
|
|
err = json.NewEncoder(f).Encode(token)
|
|
if err != nil {
|
|
log.Fatalf("unable to encode oauth token: %v", err)
|
|
}
|
|
}
|
|
|
|
func (widget *Widget) getCalendarIdList(srv *calendar.Service) ([]string, error) {
|
|
// Return single calendar if settings specify we should
|
|
if !widget.settings.multiCalendar {
|
|
id, err := srv.CalendarList.Get("primary").Do()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return []string{id.Id}, nil
|
|
}
|
|
|
|
// Get all user calendars with at the least writing access
|
|
var calendarIds []string
|
|
var pageToken string
|
|
for {
|
|
calendarList, err := srv.CalendarList.List().ShowHidden(false).MinAccessRole(widget.settings.calendarReadLevel).PageToken(pageToken).Do()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
for _, calendarListItem := range calendarList.Items {
|
|
calendarIds = append(calendarIds, calendarListItem.Id)
|
|
}
|
|
|
|
pageToken = calendarList.NextPageToken
|
|
if pageToken == "" {
|
|
break
|
|
}
|
|
}
|
|
return calendarIds, nil
|
|
}
|