-
Notifications
You must be signed in to change notification settings - Fork 72
/
Copy pathcanonicalFormatter.ts
462 lines (407 loc) · 12.4 KB
/
canonicalFormatter.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
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
import { ILitError, LIT_ERROR } from '@lit-protocol/constants';
import {
ABIParams,
AccsCOSMOSParams,
AccsDefaultParams,
AccsEVMParams,
AccsOperatorParams,
AccsRegularParams,
AccsSOLV2Params,
ConditionItem,
JsonSigningResourceId,
} from '@lit-protocol/types';
import { throwError } from '@lit-protocol/misc';
/** ---------- Local Functions ---------- */
/**
*
* Get operator param
*
* @param { ConditionItem } cond
* @returns { AccsOperatorParams }
*/
const getOperatorParam = (cond: ConditionItem): AccsOperatorParams => {
const _cond = cond as AccsOperatorParams;
return {
operator: _cond.operator,
};
};
/**
*
* Canonical ABI Params
*
* @param { Array<ABIParams> } params
* @returns { Array<ABIParams> }
*/
const canonicalAbiParamss = (params: Array<ABIParams>): Array<ABIParams> => {
return params.map((param) => ({
name: param.name,
type: param.type,
}));
};
/**
*
* Canonical Unified Access Control Condition Formatter
*
* @param { ConditionItem | Array<ConditionItem> } cond
* @returns { any[] | AccsOperatorParams | any }
*/
export const canonicalUnifiedAccessControlConditionFormatter = (
cond: ConditionItem | Array<ConditionItem>
): AccsOperatorParams | any => {
// -- if it's an array
if (Array.isArray(cond)) {
return cond.map((c) => canonicalUnifiedAccessControlConditionFormatter(c));
}
// -- if there's a `operator` key in the object
if ('operator' in cond) {
return getOperatorParam(cond);
}
// -- otherwise
if ('returnValueTest' in cond) {
const _cond = cond as AccsRegularParams;
const _conditionType = _cond.conditionType;
switch (_conditionType) {
case 'solRpc':
return canonicalSolRpcConditionFormatter(cond, true);
case 'evmBasic':
return canonicalAccessControlConditionFormatter(cond);
case 'evmContract':
return canonicalEVMContractConditionFormatter(cond);
case 'cosmos':
return canonicalCosmosConditionFormatter(cond);
default:
throwError({
message: `You passed an invalid access control condition that is missing or has a wrong "conditionType": ${JSON.stringify(
cond
)}`,
errorKind: LIT_ERROR.INVALID_ACCESS_CONTROL_CONDITIONS.kind,
errorCode: LIT_ERROR.INVALID_ACCESS_CONTROL_CONDITIONS.name,
});
}
}
throwError({
message: `You passed an invalid access control condition: ${cond}`,
errorKind: LIT_ERROR.INVALID_ACCESS_CONTROL_CONDITIONS.kind,
errorCode: LIT_ERROR.INVALID_ACCESS_CONTROL_CONDITIONS.name,
});
};
/**
*
* (SOLANA) Canonical Solana RPC Condition Formatter
*
* need to return in the exact format below:
* but make sure we don't include the optional fields:
---
#[derive(Debug, Serialize, Deserialize, Clone)]
#[serde(rename_all = "camelCase")]
pub struct SolRpcCondition {
pub method: String,
pub params: Vec<serde_json::Value>,
pub pda_params: Option<Vec<serde_json::Value>>,
pub pda_interface: Option<SolPdaInterface>,
pub chain: String,
pub return_value_test: JsonReturnValueTestV2,
}
#[derive(Debug, Serialize, Deserialize, Clone)]
#[serde(rename_all = "camelCase")]
pub struct SolPdaInterface {
pub offset: u64,
pub fields: serde_json::Value,
}
---
*
* @param { object } cond
* @param { boolean } requireV2Conditions
*
* @returns { any[] | AccsOperatorParams | AccsRegularParams | AccsSOLV2Params | ILitError | any }
*/
export const canonicalSolRpcConditionFormatter = (
cond: ConditionItem,
requireV2Conditions: boolean = false
):
| any[]
| AccsOperatorParams
| AccsRegularParams
| AccsSOLV2Params
| ILitError
| any => {
// -- if is array
if (Array.isArray(cond)) {
return cond.map((c: ConditionItem) =>
canonicalSolRpcConditionFormatter(c, requireV2Conditions)
);
}
// -- if there's a `operator` key in the object
if ('operator' in cond) {
return getOperatorParam(cond);
}
// -- if it has a return value
if ('returnValueTest' in cond) {
const { returnValueTest } = cond as AccsRegularParams;
const canonicalReturnValueTest = {
key: returnValueTest.key,
comparator: returnValueTest.comparator,
value: returnValueTest.value,
};
// -- check if this is a sol v1 or v2 condition
// -- v1 conditions didn't have any pda params or pda interface or pda key
// -- SOL version 1:: return V2 must have params
if ('pdaParams' in cond || requireV2Conditions) {
const _assumedV2Cond = cond as AccsSOLV2Params;
if (
!('pdaInterface' in _assumedV2Cond) ||
!('pdaKey' in _assumedV2Cond) ||
!('offset' in _assumedV2Cond.pdaInterface) ||
!('fields' in _assumedV2Cond.pdaInterface)
) {
throwError({
message: `Solana RPC Conditions have changed and there are some new fields you must include in your condition. Check the docs here: https://developer.litprotocol.com/AccessControlConditions/solRpcConditions`,
errorKind: LIT_ERROR.INVALID_ACCESS_CONTROL_CONDITIONS.kind,
errorCode: LIT_ERROR.INVALID_ACCESS_CONTROL_CONDITIONS.name,
});
}
// -- else
const canonicalPdaInterface = {
offset: _assumedV2Cond.pdaInterface.offset,
fields: _assumedV2Cond.pdaInterface.fields,
};
const _solV2Cond = cond as AccsSOLV2Params;
const _requiredParams: AccsSOLV2Params = {
method: _solV2Cond.method,
params: _solV2Cond.params,
pdaParams: _solV2Cond.pdaParams,
pdaInterface: canonicalPdaInterface,
pdaKey: _solV2Cond.pdaKey,
chain: _solV2Cond.chain,
returnValueTest: canonicalReturnValueTest,
};
return _requiredParams;
// -- SOL version 2:: return default params
} else {
const _solV1Cond = cond as AccsRegularParams;
const _requiredParams: AccsRegularParams = {
method: _solV1Cond.method,
params: _solV1Cond.params,
chain: _solV1Cond.chain,
returnValueTest: canonicalReturnValueTest,
};
return _requiredParams;
}
}
// -- else
throwError({
message: `You passed an invalid access control condition: ${cond}`,
errorKind: LIT_ERROR.INVALID_ACCESS_CONTROL_CONDITIONS.kind,
errorCode: LIT_ERROR.INVALID_ACCESS_CONTROL_CONDITIONS.name,
});
};
/**
*
* (DEFAULT) Canonical Access Control Condition Formatter
*
* need to return in the exact format below:
---
pub struct JsonAccessControlCondition {
pub contract_address: String,
pub chain: String,
pub standard_contract_type: String,
pub method: String,
pub parameters: Vec<String>,
pub return_value_test: JsonReturnValueTest,
}
---
*
* @param { object } cond
*
* @returns { any[] | AccsOperatorParams | AccsDefaultParams | any }
*/
export const canonicalAccessControlConditionFormatter = (
cond: ConditionItem
): any[] | AccsOperatorParams | AccsDefaultParams | any => {
// -- if it's an array
if (Array.isArray(cond)) {
return cond.map((c) => canonicalAccessControlConditionFormatter(c));
}
// -- if there's a `operator` key in the object
if ('operator' in cond) {
return getOperatorParam(cond);
}
if ('returnValueTest' in cond) {
const _cond = cond as AccsDefaultParams;
const _return: AccsDefaultParams = {
contractAddress: _cond.contractAddress,
chain: _cond.chain,
standardContractType: _cond.standardContractType,
method: _cond.method,
parameters: _cond.parameters,
returnValueTest: {
comparator: _cond.returnValueTest.comparator,
value: _cond.returnValueTest.value,
},
};
return _return;
}
throwError({
message: `You passed an invalid access control condition: ${cond}`,
errorKind: LIT_ERROR.INVALID_ACCESS_CONTROL_CONDITIONS.kind,
errorCode: LIT_ERROR.INVALID_ACCESS_CONTROL_CONDITIONS.name,
});
};
/**
*
* (EVM) Canonical EVM Contract Condition Formatter
*
* need to return in the exact format below:
---
pub struct JsonAccessControlCondition {
pub contract_address: String,
pub chain: String,
pub standard_contract_type: String,
pub method: String,
pub parameters: Vec<String>,
pub return_value_test: JsonReturnValueTest,
}
---
*
* @param { ConditionItem } cond
*
* @returns
*/
export const canonicalEVMContractConditionFormatter = (
cond: ConditionItem
): any[] | AccsOperatorParams | AccsEVMParams | any => {
// -- if it's an array
if (Array.isArray(cond)) {
return cond.map((c) => canonicalEVMContractConditionFormatter(c));
}
// -- if there's a `operator` key in the object
if ('operator' in cond) {
const _cond = cond as AccsOperatorParams;
return {
operator: _cond.operator,
};
}
if ('returnValueTest' in cond) {
/* abi needs to match:
pub name: String,
/// Function input.
pub inputs: Vec<Param>,
/// Function output.
pub outputs: Vec<Param>,
#[deprecated(note = "The constant attribute was removed in Solidity 0.5.0 and has been \
replaced with stateMutability. If parsing a JSON AST created with \
this version or later this value will always be false, which may be wrong.")]
/// Constant function.
#[cfg_attr(feature = "full-serde", serde(default))]
pub constant: bool,
/// Whether the function reads or modifies blockchain state
#[cfg_attr(feature = "full-serde", serde(rename = "stateMutability", default))]
pub state_mutability: StateMutability,
*/
const evmCond = cond as AccsEVMParams;
const { functionAbi, returnValueTest } = evmCond;
const canonicalAbi = {
name: functionAbi.name,
inputs: canonicalAbiParamss(functionAbi.inputs),
outputs: canonicalAbiParamss(functionAbi.outputs),
constant:
typeof functionAbi.constant === 'undefined'
? false
: functionAbi.constant,
stateMutability: functionAbi.stateMutability,
};
const canonicalReturnValueTest = {
key: returnValueTest.key,
comparator: returnValueTest.comparator,
value: returnValueTest.value,
};
const _return: AccsEVMParams = {
contractAddress: evmCond.contractAddress,
functionName: evmCond.functionName,
functionParams: evmCond.functionParams,
functionAbi: canonicalAbi,
chain: evmCond.chain,
returnValueTest: canonicalReturnValueTest,
};
return _return;
}
throwError({
message: `You passed an invalid access control condition: ${cond}`,
errorKind: LIT_ERROR.INVALID_ACCESS_CONTROL_CONDITIONS.kind,
errorCode: LIT_ERROR.INVALID_ACCESS_CONTROL_CONDITIONS.name,
});
};
/**
*
* (COSMOS) Canonical Condition Formmater for Cosmos
*
* need to return in the exact format below:
---
pub struct CosmosCondition {
pub path: String,
pub chain: String,
pub return_value_test: JsonReturnValueTestV2,
}
---
*
*
* @param { ConditionItem } cond
* @returns
*/
export const canonicalCosmosConditionFormatter = (
cond: ConditionItem
): any[] | AccsOperatorParams | AccsCOSMOSParams | any => {
// -- if it's an array
if (Array.isArray(cond)) {
return cond.map((c: any) => canonicalCosmosConditionFormatter(c));
}
// -- if there's a `operator` key in the object
if ('operator' in cond) {
const _cond = cond as AccsOperatorParams;
return {
operator: _cond.operator,
};
}
if ('returnValueTest' in cond) {
const _cosmosCond = cond as AccsCOSMOSParams;
const { returnValueTest } = _cosmosCond;
const canonicalReturnValueTest = {
key: returnValueTest.key,
comparator: returnValueTest.comparator,
value: returnValueTest.value,
};
return {
path: _cosmosCond.path,
chain: _cosmosCond.chain,
method: _cosmosCond?.method,
parameters: _cosmosCond?.parameters,
returnValueTest: canonicalReturnValueTest,
};
}
throwError({
message: `You passed an invalid access control condition: ${cond}`,
errorKind: LIT_ERROR.INVALID_ACCESS_CONTROL_CONDITIONS.kind,
errorCode: LIT_ERROR.INVALID_ACCESS_CONTROL_CONDITIONS.name,
});
};
/**
*
* Canonical ResourceId Formatter returning JSON signing resource id
*
* @param { JsonSigningResourceId } resId
*
* @returns { JsonSigningResourceId }
*
*/
export const canonicalResourceIdFormatter = (
resId: JsonSigningResourceId
): JsonSigningResourceId => {
// need to return in the exact format below:
return {
baseUrl: resId.baseUrl,
path: resId.path,
orgId: resId.orgId,
role: resId.role,
extraData: resId.extraData,
};
};