Files
n8n-enterprise-unlocked/packages/cli/test/integration/shared/db/projects.ts
Marc Littlemore 4459c7e7b1 feat(API): Add user management endpoints to the Projects Public API (#12329)
Co-authored-by: कारतोफ्फेलस्क्रिप्ट™ <aditya@netroy.in>
Co-authored-by: Danny Martini <danny@n8n.io>
Co-authored-by: Andreas Fitzek <andreas.fitzek@n8n.io>
Co-authored-by: Guillaume Jacquart <jacquart.guillaume@gmail.com>
2025-05-30 12:04:38 +01:00

89 lines
2.3 KiB
TypeScript

import type { Project } from '@n8n/db';
import type { User } from '@n8n/db';
import type { ProjectRelation } from '@n8n/db';
import { ProjectRelationRepository } from '@n8n/db';
import { ProjectRepository } from '@n8n/db';
import { Container } from '@n8n/di';
import type { ProjectRole } from '@n8n/permissions';
import { randomName } from '../random';
export const createTeamProject = async (name?: string, adminUser?: User) => {
const projectRepository = Container.get(ProjectRepository);
const project = await projectRepository.save(
projectRepository.create({
name: name ?? randomName(),
type: 'team',
}),
);
if (adminUser) {
await linkUserToProject(adminUser, project, 'project:admin');
}
return project;
};
export const linkUserToProject = async (user: User, project: Project, role: ProjectRole) => {
const projectRelationRepository = Container.get(ProjectRelationRepository);
await projectRelationRepository.save(
projectRelationRepository.create({
projectId: project.id,
userId: user.id,
role,
}),
);
};
export async function getProjectByNameOrFail(name: string) {
return await Container.get(ProjectRepository).findOneOrFail({ where: { name } });
}
export const getPersonalProject = async (user: User): Promise<Project> => {
return await Container.get(ProjectRepository).findOneOrFail({
where: {
projectRelations: {
userId: user.id,
role: 'project:personalOwner',
},
type: 'personal',
},
});
};
export const findProject = async (id: string): Promise<Project> => {
return await Container.get(ProjectRepository).findOneOrFail({
where: { id },
});
};
export const getProjectRelations = async ({
projectId,
userId,
role,
}: Partial<ProjectRelation>): Promise<ProjectRelation[]> => {
return await Container.get(ProjectRelationRepository).find({
where: { projectId, userId, role },
});
};
export const getProjectRoleForUser = async (
projectId: string,
userId: string,
): Promise<ProjectRole | undefined> => {
return (
await Container.get(ProjectRelationRepository).findOne({
select: ['role'],
where: { projectId, userId },
})
)?.role;
};
export const getAllProjectRelations = async ({
projectId,
}: Partial<ProjectRelation>): Promise<ProjectRelation[]> => {
return await Container.get(ProjectRelationRepository).find({
where: { projectId },
});
};