-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaccount.go
144 lines (121 loc) · 3.69 KB
/
account.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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
package openxbl
import (
"errors"
"fmt"
"strconv"
"strings"
)
const (
AccountTierGold = "Gold"
AccountTierSilver = "Silver"
)
type Account struct {
ID string `json:"id" yaml:"id"`
HostID string `json:"hostId" yaml:"hostId"`
AvatarURL string `json:"avatarUrl" yaml:"avatarUrl"`
Bio string `json:"bio" yaml:"bio"`
Gamerscore int `json:"gamerscore" yaml:"gamerscore"`
Gamertag string `json:"gamertag" yaml:"gamertag"`
IsSponsoredUser bool `json:"isSponsoredUser"`
Location string `json:"location" yaml:"location"`
PreferredColorURL string `json:"preferredColorURL" yaml:"preferredColorURL"`
RealName string `json:"realName" yaml:"realName"`
Tier string `json:"tier" yaml:"tier"`
RawSettings []struct {
ID string `json:"id"`
Value string `json:"value"`
} `json:"settings"`
}
func (c *Client) GetAccount() (*Account, error) {
response := struct {
ProfileUsers []*Account `json:"profileUsers"`
}{}
if _, err := c.makeRequest("GET", "account", nil, &response); err != nil {
return nil, err
}
if len(response.ProfileUsers) == 0 {
return nil, errors.New("failed to find account info")
}
account := response.ProfileUsers[0]
for _, setting := range account.RawSettings {
switch setting.ID {
case "AccountTier":
account.Tier = setting.Value
case "Bio":
account.Bio = setting.Value
case "GameDisplayPicRaw":
account.AvatarURL = setting.Value
case "Gamerscore":
gamerscore, err := strconv.Atoi(setting.Value)
if err != nil {
return nil, fmt.Errorf("failed to convert gamerscore to int: %v", err)
}
account.Gamerscore = gamerscore
case "Gamertag":
account.Gamertag = setting.Value
case "Location":
account.Location = setting.Value
case "PreferredColor":
account.PreferredColorURL = setting.Value
case "RealName":
account.RealName = setting.Value
}
}
return response.ProfileUsers[0], nil
}
// GenerateGamertags returns a list of generated gamertag options
func (c *Client) GenerateGamertags(quantity int) ([]string, error) {
if quantity <= 0 {
return nil, errors.New("invalid quantity")
}
request := struct {
Algorithm int `json:"algorithm"`
Count int `json:"count"`
Seed string `json:"seed"`
Locale string `json:"locale"`
}{1, quantity, "", "en-US"}
response := struct {
Gamertags []string `json:"Gamertags"`
}{}
if _, err := c.makeRequest("POST", "generate/gamertag", request, &response); err != nil {
return nil, err
}
if len(response.Gamertags) == 0 {
return nil, errors.New("failed to generate gamertags")
}
return response.Gamertags, nil
}
type Presence struct {
ID string `json:"xuid"`
Devices []struct {
Type string `json:"type"`
Titles []struct {
ID string `json:"id"`
Name string `json:"name"`
Placement string `json:"placement"`
State string `json:"state"`
LastModified string `json:"lastModified"`
} `json:"titles"`
} `json:"devices"`
LastSeen struct {
DeviceType string `json:"deviceType"`
TitleID string `json:"titleId"`
TitleName string `json:"titleName"`
Timestamp string `json:"timestamp"`
} `json:"lastSeen"`
State string `json:"state"`
}
// GetPresenceForUser returns the current Presence for the given user ID
func (c *Client) GetPresenceForUser(xboxIDs ...string) ([]*Presence, error) {
if len(xboxIDs) == 0 {
return nil, errors.New("missing xbox ID")
}
var response []*Presence
if _, err := c.makeRequest("GET", strings.Join(xboxIDs, ",")+"/presence", nil, &response); err != nil {
return nil, err
}
if len(response) == 0 {
return nil, errors.New("failed to find user presences")
}
return response, nil
}