-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathapi_oauth.go
142 lines (114 loc) · 3.78 KB
/
api_oauth.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
package sdk
import (
"encoding/base64"
"errors"
"fmt"
"strings"
"time"
api "github.com/myussufz/fasthttp-api"
)
// ResponseGetTokenInfoByAuthorizationCode :
type ResponseGetTokenInfoByAuthorizationCode struct {
Active bool `json:"active"`
ClientID string `json:"clientId"`
Exp uint64 `json:"exp"`
Scopes []string `json:"scopes"`
Username string `json:"username"`
}
// GetAuthorizationCodeURL :
func (c Client) GetAuthorizationCodeURL(state, redirectURL string, scopes ...string) string {
return fmt.Sprintf("%s/authorize?responseType=code&clientId=%s&redirectUri=%s&scope=%s&state=%s", c.getOAuthURL(), c.ID, redirectURL, strings.Join(scopes, ","), state)
}
// GetAccessTokenByClientCredentials :
func (c Client) GetAccessTokenByClientCredentials() (*Token, error) {
tk := new(Token)
method := pathOAuthPathTokenURL.method
requestURL := c.prepareOAuthURL(pathOAuthPathTokenURL)
if err := api.Fetch(requestURL, api.Option{
Method: method,
Headers: map[string]string{
"Authorization": fmt.Sprintf("Basic %s", base64.StdEncoding.EncodeToString([]byte(fmt.Sprintf("%s:%s", c.ID, c.Secret)))),
},
Body: map[string]interface{}{
"grantType": "client_credentials",
},
}).ToJSON(&tk); err != nil || tk.Err != nil {
switch {
case tk.Err != nil:
return nil, errors.New(tk.Err.Message)
default:
return nil, err
}
}
tk.ExpiredDateTime = time.Now().UTC().Add(time.Second * time.Duration(tk.ExpiresIn-60))
return tk, nil
}
// GetAccessTokenByRefreshToken :
func (c Client) GetAccessTokenByRefreshToken(refreshToken string) (*Token, error) {
tk := new(Token)
method := pathOAuthPathTokenURL.method
requestURL := c.prepareOAuthURL(pathOAuthPathTokenURL)
if err := api.Fetch(requestURL, api.Option{
Method: method,
Headers: map[string]string{
"Authorization": fmt.Sprintf("Basic %s", base64.StdEncoding.EncodeToString([]byte(fmt.Sprintf("%s:%s", c.ID, c.Secret)))),
},
Body: map[string]interface{}{
"grantType": "refresh_token",
"refreshToken": refreshToken,
},
}).ToJSON(&tk); err != nil || tk.Err != nil {
switch {
case tk.Err != nil:
return nil, errors.New(tk.Err.Message)
default:
return nil, err
}
}
tk.ExpiredDateTime = time.Now().UTC().Add(time.Second * time.Duration(tk.ExpiresIn-60))
return tk, nil
}
// GetAccessTokenByAuthorizationCode :
func (c Client) GetAccessTokenByAuthorizationCode(code, redirectURL string) (*Token, error) {
tk := new(Token)
method := pathOAuthPathTokenURL.method
requestURL := c.prepareOAuthURL(pathOAuthPathTokenURL)
if err := api.Fetch(requestURL, api.Option{
Method: method,
Headers: map[string]string{
"Authorization": fmt.Sprintf("Basic %s", base64.StdEncoding.EncodeToString([]byte(fmt.Sprintf("%s:%s", c.ID, c.Secret)))),
},
Body: map[string]interface{}{
"grantType": "authorization_code",
"code": code,
"redirectUri": redirectURL,
},
}).ToJSON(tk); err != nil || tk.Err != nil {
switch {
case tk.Err != nil:
return nil, errors.New(tk.Err.Message)
default:
return nil, err
}
}
tk.ExpiredDateTime = time.Now().UTC().Add(time.Second * time.Duration(tk.ExpiresIn-60))
return tk, nil
}
// GetTokenInfoByAuthorizationCode :
func (c Client) GetTokenInfoByAuthorizationCode(code string) (*ResponseGetTokenInfoByAuthorizationCode, error) {
response := new(ResponseGetTokenInfoByAuthorizationCode)
method := pathOAuthPathTokenInfoURL.method
requestURL := c.prepareOAuthURL(pathOAuthPathTokenInfoURL)
if err := api.Fetch(requestURL, api.Option{
Method: method,
Headers: map[string]string{
"Authorization": fmt.Sprintf("Basic %s", base64.StdEncoding.EncodeToString([]byte(fmt.Sprintf("%s:%s", c.ID, c.Secret)))),
},
Body: map[string]interface{}{
"token": code,
},
}).ToJSON(response); err != nil {
return nil, err
}
return response, nil
}