-
Notifications
You must be signed in to change notification settings - Fork 597
/
session.go
61 lines (53 loc) · 1.6 KB
/
session.go
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
package fitbit
import (
"encoding/json"
"errors"
"time"
"github.com/markbates/goth"
"golang.org/x/oauth2"
)
// Session stores data during the auth process with Fitbit.
type Session struct {
AuthURL string
AccessToken string
RefreshToken string
ExpiresAt time.Time
UserID string
}
// GetAuthURL will return the URL set by calling the `BeginAuth` function on the
// Fitbit provider.
func (s Session) GetAuthURL() (string, error) {
if s.AuthURL == "" {
return "", errors.New(goth.NoAuthUrlErrorMessage)
}
return s.AuthURL, nil
}
// Authorize completes the authorization with Fitbit and returns the access
// token to be stored for future use.
func (s *Session) Authorize(provider goth.Provider, params goth.Params) (string, error) {
p := provider.(*Provider)
token, err := p.config.Exchange(oauth2.NoContext, params.Get("code"), oauth2.SetAuthURLParam("code_verifier", params.Get("code_verifier")))
if err != nil {
return "", err
}
s.AccessToken = token.AccessToken
s.RefreshToken = token.RefreshToken
s.ExpiresAt = token.Expiry
s.UserID = token.Extra("user_id").(string)
return token.AccessToken, err
}
// Marshal marshals a session into a JSON string.
func (s Session) Marshal() string {
j, _ := json.Marshal(s)
return string(j)
}
// String is equivalent to Marshal. It returns a JSON representation of the session.
func (s Session) String() string {
return s.Marshal()
}
// UnmarshalSession will unmarshal a JSON string into a session.
func (p *Provider) UnmarshalSession(data string) (goth.Session, error) {
s := Session{}
err := json.Unmarshal([]byte(data), &s)
return &s, err
}