umami/lib/auth.ts

123 lines
2.8 KiB
TypeScript
Raw Normal View History

2022-10-31 19:02:37 +01:00
import debug from 'debug';
2022-11-19 03:49:58 +01:00
import { NextApiRequestAuth } from 'interface/api/nextApi';
2022-11-20 09:48:13 +01:00
import cache from 'lib/cache';
2022-11-19 03:49:58 +01:00
import { SHARE_TOKEN_HEADER, UmamiApi } from 'lib/constants';
2022-10-12 06:48:33 +02:00
import { secret } from 'lib/crypto';
2022-11-19 03:49:58 +01:00
import { parseSecureToken, parseToken } from 'next-basics';
2022-11-20 09:48:13 +01:00
import { getPermissionsByUserId, getTeamUser, getUser } from 'queries';
2020-07-28 08:52:14 +02:00
2022-10-31 19:02:37 +01:00
const log = debug('umami:auth');
export function getAuthToken(req) {
2022-11-11 18:42:54 +01:00
try {
return req.headers.authorization.split(' ')[1];
} catch {
return null;
}
}
2022-10-31 19:02:37 +01:00
export function parseAuthToken(req) {
try {
return parseSecureToken(getAuthToken(req), secret());
2022-10-31 19:02:37 +01:00
} catch (e) {
log(e);
return null;
}
2020-08-05 07:45:05 +02:00
}
2022-10-31 19:02:37 +01:00
export function parseShareToken(req) {
2022-10-12 06:48:33 +02:00
try {
2022-10-25 04:48:10 +02:00
return parseToken(req.headers[SHARE_TOKEN_HEADER], secret());
2022-10-31 19:02:37 +01:00
} catch (e) {
log(e);
2022-10-12 06:48:33 +02:00
return null;
}
}
2022-11-30 06:56:43 +01:00
export function hasPermission(
value: UmamiApi.Role | UmamiApi.Permission,
permissions: UmamiApi.Role[] | UmamiApi.Permission[],
) {
return permissions.some(a => a === value);
}
2022-10-12 06:48:33 +02:00
export function isValidToken(token, validation) {
try {
if (typeof validation === 'object') {
2022-10-25 04:48:10 +02:00
return !Object.keys(validation).find(key => token[key] !== validation[key]);
} else if (typeof validation === 'function') {
2022-10-25 04:48:10 +02:00
return validation(token);
}
} catch (e) {
2022-10-31 19:02:37 +01:00
log(e);
return false;
}
return false;
}
2022-11-19 03:49:58 +01:00
export async function allowQuery(
req: NextApiRequestAuth,
type: UmamiApi.AuthType,
typeId?: string,
) {
const { id } = req.query as { id: string };
2022-11-16 20:44:36 +01:00
const { user, shareToken } = req.auth;
2022-10-12 22:11:44 +02:00
if (shareToken) {
2022-10-25 04:48:10 +02:00
return isValidToken(shareToken, { id });
2022-10-12 22:11:44 +02:00
}
2022-11-16 20:44:36 +01:00
if (user?.id) {
2022-11-19 03:49:58 +01:00
if (type === UmamiApi.AuthType.Website) {
2022-11-20 09:48:13 +01:00
const website = await cache.fetchWebsite(typeId ?? id);
if (website && website.userId === user.id) {
return true;
}
if (website.teamId) {
const teamUser = getTeamUser({ userId: user.id, teamId: website.teamId, isDeleted: false });
2022-11-20 09:48:13 +01:00
return teamUser;
}
return false;
2022-11-19 03:49:58 +01:00
} else if (type === UmamiApi.AuthType.User) {
2022-11-01 07:42:37 +01:00
const user = await getUser({ id });
2022-11-01 07:42:37 +01:00
return user && user.id === id;
2022-11-20 09:48:13 +01:00
} else if (type === UmamiApi.AuthType.Team) {
const teamUser = await getTeamUser({
userId: user.id,
teamId: typeId ?? id,
});
return teamUser;
} else if (type === UmamiApi.AuthType.TeamOwner) {
const teamUser = await getTeamUser({
userId: user.id,
teamId: typeId ?? id,
});
2022-11-30 06:56:43 +01:00
return (
teamUser &&
(teamUser.roleId === UmamiApi.Role.TeamOwner || teamUser.roleId === UmamiApi.Role.Admin)
);
2022-11-20 09:48:13 +01:00
}
2022-11-19 03:49:58 +01:00
}
return false;
}
2022-11-20 09:48:13 +01:00
export async function checkPermission(req: NextApiRequestAuth, type: UmamiApi.Permission) {
const {
user: { id: userId },
} = req.auth;
const userRole = await getPermissionsByUserId(userId, type);
return userRole.length > 0;
}