umami/pages/api/websites.js

24 lines
604 B
JavaScript
Raw Normal View History

2020-08-12 07:24:41 +02:00
import { getUserWebsites } from 'lib/queries';
import { useAuth } from 'lib/middleware';
2020-09-11 08:55:29 +02:00
import { ok, methodNotAllowed, unauthorized } from 'lib/response';
2020-08-12 07:24:41 +02:00
export default async (req, res) => {
await useAuth(req, res);
const { user_id: current_user_id, is_admin } = req.auth;
const { user_id } = req.query;
const userId = +user_id;
2020-08-12 07:24:41 +02:00
if (req.method === 'GET') {
if (userId !== current_user_id && !is_admin) {
2020-09-11 08:55:29 +02:00
return unauthorized(res);
}
const websites = await getUserWebsites(userId || current_user_id);
2020-08-12 07:24:41 +02:00
return ok(res, websites);
}
return methodNotAllowed(res);
};