mirror of
https://github.com/kremalicious/umami.git
synced 2025-02-14 21:10:34 +01:00
37 lines
912 B
TypeScript
37 lines
912 B
TypeScript
import { useAuth, useCors, useValidate } from 'lib/middleware';
|
|
import { NextApiRequestQueryBody, SearchFilter, WebsiteSearchFilterType } from 'lib/types';
|
|
import { pageInfo } from 'lib/schema';
|
|
import { NextApiResponse } from 'next';
|
|
import { methodNotAllowed } from 'next-basics';
|
|
import userWebsites from 'pages/api/users/[id]/websites';
|
|
import * as yup from 'yup';
|
|
|
|
export interface MyWebsitesRequestQuery extends SearchFilter<WebsiteSearchFilterType> {
|
|
id: string;
|
|
}
|
|
|
|
const schema = {
|
|
GET: yup.object().shape({
|
|
...pageInfo,
|
|
}),
|
|
};
|
|
|
|
export default async (
|
|
req: NextApiRequestQueryBody<MyWebsitesRequestQuery, any>,
|
|
res: NextApiResponse,
|
|
) => {
|
|
await useCors(req, res);
|
|
await useAuth(req, res);
|
|
|
|
req.yup = schema;
|
|
await useValidate(req, res);
|
|
|
|
if (req.method === 'GET') {
|
|
req.query.id = req.auth.user.id;
|
|
|
|
return userWebsites(req, res);
|
|
}
|
|
|
|
return methodNotAllowed(res);
|
|
};
|