clashofclans.js 2.0.0-dev.c0ee4c0 → 2.0.1-dev.82b84ba

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2,150 +2,55 @@ import { RequestHandler, SearchOptions, ClanSearchOptions, ClientOptions, Overri
2
2
  import { APIClan, APIClanList, APIClanMemberList, APIClanRankingList, APIClanVersusRankingList, APIClanWar, APIClanWarLeagueGroup, APIClanWarLog, APIGoldPassSeason, APILabelList, APILeague, APILeagueList, APILeagueSeasonList, APILocation, APILocationList, APIPlayer, APIPlayerRankingList, APIPlayerSeasonRankingList, APIPlayerVersusRankingList, APIVerifyToken, APIWarLeague, APIWarLeagueList } from '../types';
3
3
  /** Represents a REST Manager of the client. */
4
4
  export declare class RESTManager {
5
+ /** Request Handler for the RESTManager. */
5
6
  readonly handler: RequestHandler;
6
7
  constructor(options?: ClientOptions);
7
- getClans(options: ClanSearchOptions): Promise<{
8
- data: APIClanList;
9
- maxAge: number;
10
- status: number;
11
- path: string;
12
- }>;
13
- getClan(clanTag: string, options?: OverrideOptions): Promise<{
14
- data: APIClan;
15
- maxAge: number;
16
- status: number;
17
- path: string;
18
- }>;
19
- getClanMembers(clanTag: string, options?: SearchOptions): Promise<{
20
- data: APIClanMemberList;
21
- maxAge: number;
22
- status: number;
23
- path: string;
24
- }>;
25
- getClanWarLog(clanTag: string, options?: SearchOptions): Promise<{
26
- data: APIClanWarLog;
27
- maxAge: number;
28
- status: number;
29
- path: string;
30
- }>;
31
- getCurrentWar(clanTag: string, options?: OverrideOptions): Promise<{
32
- data: APIClanWar;
33
- maxAge: number;
34
- status: number;
35
- path: string;
36
- }>;
37
- getClanWarLeagueGroup(clanTag: string, options?: OverrideOptions): Promise<{
38
- data: APIClanWarLeagueGroup;
39
- maxAge: number;
40
- status: number;
41
- path: string;
42
- }>;
43
- getClanWarLeagueRound(warTag: string, options?: OverrideOptions): Promise<{
44
- data: APIClanWar;
45
- maxAge: number;
46
- status: number;
47
- path: string;
48
- }>;
49
- getPlayer(playerTag: string, options?: OverrideOptions): Promise<{
50
- data: APIPlayer;
51
- maxAge: number;
52
- status: number;
53
- path: string;
54
- }>;
55
- postPlayerToken(playerTag: string, token: string, options?: OverrideOptions): Promise<{
56
- data: APIVerifyToken;
57
- maxAge: number;
58
- status: number;
59
- path: string;
60
- }>;
61
- getLeagues(options?: SearchOptions): Promise<{
62
- data: APILeagueList;
63
- maxAge: number;
64
- status: number;
65
- path: string;
66
- }>;
67
- getLeague(leagueId: string | number, options?: OverrideOptions): Promise<{
68
- data: APILeague;
69
- maxAge: number;
70
- status: number;
71
- path: string;
72
- }>;
73
- getLeagueSeasons(leagueId: number, options?: SearchOptions): Promise<{
74
- data: APILeagueSeasonList;
75
- maxAge: number;
76
- status: number;
77
- path: string;
78
- }>;
79
- getSeasonRankings(leagueId: number, seasonId: string, options?: SearchOptions): Promise<{
80
- data: APIPlayerSeasonRankingList;
81
- maxAge: number;
82
- status: number;
83
- path: string;
84
- }>;
85
- getWarLeagues(options?: SearchOptions): Promise<{
86
- data: APIWarLeagueList;
87
- maxAge: number;
88
- status: number;
89
- path: string;
90
- }>;
91
- getWarLeague(leagueId: number, options?: OverrideOptions): Promise<{
92
- data: APIWarLeague;
93
- maxAge: number;
94
- status: number;
95
- path: string;
96
- }>;
97
- getLocations(options?: SearchOptions): Promise<{
98
- data: APILocationList;
99
- maxAge: number;
100
- status: number;
101
- path: string;
102
- }>;
103
- getLocation(locationId: number, options?: OverrideOptions): Promise<{
104
- data: APILocation;
105
- maxAge: number;
106
- status: number;
107
- path: string;
108
- }>;
109
- getClanRanks(locationId: number | string, options?: SearchOptions): Promise<{
110
- data: APIClanRankingList;
111
- maxAge: number;
112
- status: number;
113
- path: string;
114
- }>;
115
- getPlayerRanks(locationId: number | string, options?: SearchOptions): Promise<{
116
- data: APIPlayerRankingList;
117
- maxAge: number;
118
- status: number;
119
- path: string;
120
- }>;
121
- getVersusClanRanks(locationId: number | string, options?: SearchOptions): Promise<{
122
- data: APIClanVersusRankingList;
123
- maxAge: number;
124
- status: number;
125
- path: string;
126
- }>;
127
- getVersusPlayerRanks(locationId: number | string, options?: SearchOptions): Promise<{
128
- data: APIPlayerVersusRankingList;
129
- maxAge: number;
130
- status: number;
131
- path: string;
132
- }>;
133
- getClanLabels(options?: SearchOptions): Promise<{
134
- data: APILabelList;
135
- maxAge: number;
136
- status: number;
137
- path: string;
138
- }>;
139
- getPlayerLabels(options?: SearchOptions): Promise<{
140
- data: APILabelList;
141
- maxAge: number;
142
- status: number;
143
- path: string;
144
- }>;
145
- getGoldPassSeason(options?: OverrideOptions): Promise<{
146
- data: APIGoldPassSeason;
147
- maxAge: number;
148
- status: number;
149
- path: string;
150
- }>;
8
+ /** Search all clans by name and/or filtering the results using various criteria. */
9
+ getClans(options: ClanSearchOptions): Promise<import("./RequestHandler").Response<APIClanList>>;
10
+ /** Get information about a clan. */
11
+ getClan(clanTag: string, options?: OverrideOptions): Promise<import("./RequestHandler").Response<APIClan>>;
12
+ /** Get list of clan members. */
13
+ getClanMembers(clanTag: string, options?: SearchOptions): Promise<import("./RequestHandler").Response<APIClanMemberList>>;
14
+ /** Get clan war log. */
15
+ getClanWarLog(clanTag: string, options?: SearchOptions): Promise<import("./RequestHandler").Response<APIClanWarLog>>;
16
+ /** Get info about currently running war in the clan. */
17
+ getCurrentWar(clanTag: string, options?: OverrideOptions): Promise<import("./RequestHandler").Response<APIClanWar>>;
18
+ /** Get information about clan war league. */
19
+ getClanWarLeagueGroup(clanTag: string, options?: OverrideOptions): Promise<import("./RequestHandler").Response<APIClanWarLeagueGroup>>;
20
+ /** Get info about a CWL round by WarTag. */
21
+ getClanWarLeagueRound(warTag: string, options?: OverrideOptions): Promise<import("./RequestHandler").Response<APIClanWar>>;
22
+ /** Get information about a player by tag. */
23
+ getPlayer(playerTag: string, options?: OverrideOptions): Promise<import("./RequestHandler").Response<APIPlayer>>;
24
+ /** Verify Player API token that can be found from the Game settings. */
25
+ verifyPlayerToken(playerTag: string, token: string, options?: OverrideOptions): Promise<import("./RequestHandler").Response<APIVerifyToken>>;
26
+ /** Get list of Leagues. */
27
+ getLeagues(options?: SearchOptions): Promise<import("./RequestHandler").Response<APILeagueList>>;
28
+ /** Get a League info. */
29
+ getLeague(leagueId: string | number, options?: OverrideOptions): Promise<import("./RequestHandler").Response<APILeague>>;
30
+ /** Get Legend League season Ids. */
31
+ getLeagueSeasons(leagueId: number, options?: SearchOptions): Promise<import("./RequestHandler").Response<APILeagueSeasonList>>;
32
+ /** Get Legend League season rankings by season Id. */
33
+ getSeasonRankings(leagueId: number, seasonId: string, options?: SearchOptions): Promise<import("./RequestHandler").Response<APIPlayerSeasonRankingList>>;
34
+ /** Get list of Clan War Leagues. */
35
+ getWarLeagues(options?: SearchOptions): Promise<import("./RequestHandler").Response<APIWarLeagueList>>;
36
+ /** Get info about a Clan War League. */
37
+ getWarLeague(leagueId: number, options?: OverrideOptions): Promise<import("./RequestHandler").Response<APIWarLeague>>;
38
+ /** Get list of Locations. */
39
+ getLocations(options?: SearchOptions): Promise<import("./RequestHandler").Response<APILocationList>>;
40
+ /** Get info about a Location. */
41
+ getLocation(locationId: number, options?: OverrideOptions): Promise<import("./RequestHandler").Response<APILocation>>;
42
+ /** Get clan rankings for a specific location. */
43
+ getClanRanks(locationId: number | string, options?: SearchOptions): Promise<import("./RequestHandler").Response<APIClanRankingList>>;
44
+ /** Get player rankings for a specific location. */
45
+ getPlayerRanks(locationId: number | string, options?: SearchOptions): Promise<import("./RequestHandler").Response<APIPlayerRankingList>>;
46
+ /** Get clan versus rankings for a specific location. */
47
+ getVersusClanRanks(locationId: number | string, options?: SearchOptions): Promise<import("./RequestHandler").Response<APIClanVersusRankingList>>;
48
+ /** Get player versus rankings for a specific location. */
49
+ getVersusPlayerRanks(locationId: number | string, options?: SearchOptions): Promise<import("./RequestHandler").Response<APIPlayerVersusRankingList>>;
50
+ /** Get list of clan labels. */
51
+ getClanLabels(options?: SearchOptions): Promise<import("./RequestHandler").Response<APILabelList>>;
52
+ /** Get list of player labels. */
53
+ getPlayerLabels(options?: SearchOptions): Promise<import("./RequestHandler").Response<APILabelList>>;
54
+ /** Get info about gold pass season. */
55
+ getGoldPassSeason(options?: OverrideOptions): Promise<import("./RequestHandler").Response<APIGoldPassSeason>>;
151
56
  }
@@ -8,90 +8,114 @@ class RESTManager {
8
8
  constructor(options) {
9
9
  this.handler = new RequestHandler_1.RequestHandler(options);
10
10
  }
11
+ /** Search all clans by name and/or filtering the results using various criteria. */
11
12
  getClans(options) {
12
13
  const query = Util_1.Util.queryString(options);
13
14
  return this.handler.request(`/clans?${query}`);
14
15
  }
16
+ /** Get information about a clan. */
15
17
  getClan(clanTag, options) {
16
18
  return this.handler.request(`/clans/${Util_1.Util.encodeTag(clanTag)}`, options);
17
19
  }
20
+ /** Get list of clan members. */
18
21
  getClanMembers(clanTag, options) {
19
22
  const query = Util_1.Util.queryString(options);
20
23
  return this.handler.request(`/clans/${Util_1.Util.encodeTag(clanTag)}/members?${query}`, options);
21
24
  }
25
+ /** Get clan war log. */
22
26
  getClanWarLog(clanTag, options) {
23
27
  const query = Util_1.Util.queryString(options);
24
28
  return this.handler.request(`/clans/${Util_1.Util.encodeTag(clanTag)}/warlog?${query}`, options);
25
29
  }
30
+ /** Get info about currently running war in the clan. */
26
31
  getCurrentWar(clanTag, options) {
27
32
  return this.handler.request(`/clans/${Util_1.Util.encodeTag(clanTag)}/currentwar`, options);
28
33
  }
34
+ /** Get information about clan war league. */
29
35
  getClanWarLeagueGroup(clanTag, options) {
30
36
  return this.handler.request(`/clans/${Util_1.Util.encodeTag(clanTag)}/currentwar/leaguegroup`, options);
31
37
  }
38
+ /** Get info about a CWL round by WarTag. */
32
39
  getClanWarLeagueRound(warTag, options) {
33
40
  return this.handler.request(`/clanwarleagues/wars/${Util_1.Util.encodeTag(warTag)}`, options);
34
41
  }
42
+ /** Get information about a player by tag. */
35
43
  getPlayer(playerTag, options) {
36
44
  return this.handler.request(`/players/${Util_1.Util.encodeTag(playerTag)}`, options);
37
45
  }
38
- postPlayerToken(playerTag, token, options) {
46
+ /** Verify Player API token that can be found from the Game settings. */
47
+ verifyPlayerToken(playerTag, token, options) {
39
48
  const opts = { method: 'POST', body: JSON.stringify({ token }), ...options };
40
49
  return this.handler.request(`/players/${Util_1.Util.encodeTag(playerTag)}/verifytoken`, opts);
41
50
  }
51
+ /** Get list of Leagues. */
42
52
  getLeagues(options) {
43
53
  const query = Util_1.Util.queryString(options);
44
54
  return this.handler.request(`/leagues?${query}`, options);
45
55
  }
56
+ /** Get a League info. */
46
57
  getLeague(leagueId, options) {
47
58
  return this.handler.request(`/leagues/${leagueId}`, options);
48
59
  }
60
+ /** Get Legend League season Ids. */
49
61
  getLeagueSeasons(leagueId, options) {
50
62
  const query = Util_1.Util.queryString(options);
51
63
  return this.handler.request(`/leagues/${leagueId}/seasons?${query}`, options);
52
64
  }
65
+ /** Get Legend League season rankings by season Id. */
53
66
  getSeasonRankings(leagueId, seasonId, options) {
54
67
  const query = Util_1.Util.queryString(options);
55
68
  return this.handler.request(`/leagues/${leagueId}/seasons/${seasonId}?${query}`, options);
56
69
  }
70
+ /** Get list of Clan War Leagues. */
57
71
  getWarLeagues(options) {
58
72
  const query = Util_1.Util.queryString(options);
59
73
  return this.handler.request(`/warleagues?${query}`, options);
60
74
  }
75
+ /** Get info about a Clan War League. */
61
76
  getWarLeague(leagueId, options) {
62
77
  return this.handler.request(`/warleagues/${leagueId}`, options);
63
78
  }
79
+ /** Get list of Locations. */
64
80
  getLocations(options) {
65
81
  const query = Util_1.Util.queryString(options);
66
82
  return this.handler.request(`/locations?${query}`, options);
67
83
  }
84
+ /** Get info about a Location. */
68
85
  getLocation(locationId, options) {
69
86
  return this.handler.request(`/locations/${locationId}`, options);
70
87
  }
88
+ /** Get clan rankings for a specific location. */
71
89
  getClanRanks(locationId, options) {
72
90
  const query = Util_1.Util.queryString(options);
73
91
  return this.handler.request(`/locations/${locationId}/rankings/clans?${query}`, options);
74
92
  }
93
+ /** Get player rankings for a specific location. */
75
94
  getPlayerRanks(locationId, options) {
76
95
  const query = Util_1.Util.queryString(options);
77
96
  return this.handler.request(`/locations/${locationId}/rankings/players?${query}`, options);
78
97
  }
98
+ /** Get clan versus rankings for a specific location. */
79
99
  getVersusClanRanks(locationId, options) {
80
100
  const query = Util_1.Util.queryString(options);
81
101
  return this.handler.request(`/locations/${locationId}/rankings/clans-versus?${query}`, options);
82
102
  }
103
+ /** Get player versus rankings for a specific location. */
83
104
  getVersusPlayerRanks(locationId, options) {
84
105
  const query = Util_1.Util.queryString(options);
85
106
  return this.handler.request(`/locations/${locationId}/rankings/players-versus?${query}`, options);
86
107
  }
108
+ /** Get list of clan labels. */
87
109
  getClanLabels(options) {
88
110
  const query = Util_1.Util.queryString(options);
89
111
  return this.handler.request(`/labels/clans?${query}`, options);
90
112
  }
113
+ /** Get list of player labels. */
91
114
  getPlayerLabels(options) {
92
115
  const query = Util_1.Util.queryString(options);
93
116
  return this.handler.request(`/labels/players?${query}`, options);
94
117
  }
118
+ /** Get info about gold pass season. */
95
119
  getGoldPassSeason(options) {
96
120
  return this.handler.request('/goldpass/seasons/current', options);
97
121
  }
@@ -11,19 +11,14 @@ export declare class RequestHandler {
11
11
  private keys;
12
12
  private readonly baseURL;
13
13
  private readonly retryLimit;
14
- private readonly cached;
15
14
  private readonly restRequestTimeout;
16
15
  private readonly throttler?;
16
+ private readonly cached;
17
17
  constructor(options?: ClientOptions);
18
18
  private get _keys();
19
19
  private get _key();
20
20
  setKeys(keys: string[]): this;
21
- request<T>(path: string, options?: RequestOptions): Promise<{
22
- data: T;
23
- maxAge: number;
24
- status: number;
25
- path: string;
26
- }>;
21
+ request<T>(path: string, options?: RequestOptions): Promise<Response<T>>;
27
22
  private exec;
28
23
  init(options: InitOptions): Promise<string[]>;
29
24
  private reValidateKeys;
@@ -97,9 +92,21 @@ export interface OverrideOptions {
97
92
  restRequestTimeout?: number;
98
93
  }
99
94
  export interface RequestOptions extends OverrideOptions {
95
+ /** The request body. */
100
96
  body?: string;
97
+ /** The request method. */
101
98
  method?: string;
102
99
  }
100
+ export interface Response<T> {
101
+ /** The response body. */
102
+ data: T;
103
+ /** Path of the request for this response. */
104
+ path: string;
105
+ /** HTTP status code of this response. */
106
+ status: number;
107
+ /** The maxAge of this response. */
108
+ maxAge: number;
109
+ }
103
110
  /**
104
111
  * Clan search options for a request.
105
112
  *
@@ -21,6 +21,7 @@ const HTTPError_1 = require("./HTTPError");
21
21
  const node_fetch_1 = __importDefault(require("node-fetch"));
22
22
  const https_1 = __importDefault(require("https"));
23
23
  const keyv_1 = __importDefault(require("keyv"));
24
+ const IP_REGEX = /\d{1,3}.\d{1,3}.\d{1,3}.\d{1,3}/g;
24
25
  const agent = new https_1.default.Agent({ keepAlive: true });
25
26
  /** Represents a Request Handler. */
26
27
  class RequestHandler {
@@ -50,8 +51,9 @@ class RequestHandler {
50
51
  }
51
52
  async request(path, options = {}) {
52
53
  const cached = (await this.cached?.get(path)) ?? null;
53
- if (cached && options.force !== true)
54
- return { data: cached, maxAge: 0, status: 200, path };
54
+ if (cached && options.force !== true) {
55
+ return { data: cached.data, maxAge: cached.ttl - Date.now(), status: 200, path };
56
+ }
55
57
  if (!this.throttler || options.ignoreRateLimit)
56
58
  return this.exec(path, options);
57
59
  await this.throttler.wait();
@@ -74,16 +76,18 @@ class RequestHandler {
74
76
  if (!res && retries < (options.retryLimit ?? this.retryLimit))
75
77
  return this.exec(path, options, ++retries);
76
78
  if (res?.status === 403 && data?.reason === 'accessDenied.invalidIp' && this.email && this.password) {
77
- await this.login();
78
- return this.exec(path, options, ++retries);
79
+ const keys = await this.reValidateKeys().then(() => this.login());
80
+ if (keys.length)
81
+ return this.exec(path, options, ++retries);
79
82
  }
80
83
  const maxAge = Number(res?.headers.get('cache-control')?.split('=')?.[1] ?? 0) * 1000;
81
84
  if (res?.status === 403 && !data?.message)
82
- throw new HTTPError_1.HTTPError(HTTPError_1.privateWarLogError, res.status, path, maxAge);
85
+ throw new HTTPError_1.HTTPError(HTTPError_1.PrivateWarLogError, res.status, path, maxAge);
83
86
  if (!res?.ok)
84
87
  throw new HTTPError_1.HTTPError(data, res?.status ?? 504, path, maxAge, options.method);
85
- if (this.cached && maxAge > 0 && options.cache !== false)
86
- await this.cached.set(path, data, maxAge);
88
+ if (this.cached && maxAge > 0 && options.cache !== false) {
89
+ await this.cached.set(path, { data, ttl: Date.now() + maxAge }, maxAge);
90
+ }
87
91
  return { data, maxAge, status: res.status, path };
88
92
  }
89
93
  async init(options) {
@@ -107,33 +111,38 @@ class RequestHandler {
107
111
  if (res?.status === 403) {
108
112
  const index = this.keys.indexOf(key);
109
113
  this.keys.splice(index, 1);
110
- console.warn(`[WARN] Pre-defined key #${index + 1} is no longer valid. Removed from the key list.`);
114
+ process.emitWarning(`Pre-defined key #${index + 1} is no longer valid. Removed from the key list.`);
111
115
  }
112
116
  }
113
117
  }
114
118
  async login() {
115
119
  const res = await (0, node_fetch_1.default)(`${Constants_1.DEV_SITE_API_BASE_URL}/login`, {
116
120
  method: 'POST',
121
+ timeout: 10000,
117
122
  headers: { 'Content-Type': 'application/json' },
118
123
  body: JSON.stringify({ email: this.email, password: this.password })
119
124
  });
120
- if (res.ok) {
121
- return this.getKeys(res.headers.get('set-cookie'));
122
- }
123
- throw new ReferenceError('Invalid email or password.');
125
+ const data = await res.json();
126
+ if (!res.ok)
127
+ throw new Error(`Invalid email or password. ${JSON.stringify(data)}`);
128
+ const ip = await this.getIp(data.temporaryAPIToken);
129
+ if (!ip)
130
+ throw new Error('Failed to get the IP address.');
131
+ return this.getKeys(res.headers.get('set-cookie'), ip);
124
132
  }
125
- async getKeys(cookie) {
126
- const ip = await this.getIp();
133
+ async getKeys(cookie, ip) {
127
134
  const res = await (0, node_fetch_1.default)(`${Constants_1.DEV_SITE_API_BASE_URL}/apikey/list`, {
128
135
  method: 'POST',
136
+ timeout: 10000,
129
137
  headers: { 'Content-Type': 'application/json', cookie }
130
138
  });
131
139
  const data = await res.json();
140
+ if (!res.ok)
141
+ throw new Error(`Failed to retrieve the API Keys. ${JSON.stringify(data)}`);
132
142
  // Get all available keys from the developer site.
133
143
  const keys = (data.keys ?? []);
134
144
  // Revoke keys for specified key name but not matching current IP address.
135
- const expiredKeys = keys.filter((key) => key.name === this.keyName && !key.cidrRanges.includes(ip));
136
- for (const key of expiredKeys) {
145
+ for (const key of keys.filter((key) => key.name === this.keyName && !key.cidrRanges.includes(ip))) {
137
146
  if (!(await this.revokeKey(key.id, cookie)))
138
147
  continue;
139
148
  const index = keys.findIndex(({ id }) => id === key.id);
@@ -153,7 +162,7 @@ class RequestHandler {
153
162
  keys.push(key);
154
163
  }
155
164
  if (this.keys.length < this.keyCount && keys.length === 10) {
156
- console.warn(`[WARN] ${this.keyCount} key(s) were requested but failed to create ${this.keyCount - this.keys.length} more key(s).`);
165
+ process.emitWarning(`${this.keyCount} key(s) were requested but failed to create ${this.keyCount - this.keys.length} more key(s).`);
157
166
  }
158
167
  if (!this.keys.length) {
159
168
  throw new Error([
@@ -166,6 +175,7 @@ class RequestHandler {
166
175
  async revokeKey(keyId, cookie) {
167
176
  const res = await (0, node_fetch_1.default)(`${Constants_1.DEV_SITE_API_BASE_URL}/apikey/revoke`, {
168
177
  method: 'POST',
178
+ timeout: 10000,
169
179
  body: JSON.stringify({ id: keyId }),
170
180
  headers: { 'Content-Type': 'application/json', cookie }
171
181
  });
@@ -174,6 +184,7 @@ class RequestHandler {
174
184
  async createKey(cookie, ip) {
175
185
  const res = await (0, node_fetch_1.default)(`${Constants_1.DEV_SITE_API_BASE_URL}/apikey/create`, {
176
186
  method: 'POST',
187
+ timeout: 10000,
177
188
  headers: { 'Content-Type': 'application/json', cookie },
178
189
  body: JSON.stringify({
179
190
  cidrRanges: [ip],
@@ -182,10 +193,20 @@ class RequestHandler {
182
193
  })
183
194
  });
184
195
  const data = await res.json();
196
+ if (!res.ok)
197
+ throw new Error(`Failed to create API Key. ${JSON.stringify(data)}`);
185
198
  return data.key;
186
199
  }
187
- async getIp() {
188
- return (0, node_fetch_1.default)('https://api.ipify.org/').then((res) => res.text());
200
+ async getIp(token) {
201
+ try {
202
+ const decoded = JSON.parse(Buffer.from(token.split('.')[1], 'base64').toString());
203
+ const props = decoded.limits.find((limit) => limit.hasOwnProperty('cidrs'));
204
+ return props.cidrs[0].match(IP_REGEX)[0];
205
+ }
206
+ catch {
207
+ const body = await (0, node_fetch_1.default)('https://api.ipify.org', { timeout: 10000 }).then((res) => res.text());
208
+ return body.match(IP_REGEX)?.[0] ?? null;
209
+ }
189
210
  }
190
211
  }
191
212
  exports.RequestHandler = RequestHandler;
@@ -29,7 +29,3 @@ export declare class BatchThrottler {
29
29
  wait(): Promise<void>;
30
30
  throttle(): Promise<void>;
31
31
  }
32
- export interface DeferredPromise {
33
- resolve(): void;
34
- promise: Promise<void>;
35
- }
@@ -1,3 +1,4 @@
1
+ import { OverrideOptions } from '../rest/RequestHandler';
1
2
  import { ChatLanguage } from './ChatLanguage';
2
3
  import { ClanMember } from './ClanMember';
3
4
  import { Client } from '../client/Client';
@@ -59,5 +60,5 @@ export declare class Clan {
59
60
  members: ClanMember[];
60
61
  constructor(client: Client, data: APIClan);
61
62
  /** Get {@link Player} information for every Player in the clan. */
62
- fetchMembers(): Promise<Player[]>;
63
+ fetchMembers(options?: OverrideOptions): Promise<Player[]>;
63
64
  }
@@ -35,8 +35,8 @@ class Clan {
35
35
  this.members = data.memberList?.map((mem) => new ClanMember_1.ClanMember(this.client, mem)) ?? []; // eslint-disable-line
36
36
  }
37
37
  /** Get {@link Player} information for every Player in the clan. */
38
- async fetchMembers() {
39
- return (await Promise.allSettled(this.members.map((m) => this.client.getPlayer(m.tag, { ignoreRateLimit: true }))))
38
+ async fetchMembers(options) {
39
+ return (await Promise.allSettled(this.members.map((m) => this.client.getPlayer(m.tag, { ...options, ignoreRateLimit: true }))))
40
40
  .filter((res) => res.status === 'fulfilled')
41
41
  .map((res) => res.value);
42
42
  }
@@ -1,3 +1,4 @@
1
+ import { OverrideOptions } from '../rest/RequestHandler';
1
2
  import { Client } from '../client/Client';
2
3
  import { APIClanMember } from '../types';
3
4
  import { League } from './League';
@@ -27,5 +28,5 @@ export declare class ClanMember {
27
28
  received: number;
28
29
  constructor(client: Client, data: APIClanMember);
29
30
  /** Fetch detailed clan info for the member's clan. */
30
- fetch(): Promise<import("./Player").Player>;
31
+ fetch(options?: OverrideOptions): Promise<import("./Player").Player>;
31
32
  }
@@ -21,8 +21,8 @@ class ClanMember {
21
21
  this.received = data.donationsReceived;
22
22
  }
23
23
  /** Fetch detailed clan info for the member's clan. */
24
- async fetch() {
25
- return this.client.getPlayer(this.tag);
24
+ async fetch(options) {
25
+ return this.client.getPlayer(this.tag, options);
26
26
  }
27
27
  }
28
28
  exports.ClanMember = ClanMember;
@@ -129,7 +129,9 @@ export declare class ClanWar {
129
129
  getAttack(attackerTag: string, defenderTag: string): ClanWarAttack | null;
130
130
  /** Return a list of {@link ClanWarAttack} for the defenderTag provided. */
131
131
  getDefenses(defenderTag: string): ClanWarAttack[];
132
- /** Returns either `friendly`, `cwl` or `regular`. */
133
- get type(): 'friendly' | 'cwl' | 'regular';
132
+ /** Returns either `friendly`, `cwl` or `normal`. */
133
+ get type(): "friendly" | "cwl" | "normal";
134
134
  private get _isFriendly();
135
+ /** Returns the war status, based off the home clan. */
136
+ get status(): "win" | "lose" | "tie" | "pending";
135
137
  }
@@ -168,17 +168,31 @@ class ClanWar {
168
168
  }
169
169
  return this.opponent.attacks.filter((atk) => atk.defenderTag === defenderTag);
170
170
  }
171
- /** Returns either `friendly`, `cwl` or `regular`. */
171
+ /** Returns either `friendly`, `cwl` or `normal`. */
172
172
  get type() {
173
173
  if (this._isFriendly)
174
174
  return 'friendly';
175
175
  if (this.warTag)
176
176
  return 'cwl';
177
- return 'regular';
177
+ return 'normal';
178
178
  }
179
179
  get _isFriendly() {
180
180
  const preparationTime = this.startTime.getTime() - this.preparationStartTime.getTime();
181
181
  return Constants_1.FRIENDLY_WAR_PREPARATION_TIMES.includes(preparationTime);
182
182
  }
183
+ /** Returns the war status, based off the home clan. */
184
+ get status() {
185
+ if (this.state === 'preparation')
186
+ return 'pending';
187
+ if (this.clan.stars > this.opponent.stars)
188
+ return 'win';
189
+ if (this.clan.stars === this.opponent.stars) {
190
+ if (this.clan.destruction > this.opponent.destruction)
191
+ return 'win';
192
+ if (this.clan.destruction === this.opponent.destruction)
193
+ return 'tie';
194
+ }
195
+ return 'lose';
196
+ }
183
197
  }
184
198
  exports.ClanWar = ClanWar;
@@ -1,4 +1,5 @@
1
1
  import { APIClanWarLeagueClan, APIClanWarLeagueClanMember, APIClanWarLeagueGroup, APIClanWarLeagueRound } from '../types';
2
+ import { OverrideOptions } from '../rest/RequestHandler';
2
3
  import { Client } from '../client/Client';
3
4
  import { ClanWar } from './ClanWar';
4
5
  import { Player } from './Player';
@@ -28,7 +29,7 @@ export declare class ClanWarLeagueClan {
28
29
  members: ClanWarLeagueClanMember[];
29
30
  constructor(client: Client, data: APIClanWarLeagueClan);
30
31
  /** Get {@link Player} information for every members that are in the CWL group. */
31
- fetchMembers(): Promise<Player[]>;
32
+ fetchMembers(options?: OverrideOptions): Promise<Player[]>;
32
33
  }
33
34
  /** Represents a Round of CWL Group. */
34
35
  export declare class ClanWarLeagueRound {
@@ -53,9 +54,10 @@ export declare class ClanWarLeagueGroup {
53
54
  /**
54
55
  * This returns an array of {@link ClanWar} which fetches all wars in parallel.
55
56
  * @param clanTag Optional clan tag. If present, this will only return wars which belong to this clan.
57
+ * @param options Override options for the request.
56
58
  */
57
- getWars(clanTag?: string): Promise<ClanWar[]>;
59
+ getWars(clanTag?: string, options?: OverrideOptions): Promise<ClanWar[]>;
58
60
  private _getCurrentWars;
59
- /** Returns # (1-7) of the round for the specified warTag. */
61
+ /** Returns the index of the round for this specified warTag. */
60
62
  getRoundIndex(warTag: string): number | null;
61
63
  }