mirror of
https://github.com/n8n-io/n8n.git
synced 2025-02-21 02:56:40 -08:00
Some checks failed
Test Master / install-and-build (push) Waiting to run
Test Master / Unit tests (18.x) (push) Blocked by required conditions
Test Master / Unit tests (20.x) (push) Blocked by required conditions
Test Master / Unit tests (22.4) (push) Blocked by required conditions
Test Master / Lint (push) Blocked by required conditions
Test Master / Notify Slack on failure (push) Blocked by required conditions
Benchmark Docker Image CI / build (push) Has been cancelled
Co-authored-by: Iván Ovejero <ivov.src@gmail.com>
31 lines
979 B
TypeScript
31 lines
979 B
TypeScript
import { Service } from '@n8n/di';
|
|
import type { Workflow } from 'n8n-workflow';
|
|
|
|
import type { User } from '@/databases/entities/user';
|
|
import { SharedWorkflowRepository } from '@/databases/repositories/shared-workflow.repository';
|
|
import { UserRepository } from '@/databases/repositories/user.repository';
|
|
|
|
/**
|
|
* Responsible for checking whether a user has access to a resource.
|
|
*/
|
|
@Service()
|
|
export class AccessService {
|
|
constructor(
|
|
private readonly userRepository: UserRepository,
|
|
private readonly sharedWorkflowRepository: SharedWorkflowRepository,
|
|
) {}
|
|
|
|
/** Whether a user has read access to a workflow based on their project and scope. */
|
|
async hasReadAccess(userId: User['id'], workflowId: Workflow['id']) {
|
|
const user = await this.userRepository.findOneBy({ id: userId });
|
|
|
|
if (!user) return false;
|
|
|
|
const workflow = await this.sharedWorkflowRepository.findWorkflowForUser(workflowId, user, [
|
|
'workflow:read',
|
|
]);
|
|
|
|
return workflow !== null;
|
|
}
|
|
}
|