mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 17:55:08 +01:00
24 lines
571 B
JavaScript
24 lines
571 B
JavaScript
import { getWebsiteByShareId } from 'queries';
|
|
import { ok, notFound, methodNotAllowed, createToken } from 'next-basics';
|
|
import { secret } from 'lib/crypto';
|
|
|
|
export default async (req, res) => {
|
|
const { id } = req.query;
|
|
|
|
if (req.method === 'GET') {
|
|
const website = await getWebsiteByShareId(id);
|
|
|
|
if (website) {
|
|
const { websiteUuid } = website;
|
|
const data = { id: websiteUuid };
|
|
const token = createToken(data, secret());
|
|
|
|
return ok(res, { ...data, token });
|
|
}
|
|
|
|
return notFound(res);
|
|
}
|
|
|
|
return methodNotAllowed(res);
|
|
};
|