mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-15 00:54:06 -08:00
5156313074
Some checks are pending
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) Waiting to run
69 lines
1.9 KiB
TypeScript
69 lines
1.9 KiB
TypeScript
import Container from 'typedi';
|
|
|
|
import type { Project } from '@/databases/entities/project';
|
|
import type { ProjectRelation, ProjectRole } from '@/databases/entities/project-relation';
|
|
import type { User } from '@/databases/entities/user';
|
|
import { ProjectRelationRepository } from '@/databases/repositories/project-relation.repository';
|
|
import { ProjectRepository } from '@/databases/repositories/project.repository';
|
|
|
|
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 },
|
|
});
|
|
};
|