mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 17:55:08 +01:00
167 lines
3.1 KiB
TypeScript
167 lines
3.1 KiB
TypeScript
import { Prisma, Team } from '@prisma/client';
|
|
import cache from 'lib/cache';
|
|
import prisma from 'lib/prisma';
|
|
import { Website } from 'lib/types';
|
|
|
|
export interface User {
|
|
id: string;
|
|
username: string;
|
|
password?: string;
|
|
createdAt?: Date;
|
|
}
|
|
|
|
export async function getUser(
|
|
where: Prisma.UserWhereUniqueInput,
|
|
options: { includePassword?: boolean } = {},
|
|
): Promise<User> {
|
|
const { includePassword = false } = options;
|
|
|
|
return prisma.client.user.findUnique({
|
|
where,
|
|
select: {
|
|
id: true,
|
|
username: true,
|
|
password: includePassword,
|
|
role: true,
|
|
},
|
|
});
|
|
}
|
|
|
|
export async function getUsers(): Promise<User[]> {
|
|
return prisma.client.user.findMany({
|
|
where: {
|
|
deletedAt: null,
|
|
},
|
|
orderBy: [
|
|
{
|
|
username: 'asc',
|
|
},
|
|
],
|
|
select: {
|
|
id: true,
|
|
username: true,
|
|
role: true,
|
|
createdAt: true,
|
|
},
|
|
});
|
|
}
|
|
|
|
export async function getUserTeams(userId: string): Promise<Team[]> {
|
|
return prisma.client.team.findMany({
|
|
where: {
|
|
teamUsers: {
|
|
some: {
|
|
userId,
|
|
},
|
|
},
|
|
},
|
|
include: {
|
|
teamUsers: {
|
|
include: {
|
|
user: true,
|
|
},
|
|
},
|
|
},
|
|
});
|
|
}
|
|
|
|
export async function getUserWebsites(userId: string): Promise<Website[]> {
|
|
return prisma.client.website.findMany({
|
|
where: {
|
|
userId,
|
|
},
|
|
orderBy: [
|
|
{
|
|
name: 'asc',
|
|
},
|
|
],
|
|
});
|
|
}
|
|
|
|
export async function createUser(data: {
|
|
id: string;
|
|
username: string;
|
|
password: string;
|
|
role: string;
|
|
}): Promise<{
|
|
id: string;
|
|
username: string;
|
|
role: string;
|
|
}> {
|
|
return prisma.client.user.create({
|
|
data,
|
|
select: {
|
|
id: true,
|
|
username: true,
|
|
role: true,
|
|
},
|
|
});
|
|
}
|
|
|
|
export async function updateUser(
|
|
data: Prisma.UserUpdateInput,
|
|
where: Prisma.UserWhereUniqueInput,
|
|
): Promise<User> {
|
|
return prisma.client.user.update({
|
|
where,
|
|
data,
|
|
select: {
|
|
id: true,
|
|
username: true,
|
|
role: true,
|
|
createdAt: true,
|
|
},
|
|
});
|
|
}
|
|
|
|
export async function deleteUser(
|
|
userId: string,
|
|
): Promise<[Prisma.BatchPayload, Prisma.BatchPayload, Prisma.BatchPayload, User]> {
|
|
const { client } = prisma;
|
|
|
|
const websites = await client.website.findMany({
|
|
where: { userId },
|
|
});
|
|
|
|
let websiteIds = [];
|
|
|
|
if (websites.length > 0) {
|
|
websiteIds = websites.map(a => a.id);
|
|
}
|
|
|
|
return prisma
|
|
.transaction([
|
|
client.websiteEvent.deleteMany({
|
|
where: { websiteId: { in: websiteIds } },
|
|
}),
|
|
client.session.deleteMany({
|
|
where: { websiteId: { in: websiteIds } },
|
|
}),
|
|
client.website.updateMany({
|
|
data: {
|
|
deletedAt: new Date(),
|
|
},
|
|
where: { id: { in: websiteIds } },
|
|
}),
|
|
client.user.update({
|
|
data: {
|
|
deletedAt: new Date(),
|
|
},
|
|
where: {
|
|
id: userId,
|
|
},
|
|
}),
|
|
])
|
|
.then(async data => {
|
|
if (cache.enabled) {
|
|
const ids = websites.map(a => a.id);
|
|
|
|
for (let i = 0; i < ids.length; i++) {
|
|
await cache.deleteWebsite(`website:${ids[i]}`);
|
|
}
|
|
}
|
|
|
|
return data;
|
|
});
|
|
}
|