-
Notifications
You must be signed in to change notification settings - Fork 647
Expand file tree
/
Copy pathvalidation.ts
More file actions
476 lines (418 loc) · 12.4 KB
/
validation.ts
File metadata and controls
476 lines (418 loc) · 12.4 KB
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
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
import { rpcErrors } from '@metamask/rpc-errors';
import {
InterfaceContextStruct,
literal as customLiteral,
typedUnion,
UserInputEventStruct,
} from '@metamask/snaps-sdk';
import { HandlerType } from '@metamask/snaps-utils';
import type { Infer, Struct } from '@metamask/superstruct';
import {
any,
array,
assign,
boolean,
enums,
is,
nullable,
number,
object,
optional,
record,
size,
string,
tuple,
union,
literal,
} from '@metamask/superstruct';
import type {
CaipChainId,
JsonRpcRequest,
JsonRpcSuccess,
} from '@metamask/utils';
import {
assertStruct,
CaipAssetTypeOrIdStruct,
CaipAssetTypeStruct,
CaipChainIdStruct,
JsonRpcIdStruct,
JsonRpcParamsStruct,
JsonRpcRequestStruct,
JsonRpcSuccessStruct,
JsonRpcVersionStruct,
JsonStruct,
} from '@metamask/utils';
export const JsonRpcRequestWithoutIdStruct = object({
jsonrpc: optional(JsonRpcVersionStruct),
id: optional(JsonRpcIdStruct),
method: string(),
params: optional(JsonRpcParamsStruct),
});
export type JsonRpcRequestWithoutId = Infer<
typeof JsonRpcRequestWithoutIdStruct
>;
export const EndowmentStruct = string();
export type Endowment = Infer<typeof EndowmentStruct>;
/**
* Check if the given value is an endowment.
*
* @param value - The value to check.
* @returns Whether the value is an endowment.
*/
export function isEndowment(value: unknown): value is Endowment {
return is(value, EndowmentStruct);
}
/**
* Check if the given value is an array of endowments.
*
* @param value - The value to check.
* @returns Whether the value is an array of endowments.
*/
export function isEndowmentsArray(value: unknown): value is Endowment[] {
return Array.isArray(value) && value.every(isEndowment);
}
const OkStruct = literal('OK');
export const PingRequestArgumentsStruct = optional(
union([literal(undefined), array()]),
);
export const TerminateRequestArgumentsStruct = union([
literal(undefined),
array(),
]);
export const ExecuteSnapRequestArgumentsStruct = tuple([
string(),
string(),
array(EndowmentStruct),
]);
export const SnapRpcRequestArgumentsStruct = tuple([
string(),
enums(Object.values(HandlerType)),
string(),
assign(
JsonRpcRequestWithoutIdStruct,
object({
// Previously this would validate that the parameters were valid JSON.
// This is already validated for all messages received by the executor.
// If that assumption changes, this should once again validate JSON.
params: optional(record(string(), any())),
}),
),
]);
export type PingRequestArguments = Infer<typeof PingRequestArgumentsStruct>;
export type TerminateRequestArguments = Infer<
typeof TerminateRequestArgumentsStruct
>;
export type ExecuteSnapRequestArguments = Infer<
typeof ExecuteSnapRequestArgumentsStruct
>;
export type SnapRpcRequestArguments = Infer<
typeof SnapRpcRequestArgumentsStruct
>;
export type RequestArguments =
| PingRequestArguments
| TerminateRequestArguments
| ExecuteSnapRequestArguments
| SnapRpcRequestArguments;
/**
* Asserts that the given value is a valid request arguments object.
*
* @param value - The value to validate.
* @param struct - The struct to validate the value against.
* @throws If the value is not a valid request arguments object.
*/
function assertRequestArguments<Type, Schema>(
value: unknown,
struct: Struct<Type, Schema>,
): asserts value is Struct<Type, Schema> {
assertStruct(
value,
struct,
'Invalid request params',
rpcErrors.invalidParams,
);
}
export const OnTransactionRequestArgumentsStruct = object({
// TODO: Improve `transaction` type.
transaction: record(string(), JsonStruct),
chainId: CaipChainIdStruct,
transactionOrigin: nullable(string()),
});
export type OnTransactionRequestArguments = Infer<
typeof OnTransactionRequestArgumentsStruct
>;
/**
* Asserts that the given value is a valid {@link OnTransactionRequestArguments}
* object.
*
* @param value - The value to validate.
* @throws If the value is not a valid {@link OnTransactionRequestArguments}
* object.
*/
export function assertIsOnTransactionRequestArguments(
value: unknown,
): asserts value is OnTransactionRequestArguments {
assertRequestArguments(value, OnTransactionRequestArgumentsStruct);
}
export const OnSignatureRequestArgumentsStruct = object({
signature: record(string(), JsonStruct),
signatureOrigin: nullable(string()),
});
export type OnSignatureRequestArguments = Infer<
typeof OnSignatureRequestArgumentsStruct
>;
/**
* Asserts that the given value is a valid {@link OnSignatureRequestArguments}
* object.
*
* @param value - The value to validate.
* @throws If the value is not a valid {@link OnSignatureRequestArguments}
* object.
*/
export function assertIsOnSignatureRequestArguments(
value: unknown,
): asserts value is OnSignatureRequestArguments {
assertRequestArguments(value, OnSignatureRequestArgumentsStruct);
}
const baseNameLookupArgs = { chainId: CaipChainIdStruct };
const domainRequestStruct = object({
...baseNameLookupArgs,
address: string(),
});
const addressRequestStruct = object({
...baseNameLookupArgs,
domain: string(),
});
export const OnNameLookupRequestArgumentsStruct = union([
domainRequestStruct,
addressRequestStruct,
]);
export type OnNameLookupRequestArguments = Infer<
typeof OnNameLookupRequestArgumentsStruct
>;
export type PossibleLookupRequestArgs = typeof baseNameLookupArgs & {
address?: string;
domain?: string;
};
/**
* Asserts that the given value is a valid {@link OnNameLookupRequestArguments}
* object.
*
* @param value - The value to validate.
* @throws If the value is not a valid {@link OnNameLookupRequestArguments}
* object.
*/
export function assertIsOnNameLookupRequestArguments(
value: unknown,
): asserts value is OnNameLookupRequestArguments {
assertRequestArguments(value, OnNameLookupRequestArgumentsStruct);
}
export const OnAssetHistoricalPriceRequestArgumentsStruct = object({
from: CaipAssetTypeStruct,
to: CaipAssetTypeStruct,
});
export type OnAssetHistoricalPriceRequestArguments = Infer<
typeof OnAssetHistoricalPriceRequestArgumentsStruct
>;
/**
* Asserts that the given value is a valid {@link OnAssetHistoricalPriceRequestArguments}
* object.
*
* @param value - The value to validate.
* @throws If the value is not a valid {@link OnAssetHistoricalPriceRequestArguments}
* object.
*/
export function assertIsOnAssetHistoricalPriceRequestArguments(
value: unknown,
): asserts value is OnAssetHistoricalPriceRequestArguments {
assertRequestArguments(value, OnAssetHistoricalPriceRequestArgumentsStruct);
}
export const OnAssetsMarketDataRequestArgumentsStruct = object({
assets: size(
array(
object({
asset: CaipAssetTypeOrIdStruct,
unit: CaipAssetTypeStruct,
}),
),
1,
Infinity,
),
});
export type OnAssetsMarketDataRequestArguments = Infer<
typeof OnAssetsMarketDataRequestArgumentsStruct
>;
/**
* Asserts that the given value is a valid {@link OnAssetsMarketDataRequestArguments}
* object.
*
* @param value - The value to validate.
* @throws If the value is not a valid {@link OnAssetsMarketDataRequestArguments}
* object.
*/
export function assertIsOnAssetsMarketDataRequestArguments(
value: unknown,
): asserts value is OnAssetsMarketDataRequestArguments {
assertRequestArguments(value, OnAssetsMarketDataRequestArgumentsStruct);
}
export const OnAssetsLookupRequestArgumentsStruct = object({
assets: size(array(CaipAssetTypeOrIdStruct), 1, Infinity),
});
export type OnAssetsLookupRequestArguments = Infer<
typeof OnAssetsLookupRequestArgumentsStruct
>;
/**
* Asserts that the given value is a valid {@link OnAssetsLookupRequestArguments}
* object.
*
* @param value - The value to validate.
* @throws If the value is not a valid {@link OnAssetsLookupRequestArguments}
* object.
*/
export function assertIsOnAssetsLookupRequestArguments(
value: unknown,
): asserts value is OnAssetsLookupRequestArguments {
assertRequestArguments(value, OnAssetsLookupRequestArgumentsStruct);
}
export const OnAssetsConversionRequestArgumentsStruct = object({
conversions: size(
array(
object({
from: CaipAssetTypeStruct,
to: CaipAssetTypeStruct,
}),
),
1,
Infinity,
),
});
export type OnAssetsConversionRequestArguments = Infer<
typeof OnAssetsConversionRequestArgumentsStruct
>;
/**
* Asserts that the given value is a valid {@link OnAssetsConversionRequestArguments}
* object.
*
* @param value - The value to validate.
* @throws If the value is not a valid {@link OnNameLookupRequestArguments}
* object.
*/
export function assertIsOnAssetsConversionRequestArguments(
value: unknown,
): asserts value is OnAssetsConversionRequestArguments {
assertRequestArguments(value, OnAssetsConversionRequestArgumentsStruct);
}
export const OnUserInputArgumentsStruct = object({
id: string(),
event: UserInputEventStruct,
context: optional(nullable(InterfaceContextStruct)),
});
export type OnUserInputArguments = Infer<typeof OnUserInputArgumentsStruct>;
/**
* Asserts that the given value is a valid {@link OnUserInputArguments}
* object.
*
* @param value - The value to validate.
* @throws If the value is not a valid {@link OnUserInputArguments}
* object.
*/
export function assertIsOnUserInputRequestArguments(
value: unknown,
): asserts value is OnUserInputArguments {
assertRequestArguments(value, OnUserInputArgumentsStruct);
}
export const OnProtocolRequestArgumentsStruct = object({
scope: CaipChainIdStruct,
request: JsonRpcRequestStruct,
}) as unknown as Struct<{ scope: CaipChainId; request: JsonRpcRequest }, null>;
export type OnProtocolRequestArguments = Infer<
typeof OnProtocolRequestArgumentsStruct
>;
/**
* Asserts that the given value is a valid {@link OnProtocolRequestArguments}
* object.
*
* @param value - The value to validate.
* @throws If the value is not a valid {@link OnProtocolRequestArguments}
* object.
*/
export function assertIsOnProtocolRequestArguments(
value: unknown,
): asserts value is OnProtocolRequestArguments {
assertRequestArguments(value, OnProtocolRequestArgumentsStruct);
}
const WebSocketOpenEventStruct = object({
type: customLiteral('open'),
id: string(),
origin: string(),
});
const WebSocketCloseEventStruct = object({
type: customLiteral('close'),
id: string(),
origin: string(),
code: number(),
reason: nullable(string()),
wasClean: nullable(boolean()),
});
const WebSocketMessageEventStruct = object({
type: customLiteral('message'),
id: string(),
origin: string(),
data: typedUnion([
object({
type: customLiteral('text'),
message: string(),
}),
object({
type: customLiteral('binary'),
message: array(number()),
}),
]),
});
export const WebSocketEventStruct = typedUnion([
WebSocketOpenEventStruct,
WebSocketCloseEventStruct,
WebSocketMessageEventStruct,
]);
export const OnWebSocketEventArgumentsStruct = object({
event: WebSocketEventStruct,
});
export type OnWebSocketEventArguments = Infer<
typeof OnWebSocketEventArgumentsStruct
>;
/**
* Asserts that the given value is a valid {@link OnWebSocketEventArguments}
* object.
*
* @param value - The value to validate.
* @throws If the value is not a valid {@link OnWebSocketEventArguments}
* object.
*/
export function assertIsOnWebSocketEventArguments(
value: unknown,
): asserts value is OnWebSocketEventArguments {
assertRequestArguments(value, OnWebSocketEventArgumentsStruct);
}
// TODO: Either fix this lint violation or explain why it's necessary to ignore.
// eslint-disable-next-line @typescript-eslint/no-unused-vars
const OkResponseStruct = object({
id: JsonRpcIdStruct,
jsonrpc: JsonRpcVersionStruct,
result: OkStruct,
});
const SnapRpcResponse = JsonRpcSuccessStruct;
export type OkResponse = Infer<typeof OkResponseStruct>;
export type SnapRpcResponse = Infer<typeof SnapRpcResponse>;
export type Response = OkResponse | SnapRpcResponse;
type RequestParams<Params extends unknown[] | undefined> =
Params extends undefined ? [] : Params;
type RequestFunction<
Args extends RequestArguments,
ResponseType extends JsonRpcSuccess,
> = (...args: RequestParams<Args>) => Promise<ResponseType['result']>;
export type Ping = RequestFunction<PingRequestArguments, OkResponse>;
export type Terminate = RequestFunction<TerminateRequestArguments, OkResponse>;
export type ExecuteSnap = RequestFunction<
ExecuteSnapRequestArguments,
OkResponse
>;
export type SnapRpc = RequestFunction<SnapRpcRequestArguments, SnapRpcResponse>;