Merge pull request #368 from ReylanLugo/feat/domains-api-key-auth

feat(api): allow API key authentication for domain endpoints
This commit is contained in:
Dries Augustyns
2026-05-16 21:42:43 +02:00
committed by GitHub
2 changed files with 42 additions and 31 deletions
+24 -24
View File
@@ -4,7 +4,7 @@ import type {NextFunction, Request, Response} from 'express';
import {redis} from '../database/redis.js'; import {redis} from '../database/redis.js';
import {NotAllowed, NotFound} from '../exceptions/index.js'; import {NotAllowed, NotFound} from '../exceptions/index.js';
import {isAuthenticated, requireEmailVerified} from '../middleware/auth.js'; import {requireAuth, requireEmailVerified} from '../middleware/auth.js';
import {DomainService} from '../services/DomainService.js'; import {DomainService} from '../services/DomainService.js';
import {Keys} from '../services/keys.js'; import {Keys} from '../services/keys.js';
import {MembershipService} from '../services/MembershipService.js'; import {MembershipService} from '../services/MembershipService.js';
@@ -17,16 +17,12 @@ export class Domains {
* Get all domains for a project * Get all domains for a project
*/ */
@Get('project/:projectId') @Get('project/:projectId')
@Middleware([isAuthenticated, requireEmailVerified]) @Middleware([requireAuth, requireEmailVerified])
@CatchAsync @CatchAsync
public async getProjectDomains(req: Request, res: Response, _next: NextFunction) { public async getProjectDomains(_req: Request, res: Response, _next: NextFunction) {
const auth = res.locals.auth; const auth = res.locals.auth;
const {projectId} = DomainSchemas.projectId.parse(req.params);
// Verify user has access to this project const domains = await DomainService.getProjectDomains(auth.projectId!);
await MembershipService.requireAccess(auth.userId!, projectId);
const domains = await DomainService.getProjectDomains(projectId);
return res.status(200).json(domains); return res.status(200).json(domains);
} }
@@ -35,19 +31,18 @@ export class Domains {
* Add a new domain to a project * Add a new domain to a project
*/ */
@Post('') @Post('')
@Middleware([isAuthenticated, requireEmailVerified]) @Middleware([requireAuth, requireEmailVerified])
@CatchAsync @CatchAsync
public async addDomain(req: Request, res: Response, _next: NextFunction) { public async addDomain(req: Request, res: Response, _next: NextFunction) {
const auth = res.locals.auth; const auth = res.locals.auth;
const {projectId, domain} = DomainSchemas.create.parse(req.body); const {domain} = DomainSchemas.create.parse(req.body);
const projectId = auth.projectId!;
if (!auth.userId) { // Require admin role for JWT users (API keys bypass — project-scoped by design)
throw new NotFound('User authentication required'); if (auth.type === 'jwt') {
await MembershipService.requireAdminAccess(auth.userId!, projectId);
} }
// Verify user has admin access to this project
await MembershipService.requireAdminAccess(auth.userId!, projectId);
// Block domain changes on disabled projects // Block domain changes on disabled projects
const isDisabled = await SecurityService.isProjectDisabled(projectId); const isDisabled = await SecurityService.isProjectDisabled(projectId);
if (isDisabled) { if (isDisabled) {
@@ -68,6 +63,12 @@ export class Domains {
const ownershipCheck = await DomainService.checkDomainOwnership(domain, auth.userId); const ownershipCheck = await DomainService.checkDomainOwnership(domain, auth.userId);
if (ownershipCheck.exists) { if (ownershipCheck.exists) {
if (ownershipCheck.projectId === projectId) {
return res.status(400).json({
error: 'This domain is already linked to this project.',
});
}
// If domain exists and user is a member of that project, allow it // If domain exists and user is a member of that project, allow it
if (ownershipCheck.isMember) { if (ownershipCheck.isMember) {
return res.status(400).json({ return res.status(400).json({
@@ -99,7 +100,7 @@ export class Domains {
* Check verification status for a domain * Check verification status for a domain
*/ */
@Get(':id/verify') @Get(':id/verify')
@Middleware([isAuthenticated, requireEmailVerified]) @Middleware([requireAuth, requireEmailVerified])
@CatchAsync @CatchAsync
public async checkVerification(req: Request, res: Response, _next: NextFunction) { public async checkVerification(req: Request, res: Response, _next: NextFunction) {
const auth = res.locals.auth; const auth = res.locals.auth;
@@ -107,13 +108,10 @@ export class Domains {
const domain = await DomainService.id(id); const domain = await DomainService.id(id);
if (!domain) { if (!domain || domain.projectId !== auth.projectId) {
throw new NotFound('Domain not found'); throw new NotFound('Domain not found');
} }
// Verify user has access to the project this domain belongs to
await MembershipService.requireAccess(auth.userId!, domain.projectId);
const verificationStatus = await DomainService.checkVerification(id); const verificationStatus = await DomainService.checkVerification(id);
// Invalidate cache if status changed // Invalidate cache if status changed
@@ -127,7 +125,7 @@ export class Domains {
* Remove a domain from a project * Remove a domain from a project
*/ */
@Delete(':id') @Delete(':id')
@Middleware([isAuthenticated, requireEmailVerified]) @Middleware([requireAuth, requireEmailVerified])
@CatchAsync @CatchAsync
public async removeDomain(req: Request, res: Response, _next: NextFunction) { public async removeDomain(req: Request, res: Response, _next: NextFunction) {
const auth = res.locals.auth; const auth = res.locals.auth;
@@ -135,12 +133,14 @@ export class Domains {
const domain = await DomainService.id(id); const domain = await DomainService.id(id);
if (!domain) { if (!domain || domain.projectId !== auth.projectId) {
throw new NotFound('Domain not found'); throw new NotFound('Domain not found');
} }
// Verify user has admin access to the project this domain belongs to // Require admin role for JWT users (API keys bypass — project-scoped by design)
await MembershipService.requireAdminAccess(auth.userId!, domain.projectId); if (auth.type === 'jwt') {
await MembershipService.requireAdminAccess(auth.userId!, domain.projectId);
}
// Block domain changes on disabled projects // Block domain changes on disabled projects
const isDisabled = await SecurityService.isProjectDisabled(domain.projectId); const isDisabled = await SecurityService.isProjectDisabled(domain.projectId);
+18 -7
View File
@@ -438,15 +438,14 @@ export class DomainService {
* @param userId User ID to check membership * @param userId User ID to check membership
* @returns Object with exists flag and membership info * @returns Object with exists flag and membership info
*/ */
public static async checkDomainOwnership(domain: string, userId: string) { public static async checkDomainOwnership(domain: string, userId?: string) {
const existingDomain = await prisma.domain.findFirst({ const existingDomain = await prisma.domain.findFirst({
where: {domain}, where: {domain},
include: { include: {
project: { project: {
include: { select: {
members: { id: true,
where: {userId}, name: true,
},
}, },
}, },
}, },
@@ -456,8 +455,20 @@ export class DomainService {
return {exists: false}; return {exists: false};
} }
// Check if user is a member of the project that owns this domain let isMember = false;
const isMember = existingDomain.project.members.length > 0;
if (userId) {
const membership = await prisma.membership.findUnique({
where: {
userId_projectId: {
userId,
projectId: existingDomain.project.id,
},
},
});
isMember = membership !== null;
}
return { return {
exists: true, exists: true,