-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathConnections.go
111 lines (86 loc) · 2.91 KB
/
Connections.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
package connect
import (
"encoding/json"
"fmt"
"net/url"
"strings"
)
// Connections will list the connections of displayName. If displayName is
// empty, the current authenticated users connection list wil be returned.
func (c *Client) Connections(displayName string) ([]SocialProfile, error) {
// There also exist an endpoint without /pagination/ but it will return
// 403 for *some* connections.
URL := "https://connect.garmin.com/modern/proxy/userprofile-service/socialProfile/connections/pagination/" + displayName
if !c.authenticated() && displayName == "" {
return nil, ErrNotAuthenticated
}
var proxy struct {
Connections []SocialProfile `json:"userConnections"`
}
err := c.getJSON(URL, &proxy)
if err != nil {
return nil, err
}
return proxy.Connections, nil
}
// PendingConnections returns a list of pending connections.
func (c *Client) PendingConnections() ([]SocialProfile, error) {
URL := "https://connect.garmin.com/modern/proxy/userprofile-service/connection/pending"
if !c.authenticated() {
return nil, ErrNotAuthenticated
}
pending := make([]SocialProfile, 0, 10)
err := c.getJSON(URL, &pending)
if err != nil {
return nil, err
}
return pending, nil
}
// AcceptConnection will accept a pending connection.
func (c *Client) AcceptConnection(connectionRequestID int) error {
URL := fmt.Sprintf("https://connect.garmin.com/modern/proxy/userprofile-service/connection/accept/%d", connectionRequestID)
payload := struct {
ConnectionRequestID int `json:"connectionRequestId"`
}{
ConnectionRequestID: connectionRequestID,
}
return c.write("PUT", URL, payload, 0)
}
// SearchConnections can search other users of Garmin Connect.
func (c *Client) SearchConnections(keyword string) ([]SocialProfile, error) {
URL := "https://connect.garmin.com/modern/proxy/usersearch-service/search"
payload := url.Values{
"start": {"1"},
"limit": {"20"},
"keyword": {keyword},
}
req, err := c.newRequest("POST", URL, strings.NewReader(payload.Encode()))
if err != nil {
return nil, err
}
req.Header.Add("content-type", "application/x-www-form-urlencoded; charset=UTF-8")
resp, err := c.do(req)
if err != nil {
return nil, err
}
defer resp.Body.Close()
var proxy struct {
Profiles []SocialProfile `json:"profileList"`
}
dec := json.NewDecoder(resp.Body)
err = dec.Decode(&proxy)
if err != nil {
return nil, err
}
return proxy.Profiles, nil
}
// RemoveConnection will remove a connection.
func (c *Client) RemoveConnection(connectionRequestID int) error {
URL := fmt.Sprintf("https://connect.garmin.com/modern/proxy/userprofile-service/connection/end/%d", connectionRequestID)
return c.write("PUT", URL, nil, 200)
}
// RequestConnection will request a connection with displayName.
func (c *Client) RequestConnection(displayName string) error {
URL := "https://connect.garmin.com/modern/proxy/userprofile-service/connection/request/" + displayName
return c.write("PUT", URL, nil, 0)
}