mirror of
https://github.com/rclone/rclone.git
synced 2024-11-26 02:09:55 +08:00
57d5de6fba
git grep -l github.com/ncw/rclone | xargs -d'\n' perl -i~ -lpe 's|github.com/ncw/rclone|github.com/rclone/rclone|g' goimports -w `find . -name \*.go`
90 lines
1.7 KiB
Go
90 lines
1.7 KiB
Go
package koofrclient
|
|
|
|
import (
|
|
"fmt"
|
|
"net/http"
|
|
"net/url"
|
|
|
|
httpclient "github.com/koofr/go-httpclient"
|
|
)
|
|
|
|
type KoofrClient struct {
|
|
*httpclient.HTTPClient
|
|
token string
|
|
userID string
|
|
}
|
|
|
|
func NewKoofrClient(baseUrl string, disableSecurity bool) *KoofrClient {
|
|
var httpClient *httpclient.HTTPClient
|
|
|
|
if disableSecurity {
|
|
httpClient = httpclient.Insecure()
|
|
} else {
|
|
httpClient = httpclient.New()
|
|
}
|
|
|
|
apiBaseUrl, _ := url.Parse(baseUrl)
|
|
|
|
httpClient.BaseURL = apiBaseUrl
|
|
|
|
httpClient.Headers.Set("User-Agent", "go koofrclient")
|
|
|
|
return &KoofrClient{
|
|
HTTPClient: httpClient,
|
|
token: "",
|
|
userID: "",
|
|
}
|
|
}
|
|
|
|
func (c *KoofrClient) SetUserAgent(ua string) {
|
|
c.Headers.Set("User-Agent", ua)
|
|
}
|
|
|
|
func (c *KoofrClient) SetToken(token string) {
|
|
c.token = token
|
|
c.HTTPClient.Headers.Set("Authorization", fmt.Sprintf("Token token=%s", token))
|
|
}
|
|
|
|
func (c *KoofrClient) GetToken() string {
|
|
return c.token
|
|
}
|
|
|
|
func (c *KoofrClient) SetUserID(userID string) {
|
|
c.userID = userID
|
|
}
|
|
|
|
func (c *KoofrClient) GetUserID() string {
|
|
return c.userID
|
|
}
|
|
|
|
func (c *KoofrClient) Authenticate(email string, password string) (err error) {
|
|
var tokenResponse Token
|
|
|
|
tokenRequest := TokenRequest{
|
|
Email: email,
|
|
Password: password,
|
|
}
|
|
|
|
request := httpclient.RequestData{
|
|
Method: "POST",
|
|
Path: "/token",
|
|
Headers: make(http.Header),
|
|
ExpectedStatus: []int{http.StatusOK},
|
|
ReqEncoding: httpclient.EncodingJSON,
|
|
ReqValue: tokenRequest,
|
|
RespEncoding: httpclient.EncodingJSON,
|
|
RespValue: &tokenResponse,
|
|
}
|
|
|
|
res, err := c.Request(&request)
|
|
|
|
if err != nil {
|
|
return
|
|
}
|
|
|
|
c.SetToken(tokenResponse.Token)
|
|
c.SetUserID(res.Header.Get("X-User-ID"))
|
|
|
|
return
|
|
}
|