mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-15 09:04:07 -08:00
64 lines
1.8 KiB
TypeScript
64 lines
1.8 KiB
TypeScript
|
import Container from 'typedi';
|
||
|
|
||
|
import { ProjectRepository } from '@/databases/repositories/project.repository';
|
||
|
import { randomName } from '../random';
|
||
|
import { ProjectRelationRepository } from '@/databases/repositories/projectRelation.repository';
|
||
|
import type { User } from '@/databases/entities/User';
|
||
|
import type { Project } from '@/databases/entities/Project';
|
||
|
import type { ProjectRelation, ProjectRole } from '@/databases/entities/ProjectRelation';
|
||
|
|
||
|
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 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 },
|
||
|
});
|
||
|
};
|