umami/lib/auth.ts

172 lines
4.2 KiB
TypeScript
Raw Normal View History

import { UserRole } from '@prisma/client';
2022-10-31 19:02:37 +01:00
import debug from 'debug';
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';
import { getTeamUser, getUserRoles } 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-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;
}
export async function canViewWebsite(userId: string, websiteId: string) {
const website = await cache.fetchWebsite(websiteId);
if (website.userId) {
return userId === website.userId;
2022-10-12 22:11:44 +02:00
}
if (website.teamId) {
const teamUser = await getTeamUser({ userId, teamId: website.teamId });
checkPermission(UmamiApi.Permission.websiteUpdate, teamUser.role as keyof UmamiApi.Roles);
2022-11-19 03:49:58 +01:00
}
return checkAdmin(userId);
}
2022-11-20 09:48:13 +01:00
export async function canUpdateWebsite(userId: string, websiteId: string) {
const website = await cache.fetchWebsite(websiteId);
2022-11-20 09:48:13 +01:00
if (website.userId) {
return userId === website.userId;
}
2022-11-20 09:48:13 +01:00
if (website.teamId) {
const teamUser = await getTeamUser({ userId, teamId: website.teamId });
checkPermission(UmamiApi.Permission.websiteUpdate, teamUser.role as keyof UmamiApi.Roles);
}
return checkAdmin(userId);
2022-11-20 09:48:13 +01:00
}
export async function canDeleteWebsite(userId: string, websiteId: string) {
const website = await cache.fetchWebsite(websiteId);
if (website.userId) {
return userId === website.userId;
}
if (website.teamId) {
const teamUser = await getTeamUser({ userId, teamId: website.teamId });
if (checkPermission(UmamiApi.Permission.websiteDelete, teamUser.role as keyof UmamiApi.Roles)) {
return true;
}
}
return checkAdmin(userId);
}
// To-do: Implement when payments are setup.
export async function canCreateTeam(userId: string) {
return !!userId;
}
// To-do: Implement when payments are setup.
export async function canViewTeam(userId: string, teamId) {
const teamUser = await getTeamUser({ userId, teamId });
return !!teamUser;
}
export async function canUpdateTeam(userId: string, teamId: string) {
const teamUser = await getTeamUser({ userId, teamId });
if (checkPermission(UmamiApi.Permission.teamUpdate, teamUser.role as keyof UmamiApi.Roles)) {
return true;
}
}
export async function canDeleteTeam(userId: string, teamId: string) {
const teamUser = await getTeamUser({ userId, teamId });
if (checkPermission(UmamiApi.Permission.teamDelete, teamUser.role as keyof UmamiApi.Roles)) {
return true;
}
}
export async function canCreateUser(userId: string) {
return checkAdmin(userId);
}
export async function canViewUser(userId: string, viewedUserId: string) {
if (userId === viewedUserId) {
return true;
}
return checkAdmin(userId);
}
export async function canViewUsers(userId: string) {
return checkAdmin(userId);
}
export async function canUpdateUser(userId: string, viewedUserId: string) {
if (userId === viewedUserId) {
return true;
}
return checkAdmin(userId);
}
export async function canUpdateUserRole(userId: string) {
return checkAdmin(userId);
}
export async function canDeleteUser(userId: string) {
return checkAdmin(userId);
}
export async function checkPermission(permission: UmamiApi.Permission, role: keyof UmamiApi.Roles) {
return UmamiApi.Roles[role].permissions.some(a => a === permission);
}
export async function checkAdmin(userId: string, userRoles?: UserRole[]) {
if (!userRoles) {
userRoles = await getUserRoles({ userId });
}
return userRoles.some(a => a.role === UmamiApi.Role.Admin);
}