mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 17:55:08 +01:00
37 lines
835 B
TypeScript
37 lines
835 B
TypeScript
import { NextApiRequestQueryBody } from 'lib/types';
|
|
import { secret } from 'lib/crypto';
|
|
import { NextApiResponse } from 'next';
|
|
import { createToken, methodNotAllowed, notFound, ok } from 'next-basics';
|
|
import { getWebsite } from 'queries';
|
|
|
|
export interface ShareRequestQuery {
|
|
id: string;
|
|
}
|
|
|
|
export interface ShareResponse {
|
|
id: string;
|
|
token: string;
|
|
}
|
|
|
|
export default async (
|
|
req: NextApiRequestQueryBody<ShareRequestQuery>,
|
|
res: NextApiResponse<ShareResponse>,
|
|
) => {
|
|
const { id: shareId } = req.query;
|
|
|
|
if (req.method === 'GET') {
|
|
const website = await getWebsite({ shareId });
|
|
|
|
if (website) {
|
|
const data = { websiteId: website.id };
|
|
const token = createToken(data, secret());
|
|
|
|
return ok(res, { ...data, token });
|
|
}
|
|
|
|
return notFound(res);
|
|
}
|
|
|
|
return methodNotAllowed(res);
|
|
};
|