| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 |
- package api
- import (
- "encoding/json"
- "fmt"
- "io/ioutil"
- "net/http"
- "path/filepath"
- "time"
- "k8s.io/client-go/util/homedir"
- )
- // Client represents the client for the Porter API
- type Client struct {
- BaseURL string
- HTTPClient *http.Client
- Cookie *http.Cookie
- CookieFilePath string
- }
- // HTTPError is the Porter error response returned if a request fails
- type HTTPError struct {
- Code uint `json:"code"`
- Errors []string `json:"errors"`
- }
- // NewClient constructs a new client based on a set of options
- func NewClient(baseURL string, cookieFileName string) *Client {
- home := homedir.HomeDir()
- cookieFilePath := filepath.Join(home, ".porter", cookieFileName)
- client := &Client{
- BaseURL: baseURL,
- CookieFilePath: cookieFilePath,
- HTTPClient: &http.Client{
- Timeout: time.Minute,
- },
- }
- cookie, _ := client.getCookie()
- if cookie != nil {
- client.Cookie = cookie
- }
- return client
- }
- func (c *Client) sendRequest(req *http.Request, v interface{}, useCookie bool) (*HTTPError, error) {
- req.Header.Set("Content-Type", "application/json; charset=utf-8")
- req.Header.Set("Accept", "application/json; charset=utf-8")
- if cookie, _ := c.getCookie(); useCookie && cookie != nil {
- c.Cookie = cookie
- req.AddCookie(c.Cookie)
- }
- res, err := c.HTTPClient.Do(req)
- if err != nil {
- return nil, err
- }
- defer res.Body.Close()
- if cookies := res.Cookies(); len(cookies) == 1 {
- c.saveCookie(cookies[0])
- }
- if res.StatusCode < http.StatusOK || res.StatusCode >= http.StatusBadRequest {
- var errRes HTTPError
- if err = json.NewDecoder(res.Body).Decode(&errRes); err == nil {
- return &errRes, nil
- }
- return nil, fmt.Errorf("unknown error, status code: %d", res.StatusCode)
- }
- if v != nil {
- if err = json.NewDecoder(res.Body).Decode(v); err != nil {
- return nil, err
- }
- }
- return nil, nil
- }
- // CookieStorage for temporary fs-based cookie storage before jwt tokens
- type CookieStorage struct {
- Cookie *http.Cookie `json:"cookie"`
- }
- // saves single cookie to file
- func (c *Client) saveCookie(cookie *http.Cookie) error {
- data, err := json.Marshal(&CookieStorage{
- Cookie: cookie,
- })
- if err != nil {
- return err
- }
- return ioutil.WriteFile(c.CookieFilePath, data, 0644)
- }
- // retrieves single cookie from file
- func (c *Client) getCookie() (*http.Cookie, error) {
- data, err := ioutil.ReadFile(c.CookieFilePath)
- if err != nil {
- return nil, err
- }
- cookie := &CookieStorage{}
- err = json.Unmarshal(data, cookie)
- if err != nil {
- return nil, err
- }
- return cookie.Cookie, nil
- }
|