2022-02-10 15:47:44 +01:00
|
|
|
import { getTeam, getUserDetails } from '$lib/common';
|
|
|
|
import * as db from '$lib/database';
|
2022-02-14 09:28:37 +01:00
|
|
|
import { ErrorHandler } from '$lib/database';
|
2022-02-10 15:47:44 +01:00
|
|
|
import type { RequestHandler } from '@sveltejs/kit';
|
|
|
|
|
|
|
|
export const get: RequestHandler = async (event) => {
|
|
|
|
const { userId, teamId, status, body } = await getUserDetails(event);
|
|
|
|
if (status === 401) return { status, body };
|
|
|
|
|
|
|
|
try {
|
2022-03-25 10:36:47 +01:00
|
|
|
const applicationsCount = await db.prisma.application.count({
|
|
|
|
where: { teams: { some: { id: teamId } } }
|
|
|
|
});
|
|
|
|
const sourcesCount = await db.prisma.gitSource.count({
|
|
|
|
where: { teams: { some: { id: teamId } } }
|
|
|
|
});
|
|
|
|
const destinationsCount = await db.prisma.destinationDocker.count({
|
|
|
|
where: { teams: { some: { id: teamId } } }
|
|
|
|
});
|
|
|
|
const teamsCount = await db.prisma.permission.count({ where: { userId } });
|
|
|
|
const databasesCount = await db.prisma.database.count({
|
|
|
|
where: { teams: { some: { id: teamId } } }
|
|
|
|
});
|
|
|
|
const servicesCount = await db.prisma.service.count({
|
|
|
|
where: { teams: { some: { id: teamId } } }
|
|
|
|
});
|
2022-02-10 15:47:44 +01:00
|
|
|
return {
|
|
|
|
body: {
|
|
|
|
applicationsCount,
|
|
|
|
sourcesCount,
|
|
|
|
destinationsCount,
|
|
|
|
teamsCount,
|
|
|
|
databasesCount,
|
|
|
|
servicesCount
|
|
|
|
}
|
|
|
|
};
|
|
|
|
} catch (error) {
|
2022-02-14 09:28:37 +01:00
|
|
|
return ErrorHandler(error);
|
2022-02-10 15:47:44 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
export const post: RequestHandler = async (event) => {
|
|
|
|
const { status, body } = await getUserDetails(event, false);
|
|
|
|
if (status === 401) return { status, body };
|
|
|
|
|
|
|
|
const { cookie, value } = await event.request.json();
|
|
|
|
const from = event.url.searchParams.get('from') || '/';
|
|
|
|
|
|
|
|
return {
|
|
|
|
status: 302,
|
|
|
|
body: {},
|
|
|
|
headers: {
|
|
|
|
'set-cookie': [
|
|
|
|
`${cookie}=${value}; HttpOnly; Path=/; Max-Age=15778800;`,
|
|
|
|
'gitlabToken=; path=/; expires=Thu, 01 Jan 1970 00:00:00 GMT'
|
|
|
|
],
|
|
|
|
Location: from
|
|
|
|
}
|
|
|
|
};
|
|
|
|
};
|