-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathauth.go
67 lines (54 loc) · 1.27 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
package esri
import (
"fmt"
"time"
"encoding/json"
"net/url"
)
const (
referer = "https://www.arcgis.com"
)
var (
generateTokenURL = fmt.Sprintf("%v/sharing/rest/generateToken", referer)
)
type tokenResp struct {
Token string `json:"token"`
Expires int64 `json:"expires"`
}
// An AGOL token response
type Token struct {
Token string
Expires time.Time
}
// Expired is a shorthand for telling whether or not a token is expired
func (t Token) Expired() bool {
return !time.Now().Before(t.Expires)
}
func GetToken(username, password string) (*Token, error) {
resp, err := request(generateTokenURL, url.Values{
"username": {username},
"password": {password},
"referer": {referer},
"f": {"json"},
})
if err != nil {
return nil, err
}
var t tokenResp
err = json.Unmarshal(resp, &t)
if err != nil {
return nil, err
}
return &Token{Token: t.Token, Expires: parseMilliseconds(t.Expires)}, nil
}
// parseMilliseconds parses a time in milliseconds and spits out a time.Time
func parseMilliseconds(expiration int64) time.Time {
// Milliseconds elapsed since the epoch
// 1,000 micro sec 1,000 ns
// X ms * --------------- * -------------- = 1,000,000 * X ns
// 1 ms 1 micro sec
return time.Unix(
0,
expiration*1000000,
)
}