mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-12 15:44:06 -08:00
314 lines
9.7 KiB
TypeScript
314 lines
9.7 KiB
TypeScript
import { plainToInstance } from 'class-transformer';
|
|
|
|
import { AuthService } from '@/auth/auth.service';
|
|
import { User } from '@db/entities/User';
|
|
import { GlobalScope, Delete, Get, RestController, Patch, Licensed } from '@/decorators';
|
|
import {
|
|
ListQuery,
|
|
UserRequest,
|
|
UserRoleChangePayload,
|
|
UserSettingsUpdatePayload,
|
|
} from '@/requests';
|
|
import type { PublicUser, ITelemetryUserDeletionData } from '@/Interfaces';
|
|
import { AuthIdentity } from '@db/entities/AuthIdentity';
|
|
import { SharedCredentialsRepository } from '@db/repositories/sharedCredentials.repository';
|
|
import { SharedWorkflowRepository } from '@db/repositories/sharedWorkflow.repository';
|
|
import { UserRepository } from '@db/repositories/user.repository';
|
|
import { UserService } from '@/services/user.service';
|
|
import { listQueryMiddleware } from '@/middlewares';
|
|
import { Logger } from '@/Logger';
|
|
import { ForbiddenError } from '@/errors/response-errors/forbidden.error';
|
|
import { NotFoundError } from '@/errors/response-errors/not-found.error';
|
|
import { BadRequestError } from '@/errors/response-errors/bad-request.error';
|
|
import { ExternalHooks } from '@/ExternalHooks';
|
|
import { InternalHooks } from '@/InternalHooks';
|
|
import { validateEntity } from '@/GenericHelpers';
|
|
import { ProjectRepository } from '@/databases/repositories/project.repository';
|
|
import { Project } from '@/databases/entities/Project';
|
|
import { WorkflowService } from '@/workflows/workflow.service';
|
|
import { CredentialsService } from '@/credentials/credentials.service';
|
|
import { ProjectService } from '@/services/project.service';
|
|
import { EventService } from '@/eventbus/event.service';
|
|
|
|
@RestController('/users')
|
|
export class UsersController {
|
|
constructor(
|
|
private readonly logger: Logger,
|
|
private readonly externalHooks: ExternalHooks,
|
|
private readonly internalHooks: InternalHooks,
|
|
private readonly sharedCredentialsRepository: SharedCredentialsRepository,
|
|
private readonly sharedWorkflowRepository: SharedWorkflowRepository,
|
|
private readonly userRepository: UserRepository,
|
|
private readonly authService: AuthService,
|
|
private readonly userService: UserService,
|
|
private readonly projectRepository: ProjectRepository,
|
|
private readonly workflowService: WorkflowService,
|
|
private readonly credentialsService: CredentialsService,
|
|
private readonly projectService: ProjectService,
|
|
private readonly eventService: EventService,
|
|
) {}
|
|
|
|
static ERROR_MESSAGES = {
|
|
CHANGE_ROLE: {
|
|
NO_USER: 'Target user not found',
|
|
NO_ADMIN_ON_OWNER: 'Admin cannot change role on global owner',
|
|
NO_OWNER_ON_OWNER: 'Owner cannot change role on global owner',
|
|
},
|
|
} as const;
|
|
|
|
private removeSupplementaryFields(
|
|
publicUsers: Array<Partial<PublicUser>>,
|
|
listQueryOptions: ListQuery.Options,
|
|
) {
|
|
const { take, select, filter } = listQueryOptions;
|
|
|
|
// remove fields added to satisfy query
|
|
|
|
if (take && select && !select?.id) {
|
|
for (const user of publicUsers) delete user.id;
|
|
}
|
|
|
|
if (filter?.isOwner) {
|
|
for (const user of publicUsers) delete user.role;
|
|
}
|
|
|
|
// remove computed fields (unselectable)
|
|
|
|
if (select) {
|
|
for (const user of publicUsers) {
|
|
delete user.isOwner;
|
|
delete user.isPending;
|
|
delete user.signInType;
|
|
}
|
|
}
|
|
|
|
return publicUsers;
|
|
}
|
|
|
|
@Get('/', { middlewares: listQueryMiddleware })
|
|
@GlobalScope('user:list')
|
|
async listUsers(req: ListQuery.Request) {
|
|
const { listQueryOptions } = req;
|
|
|
|
const findManyOptions = await this.userRepository.toFindManyOptions(listQueryOptions);
|
|
|
|
const users = await this.userRepository.find(findManyOptions);
|
|
|
|
const publicUsers: Array<Partial<PublicUser>> = await Promise.all(
|
|
users.map(
|
|
async (u) =>
|
|
await this.userService.toPublic(u, { withInviteUrl: true, inviterId: req.user.id }),
|
|
),
|
|
);
|
|
|
|
return listQueryOptions
|
|
? this.removeSupplementaryFields(publicUsers, listQueryOptions)
|
|
: publicUsers;
|
|
}
|
|
|
|
@Get('/:id/password-reset-link')
|
|
@GlobalScope('user:resetPassword')
|
|
async getUserPasswordResetLink(req: UserRequest.PasswordResetLink) {
|
|
const user = await this.userRepository.findOneOrFail({
|
|
where: { id: req.params.id },
|
|
});
|
|
if (!user) {
|
|
throw new NotFoundError('User not found');
|
|
}
|
|
|
|
if (req.user.role === 'global:admin' && user.role === 'global:owner') {
|
|
throw new ForbiddenError('Admin cannot reset password of global owner');
|
|
}
|
|
|
|
const link = this.authService.generatePasswordResetUrl(user);
|
|
return { link };
|
|
}
|
|
|
|
@Patch('/:id/settings')
|
|
@GlobalScope('user:update')
|
|
async updateUserSettings(req: UserRequest.UserSettingsUpdate) {
|
|
const payload = plainToInstance(UserSettingsUpdatePayload, req.body, {
|
|
excludeExtraneousValues: true,
|
|
});
|
|
|
|
const id = req.params.id;
|
|
|
|
await this.userService.updateSettings(id, payload);
|
|
|
|
const user = await this.userRepository.findOneOrFail({
|
|
select: ['settings'],
|
|
where: { id },
|
|
});
|
|
|
|
return user.settings;
|
|
}
|
|
|
|
/**
|
|
* Delete a user. Optionally, designate a transferee for their workflows and credentials.
|
|
*/
|
|
@Delete('/:id')
|
|
@GlobalScope('user:delete')
|
|
async deleteUser(req: UserRequest.Delete) {
|
|
const { id: idToDelete } = req.params;
|
|
|
|
if (req.user.id === idToDelete) {
|
|
this.logger.debug(
|
|
'Request to delete a user failed because it attempted to delete the requesting user',
|
|
{ userId: req.user.id },
|
|
);
|
|
throw new BadRequestError('Cannot delete your own user');
|
|
}
|
|
|
|
const { transferId } = req.query;
|
|
|
|
const userToDelete = await this.userRepository.findOneBy({ id: idToDelete });
|
|
|
|
if (!userToDelete) {
|
|
throw new NotFoundError(
|
|
'Request to delete a user failed because the user to delete was not found in DB',
|
|
);
|
|
}
|
|
|
|
if (userToDelete.role === 'global:owner') {
|
|
throw new ForbiddenError('Instance owner cannot be deleted.');
|
|
}
|
|
|
|
const personalProjectToDelete = await this.projectRepository.getPersonalProjectForUserOrFail(
|
|
userToDelete.id,
|
|
);
|
|
|
|
if (transferId === personalProjectToDelete.id) {
|
|
throw new BadRequestError(
|
|
'Request to delete a user failed because the user to delete and the transferee are the same user',
|
|
);
|
|
}
|
|
|
|
const telemetryData: ITelemetryUserDeletionData = {
|
|
user_id: req.user.id,
|
|
target_user_old_status: userToDelete.isPending ? 'invited' : 'active',
|
|
target_user_id: idToDelete,
|
|
migration_strategy: transferId ? 'transfer_data' : 'delete_data',
|
|
};
|
|
|
|
if (transferId) {
|
|
const transfereePersonalProject = await this.projectRepository.findOneBy({ id: transferId });
|
|
|
|
if (!transfereePersonalProject) {
|
|
throw new NotFoundError(
|
|
'Request to delete a user failed because the transferee project was not found in DB',
|
|
);
|
|
}
|
|
|
|
const transferee = await this.userRepository.findOneByOrFail({
|
|
projectRelations: {
|
|
projectId: transfereePersonalProject.id,
|
|
role: 'project:personalOwner',
|
|
},
|
|
});
|
|
|
|
telemetryData.migration_user_id = transferee.id;
|
|
|
|
await this.userService.getManager().transaction(async (trx) => {
|
|
await this.workflowService.transferAll(
|
|
personalProjectToDelete.id,
|
|
transfereePersonalProject.id,
|
|
trx,
|
|
);
|
|
await this.credentialsService.transferAll(
|
|
personalProjectToDelete.id,
|
|
transfereePersonalProject.id,
|
|
trx,
|
|
);
|
|
});
|
|
|
|
await this.projectService.clearCredentialCanUseExternalSecretsCache(
|
|
transfereePersonalProject.id,
|
|
);
|
|
}
|
|
|
|
const [ownedSharedWorkflows, ownedSharedCredentials] = await Promise.all([
|
|
this.sharedWorkflowRepository.find({
|
|
select: { workflowId: true },
|
|
where: { projectId: personalProjectToDelete.id, role: 'workflow:owner' },
|
|
}),
|
|
this.sharedCredentialsRepository.find({
|
|
relations: { credentials: true },
|
|
where: { projectId: personalProjectToDelete.id, role: 'credential:owner' },
|
|
}),
|
|
]);
|
|
|
|
const ownedCredentials = ownedSharedCredentials.map(({ credentials }) => credentials);
|
|
|
|
for (const { workflowId } of ownedSharedWorkflows) {
|
|
await this.workflowService.delete(userToDelete, workflowId);
|
|
}
|
|
|
|
for (const credential of ownedCredentials) {
|
|
await this.credentialsService.delete(credential);
|
|
}
|
|
|
|
await this.userService.getManager().transaction(async (trx) => {
|
|
await trx.delete(AuthIdentity, { userId: userToDelete.id });
|
|
await trx.delete(Project, { id: personalProjectToDelete.id });
|
|
await trx.delete(User, { id: userToDelete.id });
|
|
});
|
|
|
|
this.internalHooks.onUserDeletion({
|
|
user: req.user,
|
|
telemetryData,
|
|
publicApi: false,
|
|
});
|
|
this.eventService.emit('user-deleted', { user: req.user });
|
|
|
|
await this.externalHooks.run('user.deleted', [await this.userService.toPublic(userToDelete)]);
|
|
|
|
return { success: true };
|
|
}
|
|
|
|
@Patch('/:id/role')
|
|
@GlobalScope('user:changeRole')
|
|
@Licensed('feat:advancedPermissions')
|
|
async changeGlobalRole(req: UserRequest.ChangeRole) {
|
|
const { NO_ADMIN_ON_OWNER, NO_USER, NO_OWNER_ON_OWNER } =
|
|
UsersController.ERROR_MESSAGES.CHANGE_ROLE;
|
|
|
|
const payload = plainToInstance(UserRoleChangePayload, req.body, {
|
|
excludeExtraneousValues: true,
|
|
});
|
|
await validateEntity(payload);
|
|
|
|
const targetUser = await this.userRepository.findOne({
|
|
where: { id: req.params.id },
|
|
});
|
|
if (targetUser === null) {
|
|
throw new NotFoundError(NO_USER);
|
|
}
|
|
|
|
if (req.user.role === 'global:admin' && targetUser.role === 'global:owner') {
|
|
throw new ForbiddenError(NO_ADMIN_ON_OWNER);
|
|
}
|
|
|
|
if (req.user.role === 'global:owner' && targetUser.role === 'global:owner') {
|
|
throw new ForbiddenError(NO_OWNER_ON_OWNER);
|
|
}
|
|
|
|
await this.userService.update(targetUser.id, { role: payload.newRoleName });
|
|
|
|
this.internalHooks.onUserRoleChange({
|
|
user: req.user,
|
|
target_user_id: targetUser.id,
|
|
target_user_new_role: ['global', payload.newRoleName].join(' '),
|
|
public_api: false,
|
|
});
|
|
|
|
const projects = await this.projectService.getUserOwnedOrAdminProjects(targetUser.id);
|
|
await Promise.all(
|
|
projects.map(
|
|
async (p) => await this.projectService.clearCredentialCanUseExternalSecretsCache(p.id),
|
|
),
|
|
);
|
|
|
|
return { success: true };
|
|
}
|
|
}
|