-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathspecializations.go
149 lines (145 loc) · 3.87 KB
/
specializations.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
145
146
147
148
149
package wowapi
import (
"encoding/json"
"fmt"
)
type Specializations struct {
Links struct {
Self struct {
Href string `json:"href"`
} `json:"self"`
} `json:"_links"`
Specializations []struct {
Specialization struct {
Key struct {
Href string `json:"href"`
} `json:"key"`
Name string `json:"name"`
Id float64 `json:"id"`
} `json:"specialization"`
Glyphs []struct {
Key struct {
Href string `json:"href"`
} `json:"key"`
Name string `json:"name"`
Id float64 `json:"id"`
} `json:"glyphs"`
PvpTalentSlots []struct {
SlotNumber float64 `json:"slot_number"`
Selected struct {
Talent struct {
Name string `json:"name"`
Id float64 `json:"id"`
Key struct {
Href string `json:"href"`
} `json:"key"`
} `json:"talent"`
SpellTooltip struct {
Spell struct {
Key struct {
Href string `json:"href"`
} `json:"key"`
Name string `json:"name"`
Id float64 `json:"id"`
} `json:"spell"`
Description string `json:"description"`
CastTime string `json:"cast_time"`
PowerCost string `json:"power_cost"`
Range string `json:"range"`
Cooldown string `json:"cooldown"`
} `json:"spell_tooltip"`
} `json:"selected"`
} `json:"pvp_talent_slots"`
Loadouts []struct {
IsActive bool `json:"is_active"`
TalentLoadoutCode string `json:"talent_loadout_code"`
SelectedClassTalents []struct {
Id float64 `json:"id"`
Rank float64 `json:"rank"`
Tooltip struct {
Talent struct {
Key struct {
Href string `json:"href"`
} `json:"key"`
Name string `json:"name"`
Id float64 `json:"id"`
} `json:"talent"`
SpellTooltip struct {
PowerCost string `json:"power_cost"`
Cooldown string `json:"cooldown"`
Spell struct {
Key struct {
Href string `json:"href"`
} `json:"key"`
Name string `json:"name"`
Id float64 `json:"id"`
} `json:"spell"`
Description string `json:"description"`
CastTime string `json:"cast_time"`
} `json:"spell_tooltip"`
} `json:"tooltip"`
DefaultPoints float64 `json:"default_points"`
} `json:"selected_class_talents"`
SelectedSpecTalents []struct {
Tooltip struct {
Talent struct {
Key struct {
Href string `json:"href"`
} `json:"key"`
Name string `json:"name"`
Id float64 `json:"id"`
} `json:"talent"`
SpellTooltip struct {
Description string `json:"description"`
CastTime string `json:"cast_time"`
PowerCost string `json:"power_cost"`
Range string `json:"range"`
Spell struct {
Key struct {
Href string `json:"href"`
} `json:"key"`
Name string `json:"name"`
Id float64 `json:"id"`
} `json:"spell"`
} `json:"spell_tooltip"`
} `json:"tooltip"`
Id float64 `json:"id"`
Rank float64 `json:"rank"`
} `json:"selected_spec_talents"`
} `json:"loadouts"`
} `json:"specializations"`
ActiveSpecialization struct {
Name string `json:"name"`
Id float64 `json:"id"`
Key struct {
Href string `json:"href"`
} `json:"key"`
} `json:"active_specialization"`
Character struct {
Name string `json:"name"`
Id float64 `json:"id"`
Realm struct {
Key struct {
Href string `json:"href"`
} `json:"key"`
Name string `json:"name"`
Id float64 `json:"id"`
Slug string `json:"slug"`
} `json:"realm"`
Key struct {
Href string `json:"href"`
} `json:"key"`
} `json:"character"`
}
func (req RequestFunc) CharacterSpecializations(realm string, name string) (s Specializations, err error) {
url := fmt.Sprintf("/profile/wow/character/%s/%s/specializations", realm, name)
body, err := req(url)
if err != nil {
return
}
err = json.Unmarshal(body, &s)
if err != nil {
return
}
return
}