forked from SoMuchForSubtlety/f1viewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
auth.go
224 lines (195 loc) · 5.41 KB
/
auth.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
package main
import (
"bytes"
"encoding/json"
"errors"
"fmt"
"io/ioutil"
"net/http"
"github.com/SoMuchForSubtlety/keyring"
)
const (
identityProvider = "/api/identity-providers/iden_732298a17f9c458890a1877880d140f3/"
authURL = "https://api.formula1.com/v2/account/subscriber/authenticate/by-password"
getTokenURL = "https://f1tv-api.formula1.com/agl/1.0/unk/en/all_devices/global/authenticate"
apiKey = "fCUCjWrKPu9ylJwRAv8BpGLEgiAuThx7"
)
type authResponse struct {
Data struct {
SubscriptionStatus string `json:"subscriptionStatus"`
SubscriptionToken string `json:"subscriptionToken"`
} `json:"data"`
}
type tokenResponse struct {
PlanUrls []string `json:"plan_urls"`
Token string `json:"token"`
UserIsVip bool `json:"user_is_vip"`
Oauth2AccessToken string `json:"oauth2_access_token"`
}
func (session *viewerSession) login() (string, error) {
auth, err := authenticate(session.username, session.password)
if err != nil {
return "", fmt.Errorf("could not log in: %w", err)
}
token, err := getToken(auth.Data.SubscriptionToken)
if err != nil {
return "", fmt.Errorf("could not authenticate in: %w", err)
}
return token.Token, nil
}
func (session *viewerSession) logout() {
err := session.removeCredentials()
if err != nil {
session.logError("Failed to log out:", err)
} else {
session.logInfo("logged out!")
}
session.authtoken = ""
}
func authenticate(username, password string) (authResponse, error) {
type request struct {
Login string `json:"Login"`
Password string `json:"Password"`
}
header := http.Header{}
header["apiKey"] = []string{apiKey}
respBody, err := post(request{Login: username, Password: password}, authURL, header)
if err != nil {
return authResponse{}, err
}
var auth authResponse
err = json.Unmarshal(respBody, &auth)
return auth, err
}
func getToken(accessToken string) (tokenResponse, error) {
type request struct {
IdentityProviderURL string `json:"identity_provider_url"`
AccessToken string `json:"access_token"`
}
// TODO: double ckeck auth providers
respBody, err := post(request{IdentityProviderURL: identityProvider, AccessToken: accessToken}, getTokenURL, http.Header{})
if err != nil {
return tokenResponse{}, err
}
var token tokenResponse
err = json.Unmarshal(respBody, &token)
return token, err
}
func post(content interface{}, url string, header http.Header) ([]byte, error) {
body, err := json.Marshal(content)
if err != nil {
return nil, err
}
req, err := http.NewRequest(http.MethodPost, url, bytes.NewReader(body))
if err != nil {
return nil, err
}
req.Header = header
client := &http.Client{}
resp, err := client.Do(req)
if err != nil {
return nil, err
}
defer resp.Body.Close()
err = checkResponse(resp)
if err != nil {
return nil, err
}
return ioutil.ReadAll(resp.Body)
}
func checkResponse(resp *http.Response) error {
if resp.StatusCode < 200 || resp.StatusCode >= 300 {
respString, err := ioutil.ReadAll(resp.Body)
if err != nil || string(respString) == "" {
return fmt.Errorf("got status %s", resp.Status)
}
return fmt.Errorf("got status %s with body:\n%s", resp.Status, respString)
}
return nil
}
func (session *viewerSession) testAuth() {
token, err := session.login()
if err != nil {
session.logError(err)
} else {
session.authtoken = token
session.logInfo("login successful!")
}
}
func (session *viewerSession) openRing() error {
ring, err := keyring.Open(keyring.Config{
ServiceName: "f1viewer",
AllowedBackends: []keyring.BackendType{
keyring.KWalletBackend,
keyring.PassBackend,
keyring.SecretServiceBackend,
keyring.KeychainBackend,
keyring.WinCredBackend,
},
})
if err != nil {
return err
}
session.ring = ring
return nil
}
func (session *viewerSession) loadCredentials() error {
if session.ring == nil {
return errors.New("No keyring configured")
}
username, err := session.ring.Get("username")
if err != nil {
return fmt.Errorf("Could not get username: %w", err)
}
session.username = string(username.Data)
password, err := session.ring.Get("password")
if err != nil {
return fmt.Errorf("Could not get password: %w", err)
}
session.password = string(password.Data)
return nil
}
func (session *viewerSession) saveCredentials() error {
if session.ring == nil {
return errors.New("No keyring configured")
}
err := session.ring.Set(keyring.Item{
Description: "F1TV username",
Key: "username",
Data: []byte(session.username),
})
if err != nil {
return fmt.Errorf("[ERROR] could not save username credentials %w", err)
}
err = session.ring.Set(keyring.Item{
Description: "F1TV password",
Key: "password",
Data: []byte(session.password),
})
if err != nil {
return fmt.Errorf("[ERROR] could not save password credentials %w", err)
}
return nil
}
func (session *viewerSession) removeCredentials() error {
if session.ring == nil {
return errors.New("No keyring configured")
}
err := session.ring.Remove("username")
if err != nil {
return fmt.Errorf("Could not remove username: %w", err)
}
session.username = ""
err = session.ring.Remove("password")
if err != nil {
return fmt.Errorf("Could not remove password: %w", err)
}
session.password = ""
return nil
}
func (session *viewerSession) updateUsername(username string) {
session.username = username
}
func (session *viewerSession) updatePassword(password string) {
session.password = password
}