-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathsessiontoken.go
65 lines (53 loc) · 1.68 KB
/
sessiontoken.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
package signalfx
import (
"bytes"
"context"
"encoding/json"
"fmt"
"io"
"io/ioutil"
"net/http"
"github.com/signalfx/signalfx-go/sessiontoken"
)
// SessionTokenAPIURL is the base URL for interacting with org tokens.
const SessionTokenAPIURL = "/v2/session"
// CreateOrgToken creates a org token.
func (c *Client) CreateSessionToken(ctx context.Context, tokenRequest *sessiontoken.CreateTokenRequest) (*sessiontoken.Token, error) {
payload, err := json.Marshal(tokenRequest)
if err != nil {
return nil, err
}
// we need to explicitly pass an empty token (which means it wont get set in the header)
// the API accepts either no token or a valid token, but not an empty token.
resp, err := c.doRequestWithToken(ctx, "POST", SessionTokenAPIURL, nil, bytes.NewReader(payload), "")
if resp != nil {
defer resp.Body.Close()
}
if err != nil {
return nil, err
}
if resp.StatusCode != http.StatusOK {
message, _ := ioutil.ReadAll(resp.Body)
return nil, fmt.Errorf("Bad status %d: %s", resp.StatusCode, message)
}
sessionToken := &sessiontoken.Token{}
err = json.NewDecoder(resp.Body).Decode(sessionToken)
_, _ = io.Copy(ioutil.Discard, resp.Body)
return sessionToken, err
}
// DeleteOrgToken deletes a token.
func (c *Client) DeleteSessionToken(ctx context.Context, token string) error {
resp, err := c.doRequestWithToken(ctx, "DELETE", SessionTokenAPIURL, nil, nil, token)
if resp != nil {
defer resp.Body.Close()
}
if err != nil {
return err
}
if resp.StatusCode != http.StatusNoContent {
message, _ := ioutil.ReadAll(resp.Body)
return fmt.Errorf("Unexpected status code: %d: %s", resp.StatusCode, message)
}
_, _ = io.Copy(ioutil.Discard, resp.Body)
return nil
}