2022-12-13 04:45:38 +01:00
|
|
|
import { Prisma, Website } from '@prisma/client';
|
|
|
|
import cache from 'lib/cache';
|
|
|
|
import prisma from 'lib/prisma';
|
|
|
|
|
|
|
|
export async function getWebsite(where: Prisma.WebsiteWhereUniqueInput): Promise<Website> {
|
|
|
|
return prisma.client.website.findUnique({
|
|
|
|
where,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
export async function getWebsites(): Promise<Website[]> {
|
|
|
|
return prisma.client.website.findMany({
|
|
|
|
orderBy: {
|
|
|
|
name: 'asc',
|
|
|
|
},
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
export async function createWebsite(
|
|
|
|
data: Prisma.WebsiteCreateInput | Prisma.WebsiteUncheckedCreateInput,
|
|
|
|
): Promise<Website> {
|
|
|
|
return prisma.client.website
|
|
|
|
.create({
|
|
|
|
data,
|
|
|
|
})
|
|
|
|
.then(async data => {
|
|
|
|
if (cache.enabled) {
|
|
|
|
await cache.storeWebsite(data);
|
|
|
|
}
|
|
|
|
|
|
|
|
return data;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
export async function updateWebsite(
|
|
|
|
websiteId,
|
|
|
|
data: Prisma.WebsiteUpdateInput | Prisma.WebsiteUncheckedUpdateInput,
|
|
|
|
): Promise<Website> {
|
|
|
|
return prisma.client.website.update({
|
|
|
|
where: {
|
|
|
|
id: websiteId,
|
|
|
|
},
|
|
|
|
data,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
export async function resetWebsite(
|
|
|
|
websiteId,
|
|
|
|
): Promise<[Prisma.BatchPayload, Prisma.BatchPayload, Website]> {
|
|
|
|
const { client, transaction } = prisma;
|
|
|
|
|
|
|
|
return transaction([
|
|
|
|
client.websiteEvent.deleteMany({
|
|
|
|
where: { websiteId },
|
|
|
|
}),
|
|
|
|
client.session.deleteMany({
|
|
|
|
where: { websiteId },
|
|
|
|
}),
|
2023-03-27 20:25:16 +02:00
|
|
|
client.website.update({
|
|
|
|
where: { id: websiteId },
|
|
|
|
data: {
|
|
|
|
resetAt: new Date(),
|
|
|
|
},
|
|
|
|
}),
|
2022-12-13 04:45:38 +01:00
|
|
|
]).then(async data => {
|
|
|
|
if (cache.enabled) {
|
|
|
|
await cache.storeWebsite(data[2]);
|
|
|
|
}
|
|
|
|
|
|
|
|
return data;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2023-02-28 01:01:34 +01:00
|
|
|
export async function deleteWebsite(
|
2022-12-13 04:45:38 +01:00
|
|
|
websiteId,
|
|
|
|
): Promise<[Prisma.BatchPayload, Prisma.BatchPayload, Website]> {
|
|
|
|
const { client, transaction } = prisma;
|
2023-02-28 01:01:34 +01:00
|
|
|
const cloudMode = process.env.CLOUD_MODE;
|
2022-12-13 04:45:38 +01:00
|
|
|
|
|
|
|
return transaction([
|
2023-04-07 20:40:28 +02:00
|
|
|
client.eventData.deleteMany({
|
|
|
|
where: { websiteId },
|
|
|
|
}),
|
2022-12-13 04:45:38 +01:00
|
|
|
client.websiteEvent.deleteMany({
|
|
|
|
where: { websiteId },
|
|
|
|
}),
|
|
|
|
client.session.deleteMany({
|
|
|
|
where: { websiteId },
|
|
|
|
}),
|
2023-03-03 07:48:30 +01:00
|
|
|
client.teamWebsite.deleteMany({
|
|
|
|
where: {
|
|
|
|
websiteId,
|
|
|
|
},
|
|
|
|
}),
|
2023-02-28 01:01:34 +01:00
|
|
|
cloudMode
|
|
|
|
? prisma.client.website.update({
|
|
|
|
data: {
|
|
|
|
deletedAt: new Date(),
|
|
|
|
},
|
|
|
|
where: { id: websiteId },
|
|
|
|
})
|
|
|
|
: client.website.delete({
|
|
|
|
where: { id: websiteId },
|
|
|
|
}),
|
2022-12-13 04:45:38 +01:00
|
|
|
]).then(async data => {
|
|
|
|
if (cache.enabled) {
|
|
|
|
await cache.deleteWebsite(websiteId);
|
|
|
|
}
|
|
|
|
|
|
|
|
return data;
|
|
|
|
});
|
|
|
|
}
|