umami/pages/api/websites/index.js

52 lines
1.4 KiB
JavaScript
Raw Normal View History

import { createWebsite, getAccount, getAllWebsites, getUserWebsites } from 'queries';
import { ok, methodNotAllowed, unauthorized, getRandomChars } from 'next-basics';
2020-08-12 07:24:41 +02:00
import { useAuth } from 'lib/middleware';
import { uuid } from 'lib/crypto';
2020-08-12 07:24:41 +02:00
export default async (req, res) => {
await useAuth(req, res);
const { user_id, include_all } = req.query;
const { userId: currentUserId, isAdmin } = req.auth;
const accountUuid = user_id || req.auth.accountUuid;
let account;
if (accountUuid) {
account = await getAccount({ accountUuid });
}
const userId = account ? account.id : user_id;
2020-08-12 07:24:41 +02:00
if (req.method === 'GET') {
if (!userId || (userId !== currentUserId && !isAdmin)) {
2020-09-11 08:55:29 +02:00
return unauthorized(res);
}
const websites =
isAdmin && include_all
? await getAllWebsites()
2022-10-26 05:17:13 +02:00
: await getUserWebsites({ userId: account?.id });
2020-08-12 07:24:41 +02:00
return ok(res, websites);
}
if (req.method === 'POST') {
2022-10-12 22:11:44 +02:00
const { name, domain, owner, enableShareUrl } = req.body;
const website_owner = account ? account.id : +owner;
if (website_owner !== currentUserId && !isAdmin) {
return unauthorized(res);
}
const websiteUuid = uuid();
2022-10-12 22:11:44 +02:00
const shareId = enableShareUrl ? getRandomChars(8) : null;
const website = await createWebsite(website_owner, { websiteUuid, name, domain, shareId });
return ok(res, website);
}
2020-08-12 07:24:41 +02:00
return methodNotAllowed(res);
};