-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathCatalyst.ts
403 lines (355 loc) · 10.5 KB
/
Catalyst.ts
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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
import rollbar from '../development/rollbar'
import segment from '../development/segment'
import sentry from '../development/sentry'
import env from '../env'
import random from '../number/random'
import API from './API'
import type {
Avatar,
CatalystAbout,
CommsStatus,
CommsStatusOptions,
CommsStatusWithLayers,
CommsStatusWithUsers,
ContentDeploymentOptions,
ContentDeploymentResponse,
ContentEntityEmote,
ContentEntityProfile,
ContentEntityScene,
ContentEntityStore,
ContentEntityWearable,
ContentStatus,
HotScene,
LambdasStatus,
Layer,
LayerUser,
Peer,
Position,
ProfileResponse,
Realm,
Servers,
StatsParcel,
} from './Catalyst.types'
import type { AuthChain } from '@dcl/crypto'
export type {
Snapshot,
BodyColor,
Avatar,
ProfileResponse,
Layer,
Status,
StatusWithLayers,
CommsStatus,
CommsStatusWithLayers,
LambdasStatus,
ContentStatus,
ContentEntityScene,
ContentEntityProfile,
ContentEntityEmote,
ContentEntityWearable,
ContentEntityStore,
Position,
Servers,
LayerUser,
EntityScene,
} from './Catalyst.types'
export default class Catalyst extends API {
static Url =
env('CATALYST_API', '') || // @deprecated
env('PROFILE_URL', 'https://peer.decentraland.org')
static Servers: Promise<void> | null = null
static Cache = new Map<string, Catalyst>()
/**
* TODO(#323): remove on v6
* @deprecated use getInstance instead
*/
static get() {
return this.getInstance()
}
static getInstance() {
return this.getInstanceFrom(this.Url)
}
/**
* TODO(#323): remove on v6
* @deprecated use getAnyInstance instead
*/
static async getAny() {
return this.getAnyInstance()
}
/** @deprecated use `dcl-catalyst-client/dist/contracts-snapshots/data` instead */
static async getAnyInstance() {
if (!this.Servers) {
this.Servers = this.get()
.getServers()
.then((servers) => {
for (const server of servers) {
this.Cache.set(server.baseUrl, new Catalyst(server.baseUrl))
}
})
}
await this.Servers
while (this.Cache.size) {
const instances = Array.from(this.Cache.values())
const index = random(instances.length)
if (instances[index]) {
const instance = instances[index]
if (instance.available) {
return instance
}
const result = await API.catch(instance.getStatus())
if (result) {
instance.available = true
return instance
}
this.Cache.delete(instance.baseUrl)
}
}
return this.getInstance()
}
/**
* TODO(#323): remove on v6
* @deprecated use getInstanceFrom instead
*/
static from(baseUrl: string) {
return this.getInstanceFrom(baseUrl)
}
static getInstanceFrom(baseUrl: string) {
if (!this.Cache.has(baseUrl)) {
this.Cache.set(baseUrl, new Catalyst(baseUrl))
}
return this.Cache.get(baseUrl)!
}
private available: boolean | null = null
async getProfile(address: string): Promise<Avatar | null> {
const result: ProfileResponse = await this.fetch(
`/lambdas/profile/${address.toLowerCase()}`
)
return (result && result.avatars && result.avatars[0]) || null
}
/**
* loads profile data in parallel
*
* @param ids - profile addresses list
* @returns array of profiles in the same order used in the addresses param,
* if the profile doesn't exists the array will include a `null` in the corresponding
* position
*
* @example
* ```typescript
* getProfiles([ `0x1234...`, 0x00000 ]) => Promise<[ { user: `0x1234...`, ...profile }, null ]>
* ```
*/
async getProfiles(ids: string[]): Promise<(Avatar | null)[]> {
if (ids.length === 0) {
return []
}
const results: ProfileResponse[] = await this.fetch(
`/lambdas/profiles`,
this.options().method('POST').json({ ids })
)
const map = new Map(
results
.filter((result) => {
const avatar = result.avatars[0]!
if (!avatar.ethAddress) {
rollbar((logger) =>
logger.error(`Error loading profiles`, {
avatar,
addresses: ids,
server: this.baseUrl,
})
)
sentry((sentry) =>
sentry.captureMessage(`Error loading profiles`, {
extra: {
avatar,
addresses: ids,
server: this.baseUrl,
},
level: 'error',
})
)
segment((analytics) =>
analytics.track('error', {
message: `Error loading profiles`,
server: this.baseUrl,
addresses: ids,
avatar,
})
)
return false
}
return true
})
.map((result) => {
const avatar = result.avatars[0]!
return [avatar.ethAddress.toLowerCase(), avatar] as const
})
)
return ids.map((address) => map.get(address.toLowerCase()) || null)
}
/** @deprecated */
async getStatus(): Promise<CommsStatus>
async getStatus(includeLayers: {}): Promise<CommsStatus>
async getStatus(includeLayers: false): Promise<CommsStatus>
async getStatus(includeLayers: true): Promise<CommsStatusWithLayers>
async getStatus(includeLayers: {
includeLayers: true
}): Promise<CommsStatusWithLayers>
async getStatus(includeLayers: {
includeUsersParcels: true
}): Promise<CommsStatusWithUsers>
async getStatus(options?: CommsStatusOptions) {
return this.getCommsStatus(options as any)
}
/** @deprecated */
async getCommsStatus(): Promise<CommsStatus>
async getCommsStatus(includeLayers: {}): Promise<CommsStatus>
async getCommsStatus(includeLayers: false): Promise<CommsStatus>
async getCommsStatus(includeLayers: true): Promise<CommsStatusWithLayers>
async getCommsStatus(includeLayers: {
includeLayers: true
}): Promise<CommsStatusWithLayers>
async getCommsStatus(includeLayers: {
includeUsersParcels: true
}): Promise<CommsStatusWithUsers>
async getCommsStatus() {
return null as any
}
async getAbout(): Promise<CatalystAbout> {
return this.fetch('/about')
}
/** @deprecated use `getAbout` instead*/
async getCommsAbout(): Promise<CatalystAbout> {
return this.fetch('/about')
}
async getLambdasStatus(): Promise<LambdasStatus> {
return this.fetch('/lambdas/status')
}
async getContentStatus(): Promise<ContentStatus> {
return this.fetch('/content/status')
}
getContentUrl(hash: string) {
return this.url(`/content/contents/${hash}`)
}
async getContentEntity(
hash: string
): Promise<
| ContentEntityScene
| ContentEntityProfile
| ContentEntityEmote
| ContentEntityWearable
| ContentEntityStore
> {
return this.fetch(`/content/contents/${hash}`)
}
async getEntityScenes(
pointers: (string | [number, number])[]
): Promise<(ContentEntityScene & { id: string })[]> {
if (!pointers || pointers.length === 0) {
return []
}
const params = pointers
.map((point) => {
return (
'pointer=' +
(Array.isArray(point) ? point.slice(0, 2).join(',') : point)
)
})
.join('&')
return this.fetch('/content/entities/scene?' + params)
}
async getRealms() {
return this.fetch<Realm[]>('/lambdas/explore/realms')
}
async getHostScenes() {
return this.fetch<HotScene[]>('/lambdas/explore/hot-scenes')
}
/**
* @deprecated use `dcl-catalyst-client/dist/contracts-snapshots/data` instead
* @see https://adr.decentraland.org/adr/ADR-226#get-lambdas-contracts-servers
*/
async getServers() {
return this.fetch<Servers[]>(`/lambdas/contracts/servers`)
}
/**
* @deprecated use `dcl-catalyst-client/dist/contracts-snapshots/data` instead
* @see https://adr.decentraland.org/adr/ADR-226#get-lambdas-contracts-pois
*/
async getPOIs() {
const results = await this.fetch<string[]>(`/lambdas/contracts/pois`)
const pois: Position[] = []
for (const result of results) {
const [x, y] = String(result || '')
.split(',')
.map(Number)
if (Number.isFinite(x) && Number.isFinite(y)) {
pois.push([x, y] as Position)
}
}
return pois
}
/**
* @deprecated use `dcl-catalyst-client/dist/contracts-snapshots/data` instead
* @see https://adr.decentraland.org/adr/ADR-226#get-lambdas-contracts-denylisted-names
*/
async getBanNames() {
return this.fetch<string[]>(`/lambdas/contracts/denylisted-names`)
}
/**
* @deprecated by the archipelago update
* @see https://decentraland.org/blog/project-updates/communication-protocol-improvements/
* @see https://github.com/decentraland/adr/blob/main/docs/ADR-35-coms-protocol-optimizations.md
*/
async getLayers() {
return this.fetch<Layer[]>('/comms/layers')
}
/**
* @deprecated by the archipelago update
* @see https://decentraland.org/blog/project-updates/communication-protocol-improvements/
* @see https://github.com/decentraland/adr/blob/main/docs/ADR-35-coms-protocol-optimizations.md
*/
async getLayerUsers(layer: string) {
return this.fetch<LayerUser[]>(`/comms/layers/${layer}/users`)
}
async getPeers() {
const result = await this.fetch<{ ok: boolean; peers: Peer[] }>(
`/comms/peers`
)
return result.peers
}
async getContentDeployments(
options: Partial<ContentDeploymentOptions>
): Promise<ContentDeploymentResponse> {
const { entityIds, entityTypes, ...data } = options
const params = API.searchParams(data as any, { dataToTimestamp: true })
if (Array.isArray(entityIds)) {
for (const entityId of entityIds) {
params.append('entityId', entityId)
}
}
if (Array.isArray(entityTypes)) {
for (const entityType of entityTypes) {
params.append('entityType', entityType)
}
}
const query = params.toString()
return this.fetch('/content/deployments' + (query ? '?' : '') + query)
}
async getStatsParcels() {
return this.fetch<{ parcels: StatsParcel[] }>('/stats/parcels')
}
/**
* @deprecated use `@dcl/crypto` instead.
* @see https://adr.decentraland.org/adr/ADR-226#post-lambdas-validate-signature
*/
async verifySignature(
authChain: AuthChain,
message: string
): Promise<{ ownerAddress: string; valid: boolean }> {
return this.fetch(
`/lambdas/crypto/validate-signature`,
this.options().method('POST').json({ authChain, timestamp: message })
)
}
}