-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathMarketplaceController.ts
More file actions
493 lines (456 loc) · 12.9 KB
/
Copy pathMarketplaceController.ts
File metadata and controls
493 lines (456 loc) · 12.9 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
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
import {
addressesByNetwork,
HypercertExchangeClient,
utils,
} from "@hypercerts-org/marketplace-sdk";
import { verifyTypedData } from "ethers";
import {
Body,
Controller,
Delete,
Post,
Response,
Route,
SuccessResponse,
Tags,
} from "tsoa";
import { z } from "zod";
import { isAddress, verifyMessage } from "viem";
import { EvmClientFactory } from "../client/evmClient.js";
import { SupabaseDataService } from "../services/SupabaseDataService.js";
import { BaseResponse } from "../types/api.js";
import { getFractionsById } from "../utils/getFractionsById.js";
import { isParsableToBigInt } from "../utils/isParsableToBigInt.js";
import { getHypercertTokenId } from "../utils/tokenIds.js";
export interface CreateOrderRequest {
signature: string;
chainId: number;
quoteType: number;
globalNonce: string;
subsetNonce: number;
orderNonce: string;
strategyId: number;
collectionType: number;
collection: string;
currency: string;
signer: string;
startTime: number;
endTime: number;
price: string;
itemIds: string[];
amounts: number[];
additionalParameters: string;
}
interface UpdateOrderNonceRequest {
address: string;
chainId: number;
}
interface ValidateOrderRequest {
tokenIds: string[];
chainId: number;
}
@Route("v1/marketplace")
@Tags("Marketplace")
export class MarketplaceController extends Controller {
/**
* Submits a new order for validation and storage on the database.
*
*/
@Post("/orders")
@SuccessResponse(201, "Order created successfully")
@Response<BaseResponse>(422, "Unprocessable content", {
success: false,
message: "Order could not be created",
})
public async storeOrder(@Body() requestBody: CreateOrderRequest) {
// Validate inputs
const inputSchema = z
.object({
signature: z.string(),
chainId: z.number(),
quoteType: z.number(),
globalNonce: z.string(),
subsetNonce: z.number(),
orderNonce: z.string(),
strategyId: z.number(),
collectionType: z.number(),
collection: z.string(),
currency: z.string(),
signer: z.string(),
startTime: z.number(),
endTime: z.number(),
price: z.string(),
itemIds: z.array(z.string()),
amounts: z.array(z.number()),
additionalParameters: z.string(),
})
.refine(
({ chainId }) => isParsableToBigInt(chainId),
`ChainId is not parseable as bigint`,
)
.refine(
({ globalNonce }) => isParsableToBigInt(globalNonce),
`globalNonce is not parseable as bigint`,
)
.refine(
({ orderNonce }) => isParsableToBigInt(orderNonce),
`orderNonce is not parseable as bigint`,
)
.refine(
({ price }) => isParsableToBigInt(price),
`price is not parseable as bigint`,
)
.refine(({ price }) => {
const priceBigInt = BigInt(price);
return priceBigInt > 0n;
}, `Price must be greater than 0`)
.refine(({ currency }) => isAddress(currency), `Invalid currency address`)
.refine(({ signer }) => isAddress(signer), `Invalid signer address`)
.refine(({ itemIds }) => itemIds.length > 0, `itemIds must not be empty`)
.refine(({ amounts }) => amounts.length > 0, `amounts must not be empty`)
.refine(
({ itemIds, amounts }) => itemIds.length === amounts.length,
"itemIds and amounts must have the same length",
)
.refine(
({ startTime, endTime }) => startTime < endTime,
"startTime must be less than endTime",
)
.refine(
({ collection }) => isAddress(collection),
`Invalid collection address`,
)
.refine(
({ collection, chainId }) =>
// @ts-expect-error Typing issue with chainId
addressesByNetwork[chainId]?.MINTER?.toLowerCase() ===
collection.toLowerCase(),
`Collection address does not match the minter address for chainId`,
);
const parsedBody = inputSchema.safeParse(requestBody);
if (!parsedBody.success) {
this.setStatus(400);
return {
success: false,
message: "Invalid input",
data: null,
error: JSON.parse(parsedBody.error.toString()),
};
}
const { signature, chainId, ...makerOrder } = parsedBody.data;
const hec = new HypercertExchangeClient(
chainId,
// @ts-expect-error Typing issue with provider
EvmClientFactory.createEthersClient(chainId),
);
const typedData = hec.getTypedDataDomain();
const recoveredAddress = verifyTypedData(
typedData,
utils.makerTypes,
makerOrder,
signature,
);
if (!(recoveredAddress.toLowerCase() === makerOrder.signer.toLowerCase())) {
this.setStatus(401);
return {
message: "Recovered address is not equal to signer of order",
success: false,
data: null,
};
}
const [validationResult] = await hec.checkOrdersValidity([
{ ...makerOrder, signature, chainId },
]);
if (!validationResult.valid) {
this.setStatus(401);
return {
message: "Order is not valid within contract",
success: false,
data: validationResult,
};
}
const tokenIds = makerOrder.itemIds.map(
(id) => `${chainId}-${makerOrder.collection}-${id}`,
);
const fractions = await Promise.all(
tokenIds.map((fractionId) => getFractionsById(fractionId)),
);
// Check if all fractions exist
if (fractions.some((fraction) => !fraction)) {
this.setStatus(401);
return {
message: "Not all fractions in itemIds exist",
success: false,
data: null,
};
}
const allFractions = fractions.flatMap((fraction) => fraction || []);
// Check if all fractions are owned by signer
if (
!allFractions.every(
(claimToken) =>
claimToken?.owner_address?.toLowerCase() ===
recoveredAddress.toLowerCase(),
)
) {
this.setStatus(401);
return {
message: "Not all fractions are owned by signer",
success: false,
data: null,
};
}
try {
const tokenId = makerOrder.itemIds[0];
const hypercertTokenId = getHypercertTokenId(BigInt(tokenId));
const formattedHypercertId = `${chainId}-${makerOrder.collection}-${hypercertTokenId.toString()}`;
// Add to database
const insertEntity = {
...makerOrder,
chainId,
signature,
hypercert_id: formattedHypercertId,
};
console.log("[marketplace-api] Inserting order entity", insertEntity);
const supabaseService = new SupabaseDataService();
const result = await supabaseService.storeOrder(insertEntity);
this.setStatus(200);
return {
message: "Added to database",
success: true,
data: result.data
? {
...result.data,
itemIds: result.data.itemIds as string[],
amounts: result.data.amounts as number[],
status: "VALID",
hash: "0x",
}
: null,
};
} catch (error) {
console.error(error);
if (error) {
this.setStatus(500);
return {
message: "Could not add to database",
success: false,
data: null,
};
}
}
}
/**
* Updates and returns the order nonce for a user on a specific chain.
*/
@Post("/order-nonce")
@Response<BaseResponse>(422, "Unprocessable content", {
success: false,
message: "Order nonce could not be updated",
})
@SuccessResponse(200, "Order nonce updated successfully")
public async updateOrderNonce(@Body() requestBody: UpdateOrderNonceRequest) {
const inputSchema = z
.object({
address: z.string({
required_error: "Address is required",
invalid_type_error: "Address must be a string",
}),
chainId: z.number({
required_error: "Chain ID is required",
invalid_type_error: "Chain ID must be a number",
}),
})
.refine((data) => isAddress(data.address), {
message: "Invalid address",
path: ["address"],
});
const parsedQuery = inputSchema.safeParse(requestBody);
if (!parsedQuery.success) {
this.setStatus(422);
return {
success: false,
message: parsedQuery.error.message,
data: null,
};
}
const { address, chainId } = parsedQuery.data;
const lowerCaseAddress = address.toLowerCase();
const supabase = new SupabaseDataService();
const { data: currentNonce, error: currentNonceError } =
await supabase.getNonce(lowerCaseAddress, chainId);
if (currentNonceError) {
this.setStatus(500);
return {
success: false,
message: currentNonceError.message,
data: null,
};
}
if (!currentNonce) {
const { data: newNonce, error } = await supabase.createNonce(
lowerCaseAddress,
chainId,
);
if (error) {
this.setStatus(500);
return {
success: false,
message: error.message,
data: null,
};
}
this.setStatus(200);
return {
success: true,
message: "Success aaa",
data: newNonce,
};
}
const { data: updatedNonce, error: updatedNonceError } =
await supabase.updateNonce(
lowerCaseAddress,
chainId,
currentNonce.nonce_counter + 1,
);
if (updatedNonceError) {
this.setStatus(500);
return {
success: false,
message: updatedNonceError.message,
data: null,
};
}
this.setStatus(200);
return {
success: true,
message: "Success aaa",
data: updatedNonce,
};
}
/**
* Validates an order and marks it as invalid if validation fails.
*/
@Post("/orders/validate")
@SuccessResponse(200, "Order validated successfully")
@Response<BaseResponse>(422, "Unprocessable content", {
success: false,
message: "Order could not be validated",
})
async validateOrder(@Body() requestBody: ValidateOrderRequest) {
const inputSchema = z.object({
tokenIds: z.array(z.string()),
chainId: z.number(),
});
const parsedQuery = inputSchema.safeParse(requestBody);
if (!parsedQuery.success) {
this.setStatus(422);
return {
success: false,
message: parsedQuery.error.message,
data: null,
};
}
const { tokenIds, chainId } = parsedQuery.data;
const supabase = new SupabaseDataService();
try {
const ordersToUpdate = await supabase.validateOrdersByTokenIds({
tokenIds,
chainId,
});
this.setStatus(200);
return {
success: true,
message: "Orders have been validated",
data: ordersToUpdate,
};
} catch (error) {
console.error(error);
if (error) {
this.setStatus(500);
return {
success: false,
message: "Could not validate orders",
data: null,
};
}
}
}
/**
* Delete order from database
*/
@Delete("/orders")
@SuccessResponse(200, "Order deleted successfully")
@Response<BaseResponse>(422, "Unprocessable content", {
success: false,
message: "Order could not be deleted",
})
async deleteOrder(
@Body() requestBody: { orderId: string; signature: string },
) {
const inputSchema = z.object({
orderId: z.string(),
signature: z.string(),
});
const parsedQuery = inputSchema.safeParse(requestBody);
if (!parsedQuery.success) {
this.setStatus(422);
return {
success: false,
message: parsedQuery.error.message,
data: null,
};
}
const { orderId, signature } = parsedQuery.data;
const supabase = new SupabaseDataService();
const { data } = supabase.getOrders({
where: {
id: {
eq: orderId,
},
},
});
const order = await data.executeTakeFirst();
if (!order) {
this.setStatus(404);
return {
success: false,
message: "Order not found",
data: null,
};
}
const signerAddress = order.signer;
const signatureCorrect = await verifyMessage({
message: `Delete listing ${orderId}`,
signature: signature as `0x${string}`,
address: signerAddress as `0x${string}`,
});
if (!signatureCorrect) {
this.setStatus(401);
return {
success: false,
message: "Invalid signature",
data: null,
};
}
try {
await supabase.deleteOrder(orderId);
this.setStatus(200);
return {
success: true,
message: "Order has been deleted",
data: null,
};
} catch (error) {
console.error(error);
if (error) {
this.setStatus(500);
return {
success: false,
message: "Could not delete order",
data: null,
};
}
}
}
}