2022-12-02 04:53:37 +00:00
|
|
|
import { UserRole } from '@prisma/client';
|
2022-10-31 18:02:37 +00:00
|
|
|
import debug from 'debug';
|
2022-11-20 08:48:13 +00:00
|
|
|
import cache from 'lib/cache';
|
2022-11-19 02:49:58 +00:00
|
|
|
import { SHARE_TOKEN_HEADER, UmamiApi } from 'lib/constants';
|
2022-10-12 04:48:33 +00:00
|
|
|
import { secret } from 'lib/crypto';
|
2022-11-19 02:49:58 +00:00
|
|
|
import { parseSecureToken, parseToken } from 'next-basics';
|
2022-12-02 04:53:37 +00:00
|
|
|
import { getTeamUser, getUserRoles } from 'queries';
|
2020-07-28 06:52:14 +00:00
|
|
|
|
2022-10-31 18:02:37 +00:00
|
|
|
const log = debug('umami:auth');
|
|
|
|
|
|
2022-11-08 00:22:49 +00:00
|
|
|
export function getAuthToken(req) {
|
2022-11-11 17:42:54 +00:00
|
|
|
try {
|
|
|
|
|
return req.headers.authorization.split(' ')[1];
|
|
|
|
|
} catch {
|
|
|
|
|
return null;
|
|
|
|
|
}
|
2022-11-08 00:22:49 +00:00
|
|
|
}
|
|
|
|
|
|
2022-10-31 18:02:37 +00:00
|
|
|
export function parseAuthToken(req) {
|
2022-01-23 08:32:17 +00:00
|
|
|
try {
|
2022-11-08 00:22:49 +00:00
|
|
|
return parseSecureToken(getAuthToken(req), secret());
|
2022-10-31 18:02:37 +00:00
|
|
|
} catch (e) {
|
|
|
|
|
log(e);
|
2022-01-23 08:32:17 +00:00
|
|
|
return null;
|
|
|
|
|
}
|
2020-08-05 05:45:05 +00:00
|
|
|
}
|
2020-09-18 05:52:20 +00:00
|
|
|
|
2022-10-31 18:02:37 +00:00
|
|
|
export function parseShareToken(req) {
|
2022-10-12 04:48:33 +00:00
|
|
|
try {
|
2022-10-25 02:48:10 +00:00
|
|
|
return parseToken(req.headers[SHARE_TOKEN_HEADER], secret());
|
2022-10-31 18:02:37 +00:00
|
|
|
} catch (e) {
|
|
|
|
|
log(e);
|
2022-10-12 04:48:33 +00:00
|
|
|
return null;
|
|
|
|
|
}
|
2022-08-30 03:57:34 +00:00
|
|
|
}
|
|
|
|
|
|
2022-10-12 04:48:33 +00:00
|
|
|
export function isValidToken(token, validation) {
|
2020-09-18 05:52:20 +00:00
|
|
|
try {
|
|
|
|
|
if (typeof validation === 'object') {
|
2022-10-25 02:48:10 +00:00
|
|
|
return !Object.keys(validation).find(key => token[key] !== validation[key]);
|
2020-09-18 05:52:20 +00:00
|
|
|
} else if (typeof validation === 'function') {
|
2022-10-25 02:48:10 +00:00
|
|
|
return validation(token);
|
2020-09-18 05:52:20 +00:00
|
|
|
}
|
|
|
|
|
} catch (e) {
|
2022-10-31 18:02:37 +00:00
|
|
|
log(e);
|
2020-09-18 05:52:20 +00:00
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2022-12-02 04:53:37 +00:00
|
|
|
export async function canViewWebsite(userId: string, websiteId: string) {
|
|
|
|
|
const website = await cache.fetchWebsite(websiteId);
|
2020-09-18 05:52:20 +00:00
|
|
|
|
2022-12-02 04:53:37 +00:00
|
|
|
if (website.userId) {
|
|
|
|
|
return userId === website.userId;
|
2022-10-12 20:11:44 +00:00
|
|
|
}
|
2020-09-18 05:52:20 +00:00
|
|
|
|
2022-12-02 04:53:37 +00: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 02:49:58 +00:00
|
|
|
}
|
|
|
|
|
|
2022-12-02 04:53:37 +00:00
|
|
|
return checkAdmin(userId);
|
2020-09-18 05:52:20 +00:00
|
|
|
}
|
2022-11-20 08:48:13 +00:00
|
|
|
|
2022-12-02 04:53:37 +00:00
|
|
|
export async function canUpdateWebsite(userId: string, websiteId: string) {
|
|
|
|
|
const website = await cache.fetchWebsite(websiteId);
|
2022-11-20 08:48:13 +00:00
|
|
|
|
2022-12-02 04:53:37 +00:00
|
|
|
if (website.userId) {
|
|
|
|
|
return userId === website.userId;
|
|
|
|
|
}
|
2022-11-20 08:48:13 +00:00
|
|
|
|
2022-12-02 04:53:37 +00: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 08:48:13 +00:00
|
|
|
}
|
2022-12-01 18:58:50 +00:00
|
|
|
|
2022-12-02 04:53:37 +00:00
|
|
|
export async function canDeleteWebsite(userId: string, websiteId: string) {
|
2022-12-01 18:58:50 +00:00
|
|
|
const website = await cache.fetchWebsite(websiteId);
|
|
|
|
|
|
|
|
|
|
if (website.userId) {
|
|
|
|
|
return userId === website.userId;
|
|
|
|
|
}
|
|
|
|
|
|
2022-12-02 04:53:37 +00:00
|
|
|
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);
|
2022-12-01 18:58:50 +00:00
|
|
|
}
|
|
|
|
|
|
2022-12-02 04:53:37 +00:00
|
|
|
// To-do: Implement when payments are setup.
|
|
|
|
|
export async function canCreateTeam(userId: string) {
|
|
|
|
|
return !!userId;
|
|
|
|
|
}
|
2022-12-01 18:58:50 +00:00
|
|
|
|
2022-12-02 04:53:37 +00:00
|
|
|
// 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;
|
2022-12-01 18:58:50 +00:00
|
|
|
}
|
2022-12-02 04:53:37 +00:00
|
|
|
}
|
2022-12-01 18:58:50 +00:00
|
|
|
|
2022-12-02 04:53:37 +00:00
|
|
|
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);
|
2022-12-01 18:58:50 +00:00
|
|
|
}
|