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