This repository was archived by the owner on Apr 2, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathauth.go
102 lines (93 loc) · 2.82 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
package edgecli
import (
"bytes"
"encoding/json"
"errors"
"fmt"
log "github.com/sirupsen/logrus"
"net/http"
)
type AuthResp struct {
Token string `json:"token"`
RefreshToken string `json:"refreshToken"`
}
type AuthMethod string
const (
LoginBySecretKey AuthMethod = "LoginBySecretKey"
LoginByPassword AuthMethod = "LoginByPassword"
)
type AuthOption struct {
Username string
Password string
SecretKey string
AuthMethod AuthMethod
}
type RefreshTokenOption struct {
RefreshToken string
}
type AuthService struct {
HttpOption
}
func (s *AuthService) Login(opt *AuthOption) (*AuthResp, error) {
var url string
var body map[string]string
if opt.AuthMethod == LoginByPassword {
url = s.BaseUrl + "/auth/login/password"
body = map[string]string{
"email": opt.Username,
"password": opt.Password,
}
}
if opt.AuthMethod == LoginBySecretKey {
url = s.BaseUrl + "/auth/login/security-key"
body = map[string]string{
"key": opt.SecretKey,
}
}
postBody, _ := json.Marshal(body)
req, _ := http.NewRequest("POST", url, bytes.NewBuffer(postBody))
req.Header.Set("content-type", "application/json")
resp, _ := HandleCall(req)
log.Tracef("LoginByPassword response %+v", resp)
switch resp.(type) {
case *SuccessResponse:
authJson, _ := json.Marshal(resp.(*SuccessResponse).Data)
auth := AuthResp{}
if err := json.Unmarshal(authJson, &auth); err != nil {
return nil, errors.New(fmt.Sprintf("Fail to unmarshal response's data ,err is %+v", err))
}
log.Debugf("auth token is %+v", auth)
return &auth, nil
case *ErrorResponse:
return nil, errors.New(fmt.Sprintf("Fail to login, error message: %s", resp.(*ErrorResponse).Message))
default:
return nil, errors.New(fmt.Sprint("This client has some unpredictable problems, please contact the omniedge team."))
}
}
func (s *AuthService) Refresh(opt *RefreshTokenOption) (*AuthResp, error) {
var url string
var body map[string]string
url = s.BaseUrl + "/auth/refresh"
body = map[string]string{
"refresh_token": opt.RefreshToken,
}
postBody, _ := json.Marshal(body)
req, _ := http.NewRequest("POST", url, bytes.NewBuffer(postBody))
req.Header.Set("content-type", "application/json")
resp, _ := HandleCall(req)
log.Tracef("RefreshToken response %+v", resp)
switch resp.(type) {
case *SuccessResponse:
authJson, _ := json.Marshal(resp.(*SuccessResponse).Data)
auth := AuthResp{}
if err := json.Unmarshal(authJson, &auth); err != nil {
return nil, errors.New(fmt.Sprintf("Fail to unmarshal response's data ,err is %+v", err))
}
log.Debugf("auth token is %+v", auth)
return &auth, nil
case *ErrorResponse:
return nil, errors.New(fmt.Sprintf("Fail to login, error message: %s", resp.(*ErrorResponse).Message))
default:
return nil, errors.New(fmt.Sprint("This client has some unpredictable problems, please contact the omniedge team."))
}
}