-
Notifications
You must be signed in to change notification settings - Fork 0
/
auth.go
100 lines (82 loc) · 2.72 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
// auth.go
package main
import (
"bytes"
"encoding/json"
"fmt"
"io"
"net/http"
"time"
)
// getAuthToken gets or refreshes the authentication token as necessary.
func (hm *HeatingManager) getAuthToken() error {
// Wenn kein Token vorhanden ist, führe einen Login durch
if hm.Token == "" {
return hm.login()
}
// Wenn das Token vorhanden ist, aber abgelaufen, führe einen Refresh durch
if time.Now().After(hm.TokenExpiry) {
return hm.refreshToken()
}
// Wenn das Token vorhanden und gültig ist, mache nichts
return nil
}
func (hm *HeatingManager) login() error {
url := "https://cloud.solar-manager.ch/v1/oauth/login"
credentials := map[string]string{
"email": hm.Config.Username,
"password": hm.Config.Password,
}
credentialsJSON, err := json.Marshal(credentials)
if err != nil {
return fmt.Errorf("error marshalling credentials: %v", err)
}
resp, err := http.Post(url, "application/json", bytes.NewBuffer(credentialsJSON))
if err != nil {
return fmt.Errorf("error making auth request: %v", err)
}
defer resp.Body.Close()
if resp.StatusCode != http.StatusOK {
body, _ := io.ReadAll(resp.Body)
return fmt.Errorf("authentication failed: status code %d, body: %s", resp.StatusCode, string(body))
}
var result struct {
AccessToken string `json:"accessToken"`
ExpiresIn int `json:"expiresIn"` // Die Dauer bis zum Ablauf des Tokens in Sekunden
}
if err := json.NewDecoder(resp.Body).Decode(&result); err != nil {
return fmt.Errorf("error decoding auth response: %v", err)
}
hm.Token = result.AccessToken
// Setze das Ablaufdatum basierend auf dem aktuellen Zeitpunkt plus der Gültigkeitsdauer des Tokens
hm.TokenExpiry = time.Now().Add(time.Duration(result.ExpiresIn) * time.Second)
return nil
}
// refreshToken refreshes the authentication token.
func (hm *HeatingManager) refreshToken() error {
url := "https://cloud.solar-manager.ch/v1/oauth/refresh"
req, err := http.NewRequest("POST", url, nil)
if err != nil {
return fmt.Errorf("error creating refresh request: %v", err)
}
req.Header.Add("Authorization", fmt.Sprintf("Bearer %s", hm.Token))
client := &http.Client{}
resp, err := client.Do(req)
if err != nil {
return fmt.Errorf("error executing refresh request: %v", err)
}
defer resp.Body.Close()
if resp.StatusCode != http.StatusOK {
return fmt.Errorf("failed to refresh token: status code %d", resp.StatusCode)
}
var result struct {
AccessToken string `json:"accessToken"`
ExpiresIn int `json:"expiresIn"`
}
if err := json.NewDecoder(resp.Body).Decode(&result); err != nil {
return fmt.Errorf("error decoding refresh response: %v", err)
}
hm.Token = result.AccessToken
hm.TokenExpiry = time.Now().Add(time.Duration(result.ExpiresIn) * time.Second)
return nil
}