-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproduct.repository.ts
134 lines (129 loc) · 4.74 KB
/
product.repository.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
import ProductProvider from "../abstracts/product.abstract.js";
import { prisma } from "../index.js";
import { Prisma } from "@prisma/client";
import { ProductNotFoundError } from "../errors/product.error.js";
import {
CreateProduct,
GetProduct,
PrismaProduct,
PrismaProducts,
} from "../types.js";
import {
PrismaClientInitializationError,
PrismaClientRustPanicError,
PrismaClientUnknownRequestError,
PrismaClientValidationError,
PrismaGenericError,
} from "../errors/prisma.error.js";
class ProductRepository implements ProductProvider {
public getProducts = async (): Promise<PrismaProducts> => {
try {
const products: PrismaProducts = await prisma.product.findMany();
return products;
} catch (e) {
if (e instanceof Prisma.PrismaClientKnownRequestError) {
throw new PrismaGenericError();
} else if (e instanceof Prisma.PrismaClientUnknownRequestError) {
throw new PrismaClientUnknownRequestError();
} else if (e instanceof Prisma.PrismaClientRustPanicError) {
throw new PrismaClientRustPanicError();
} else if (e instanceof Prisma.PrismaClientInitializationError) {
throw new PrismaClientInitializationError();
} else if (e instanceof Prisma.PrismaClientValidationError) {
throw new PrismaClientValidationError();
} else {
throw new PrismaGenericError();
}
}
};
public getProductById = async (
getProduct: GetProduct
): Promise<PrismaProduct> => {
try {
const product: PrismaProduct | null = await prisma.product.findUnique({
where: { id: getProduct.params.id },
});
if (product === null) {
throw new ProductNotFoundError();
}
return product;
} catch (e) {
if (e instanceof Prisma.PrismaClientKnownRequestError) {
throw new PrismaGenericError();
} else if (e instanceof Prisma.PrismaClientUnknownRequestError) {
throw new PrismaClientUnknownRequestError();
} else if (e instanceof Prisma.PrismaClientRustPanicError) {
throw new PrismaClientRustPanicError();
} else if (e instanceof Prisma.PrismaClientInitializationError) {
throw new PrismaClientInitializationError();
} else if (e instanceof Prisma.PrismaClientValidationError) {
throw new PrismaClientValidationError();
} else if (e instanceof ProductNotFoundError) {
throw new ProductNotFoundError();
} else {
throw new PrismaGenericError();
}
}
};
public createProduct = async (
createProduct: CreateProduct
): Promise<PrismaProduct> => {
try {
const newProduct: PrismaProduct = await prisma.product.create({
data: {
title: createProduct.body.title,
size: createProduct.body.size,
color: createProduct.body.color,
description: createProduct.body.description,
gender: createProduct.body.gender,
category: createProduct.body.category,
price: createProduct.body.price,
imageUrl: createProduct.body.imageUrl,
},
});
return newProduct;
} catch (e) {
if (e instanceof Prisma.PrismaClientKnownRequestError) {
throw new PrismaGenericError();
} else if (e instanceof Prisma.PrismaClientUnknownRequestError) {
throw new PrismaClientUnknownRequestError();
} else if (e instanceof Prisma.PrismaClientRustPanicError) {
throw new PrismaClientRustPanicError();
} else if (e instanceof Prisma.PrismaClientInitializationError) {
throw new PrismaClientInitializationError();
} else if (e instanceof Prisma.PrismaClientValidationError) {
throw new PrismaClientValidationError();
} else {
throw new PrismaGenericError();
}
}
};
public deleteProduct = async (
getProduct: GetProduct
): Promise<PrismaProduct> => {
try {
const product: PrismaProduct | null = await prisma.product.delete({
where: { id: getProduct.params.id },
});
if (product === null) {
throw new ProductNotFoundError();
}
return product;
} catch (e) {
if (e instanceof Prisma.PrismaClientKnownRequestError) {
throw new PrismaGenericError();
} else if (e instanceof Prisma.PrismaClientUnknownRequestError) {
throw new PrismaClientUnknownRequestError();
} else if (e instanceof Prisma.PrismaClientRustPanicError) {
throw new PrismaClientRustPanicError();
} else if (e instanceof Prisma.PrismaClientInitializationError) {
throw new PrismaClientInitializationError();
} else if (e instanceof Prisma.PrismaClientValidationError) {
throw new PrismaClientValidationError();
} else {
throw new PrismaGenericError();
}
}
};
}
export default ProductRepository;