2023-01-27 02:19:47 -08:00
|
|
|
import { User } from '@db/entities/User';
|
|
|
|
import { SharedCredentials } from '@db/entities/SharedCredentials';
|
|
|
|
import { SharedWorkflow } from '@db/entities/SharedWorkflow';
|
2024-01-03 00:33:35 -08:00
|
|
|
import {
|
|
|
|
RequireGlobalScope,
|
|
|
|
Authorized,
|
|
|
|
Delete,
|
|
|
|
Get,
|
|
|
|
RestController,
|
|
|
|
Patch,
|
|
|
|
Licensed,
|
|
|
|
} from '@/decorators';
|
|
|
|
import {
|
|
|
|
ListQuery,
|
|
|
|
UserRequest,
|
|
|
|
UserRoleChangePayload,
|
|
|
|
UserSettingsUpdatePayload,
|
|
|
|
} from '@/requests';
|
2023-08-28 07:13:17 -07:00
|
|
|
import { ActiveWorkflowRunner } from '@/ActiveWorkflowRunner';
|
2023-08-25 04:23:22 -07:00
|
|
|
import type { PublicUser, ITelemetryUserDeletionData } from '@/Interfaces';
|
2023-01-27 02:19:47 -08:00
|
|
|
import { AuthIdentity } from '@db/entities/AuthIdentity';
|
2023-11-10 06:04:26 -08:00
|
|
|
import { SharedCredentialsRepository } from '@db/repositories/sharedCredentials.repository';
|
|
|
|
import { SharedWorkflowRepository } from '@db/repositories/sharedWorkflow.repository';
|
2024-01-03 00:33:35 -08:00
|
|
|
import { UserRepository } from '@db/repositories/user.repository';
|
2023-05-30 03:52:02 -07:00
|
|
|
import { plainToInstance } from 'class-transformer';
|
2023-08-22 06:58:05 -07:00
|
|
|
import { UserService } from '@/services/user.service';
|
2023-08-28 07:13:17 -07:00
|
|
|
import { listQueryMiddleware } from '@/middlewares';
|
2023-10-25 07:35:22 -07:00
|
|
|
import { Logger } from '@/Logger';
|
2023-11-28 01:19:27 -08:00
|
|
|
import { UnauthorizedError } from '@/errors/response-errors/unauthorized.error';
|
|
|
|
import { NotFoundError } from '@/errors/response-errors/not-found.error';
|
|
|
|
import { BadRequestError } from '@/errors/response-errors/bad-request.error';
|
2023-12-27 02:50:43 -08:00
|
|
|
import { ExternalHooks } from '@/ExternalHooks';
|
|
|
|
import { InternalHooks } from '@/InternalHooks';
|
2024-01-03 00:33:35 -08:00
|
|
|
import { validateEntity } from '@/GenericHelpers';
|
2023-01-27 02:19:47 -08:00
|
|
|
|
2023-11-24 02:40:08 -08:00
|
|
|
@Authorized()
|
2023-01-27 02:19:47 -08:00
|
|
|
@RestController('/users')
|
|
|
|
export class UsersController {
|
2023-08-25 04:23:22 -07:00
|
|
|
constructor(
|
2023-10-25 07:35:22 -07:00
|
|
|
private readonly logger: Logger,
|
2023-12-27 02:50:43 -08:00
|
|
|
private readonly externalHooks: ExternalHooks,
|
|
|
|
private readonly internalHooks: InternalHooks,
|
2023-08-25 04:23:22 -07:00
|
|
|
private readonly sharedCredentialsRepository: SharedCredentialsRepository,
|
|
|
|
private readonly sharedWorkflowRepository: SharedWorkflowRepository,
|
2024-01-03 00:33:35 -08:00
|
|
|
private readonly userRepository: UserRepository,
|
2023-08-25 04:23:22 -07:00
|
|
|
private readonly activeWorkflowRunner: ActiveWorkflowRunner,
|
|
|
|
private readonly userService: UserService,
|
|
|
|
) {}
|
2023-01-27 02:19:47 -08:00
|
|
|
|
2023-11-24 02:40:08 -08:00
|
|
|
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(
|
2023-08-28 07:13:17 -07:00
|
|
|
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) {
|
2024-01-24 04:38:57 -08:00
|
|
|
for (const user of publicUsers) delete user.role;
|
2023-08-28 07:13:17 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// remove computed fields (unselectable)
|
|
|
|
|
|
|
|
if (select) {
|
|
|
|
for (const user of publicUsers) {
|
|
|
|
delete user.isOwner;
|
|
|
|
delete user.isPending;
|
|
|
|
delete user.signInType;
|
|
|
|
delete user.hasRecoveryCodesLeft;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return publicUsers;
|
2023-01-27 02:19:47 -08:00
|
|
|
}
|
|
|
|
|
2023-08-28 07:13:17 -07:00
|
|
|
@Get('/', { middlewares: listQueryMiddleware })
|
2023-11-28 03:41:34 -08:00
|
|
|
@RequireGlobalScope('user:list')
|
2023-08-28 07:13:17 -07:00
|
|
|
async listUsers(req: ListQuery.Request) {
|
|
|
|
const { listQueryOptions } = req;
|
|
|
|
|
2024-01-24 04:38:57 -08:00
|
|
|
const findManyOptions = await this.userRepository.toFindManyOptions(listQueryOptions);
|
2023-08-28 07:13:17 -07:00
|
|
|
|
2024-01-02 08:53:24 -08:00
|
|
|
const users = await this.userRepository.find(findManyOptions);
|
2023-08-28 07:13:17 -07:00
|
|
|
|
|
|
|
const publicUsers: Array<Partial<PublicUser>> = await Promise.all(
|
2024-01-17 07:08:50 -08:00
|
|
|
users.map(
|
|
|
|
async (u) =>
|
|
|
|
await this.userService.toPublic(u, { withInviteUrl: true, inviterId: req.user.id }),
|
2023-12-07 01:53:31 -08:00
|
|
|
),
|
2023-01-27 02:19:47 -08:00
|
|
|
);
|
2023-08-28 07:13:17 -07:00
|
|
|
|
|
|
|
return listQueryOptions
|
|
|
|
? this.removeSupplementaryFields(publicUsers, listQueryOptions)
|
|
|
|
: publicUsers;
|
2023-01-27 02:19:47 -08:00
|
|
|
}
|
|
|
|
|
2023-05-30 03:52:02 -07:00
|
|
|
@Get('/:id/password-reset-link')
|
2023-11-28 03:41:34 -08:00
|
|
|
@RequireGlobalScope('user:resetPassword')
|
2023-05-30 03:52:02 -07:00
|
|
|
async getUserPasswordResetLink(req: UserRequest.PasswordResetLink) {
|
2024-01-02 08:53:24 -08:00
|
|
|
const user = await this.userRepository.findOneOrFail({
|
2023-05-30 03:52:02 -07:00
|
|
|
where: { id: req.params.id },
|
|
|
|
});
|
|
|
|
if (!user) {
|
|
|
|
throw new NotFoundError('User not found');
|
|
|
|
}
|
2023-07-24 14:40:17 -07:00
|
|
|
|
2023-11-07 06:35:43 -08:00
|
|
|
const link = this.userService.generatePasswordResetUrl(user);
|
|
|
|
return { link };
|
2023-05-30 03:52:02 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
@Patch('/:id/settings')
|
2023-11-28 03:41:34 -08:00
|
|
|
@RequireGlobalScope('user:update')
|
2023-05-30 03:52:02 -07:00
|
|
|
async updateUserSettings(req: UserRequest.UserSettingsUpdate) {
|
|
|
|
const payload = plainToInstance(UserSettingsUpdatePayload, req.body);
|
|
|
|
|
|
|
|
const id = req.params.id;
|
|
|
|
|
2023-08-22 06:58:05 -07:00
|
|
|
await this.userService.updateSettings(id, payload);
|
2023-05-30 03:52:02 -07:00
|
|
|
|
2024-01-02 08:53:24 -08:00
|
|
|
const user = await this.userRepository.findOneOrFail({
|
2023-05-30 03:52:02 -07:00
|
|
|
select: ['settings'],
|
|
|
|
where: { id },
|
|
|
|
});
|
|
|
|
|
|
|
|
return user.settings;
|
|
|
|
}
|
|
|
|
|
2023-01-27 02:19:47 -08:00
|
|
|
/**
|
|
|
|
* Delete a user. Optionally, designate a transferee for their workflows and credentials.
|
|
|
|
*/
|
|
|
|
@Delete('/:id')
|
2023-11-28 03:41:34 -08:00
|
|
|
@RequireGlobalScope('user:delete')
|
2023-01-27 02:19:47 -08:00
|
|
|
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;
|
|
|
|
|
|
|
|
if (transferId === idToDelete) {
|
|
|
|
throw new BadRequestError(
|
|
|
|
'Request to delete a user failed because the user to delete and the transferee are the same user',
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2024-01-02 08:53:24 -08:00
|
|
|
const userIds = transferId ? [transferId, idToDelete] : [idToDelete];
|
|
|
|
|
2024-01-22 03:29:28 -08:00
|
|
|
const users = await this.userRepository.findManyByIds(userIds);
|
2023-01-27 02:19:47 -08:00
|
|
|
|
|
|
|
if (!users.length || (transferId && users.length !== 2)) {
|
|
|
|
throw new NotFoundError(
|
|
|
|
'Request to delete a user failed because the ID of the user to delete and/or the ID of the transferee were not found in DB',
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
const userToDelete = users.find((user) => user.id === req.params.id) as User;
|
|
|
|
|
|
|
|
const telemetryData: ITelemetryUserDeletionData = {
|
|
|
|
user_id: req.user.id,
|
|
|
|
target_user_old_status: userToDelete.isPending ? 'invited' : 'active',
|
|
|
|
target_user_id: idToDelete,
|
|
|
|
};
|
|
|
|
|
|
|
|
telemetryData.migration_strategy = transferId ? 'transfer_data' : 'delete_data';
|
|
|
|
|
|
|
|
if (transferId) {
|
|
|
|
telemetryData.migration_user_id = transferId;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (transferId) {
|
|
|
|
const transferee = users.find((user) => user.id === transferId);
|
|
|
|
|
2023-08-22 06:58:05 -07:00
|
|
|
await this.userService.getManager().transaction(async (transactionManager) => {
|
2023-01-27 02:19:47 -08:00
|
|
|
// Get all workflow ids belonging to user to delete
|
|
|
|
const sharedWorkflowIds = await transactionManager
|
|
|
|
.getRepository(SharedWorkflow)
|
|
|
|
.find({
|
|
|
|
select: ['workflowId'],
|
2024-01-24 04:38:57 -08:00
|
|
|
where: { userId: userToDelete.id, role: 'workflow:owner' },
|
2023-01-27 02:19:47 -08:00
|
|
|
})
|
|
|
|
.then((sharedWorkflows) => sharedWorkflows.map(({ workflowId }) => workflowId));
|
|
|
|
|
|
|
|
// Prevents issues with unique key constraints since user being assigned
|
|
|
|
// workflows and credentials might be a sharee
|
2024-01-05 04:06:24 -08:00
|
|
|
await this.sharedWorkflowRepository.deleteByIds(
|
|
|
|
transactionManager,
|
|
|
|
sharedWorkflowIds,
|
|
|
|
transferee,
|
|
|
|
);
|
2023-01-27 02:19:47 -08:00
|
|
|
|
|
|
|
// Transfer ownership of owned workflows
|
|
|
|
await transactionManager.update(
|
|
|
|
SharedWorkflow,
|
2024-01-24 04:38:57 -08:00
|
|
|
{ user: userToDelete, role: 'workflow:owner' },
|
2023-01-27 02:19:47 -08:00
|
|
|
{ user: transferee },
|
|
|
|
);
|
|
|
|
|
|
|
|
// Now do the same for creds
|
|
|
|
|
|
|
|
// Get all workflow ids belonging to user to delete
|
|
|
|
const sharedCredentialIds = await transactionManager
|
|
|
|
.getRepository(SharedCredentials)
|
|
|
|
.find({
|
|
|
|
select: ['credentialsId'],
|
2024-01-24 04:38:57 -08:00
|
|
|
where: { userId: userToDelete.id, role: 'credential:owner' },
|
2023-01-27 02:19:47 -08:00
|
|
|
})
|
|
|
|
.then((sharedCredentials) => sharedCredentials.map(({ credentialsId }) => credentialsId));
|
|
|
|
|
|
|
|
// Prevents issues with unique key constraints since user being assigned
|
|
|
|
// workflows and credentials might be a sharee
|
2024-01-05 04:06:24 -08:00
|
|
|
await this.sharedCredentialsRepository.deleteByIds(
|
|
|
|
transactionManager,
|
|
|
|
sharedCredentialIds,
|
|
|
|
transferee,
|
|
|
|
);
|
2023-01-27 02:19:47 -08:00
|
|
|
|
|
|
|
// Transfer ownership of owned credentials
|
|
|
|
await transactionManager.update(
|
|
|
|
SharedCredentials,
|
2024-01-24 04:38:57 -08:00
|
|
|
{ user: userToDelete, role: 'credential:owner' },
|
2023-01-27 02:19:47 -08:00
|
|
|
{ user: transferee },
|
|
|
|
);
|
|
|
|
|
|
|
|
await transactionManager.delete(AuthIdentity, { userId: userToDelete.id });
|
|
|
|
|
|
|
|
// This will remove all shared workflows and credentials not owned
|
|
|
|
await transactionManager.delete(User, { id: userToDelete.id });
|
|
|
|
});
|
|
|
|
|
|
|
|
void this.internalHooks.onUserDeletion({
|
|
|
|
user: req.user,
|
|
|
|
telemetryData,
|
|
|
|
publicApi: false,
|
|
|
|
});
|
2023-08-28 07:13:17 -07:00
|
|
|
await this.externalHooks.run('user.deleted', [await this.userService.toPublic(userToDelete)]);
|
2023-01-27 02:19:47 -08:00
|
|
|
return { success: true };
|
|
|
|
}
|
|
|
|
|
|
|
|
const [ownedSharedWorkflows, ownedSharedCredentials] = await Promise.all([
|
|
|
|
this.sharedWorkflowRepository.find({
|
|
|
|
relations: ['workflow'],
|
2024-01-24 04:38:57 -08:00
|
|
|
where: { userId: userToDelete.id, role: 'workflow:owner' },
|
2023-01-27 02:19:47 -08:00
|
|
|
}),
|
|
|
|
this.sharedCredentialsRepository.find({
|
|
|
|
relations: ['credentials'],
|
2024-01-24 04:38:57 -08:00
|
|
|
where: { userId: userToDelete.id, role: 'credential:owner' },
|
2023-01-27 02:19:47 -08:00
|
|
|
}),
|
|
|
|
]);
|
|
|
|
|
2023-08-22 06:58:05 -07:00
|
|
|
await this.userService.getManager().transaction(async (transactionManager) => {
|
2023-01-27 02:19:47 -08:00
|
|
|
const ownedWorkflows = await Promise.all(
|
|
|
|
ownedSharedWorkflows.map(async ({ workflow }) => {
|
|
|
|
if (workflow.active) {
|
|
|
|
// deactivate before deleting
|
|
|
|
await this.activeWorkflowRunner.remove(workflow.id);
|
|
|
|
}
|
|
|
|
return workflow;
|
|
|
|
}),
|
|
|
|
);
|
|
|
|
await transactionManager.remove(ownedWorkflows);
|
|
|
|
await transactionManager.remove(ownedSharedCredentials.map(({ credentials }) => credentials));
|
|
|
|
|
|
|
|
await transactionManager.delete(AuthIdentity, { userId: userToDelete.id });
|
|
|
|
await transactionManager.delete(User, { id: userToDelete.id });
|
|
|
|
});
|
|
|
|
|
|
|
|
void this.internalHooks.onUserDeletion({
|
|
|
|
user: req.user,
|
|
|
|
telemetryData,
|
|
|
|
publicApi: false,
|
|
|
|
});
|
|
|
|
|
2023-08-28 07:13:17 -07:00
|
|
|
await this.externalHooks.run('user.deleted', [await this.userService.toPublic(userToDelete)]);
|
2023-01-27 02:19:47 -08:00
|
|
|
return { success: true };
|
|
|
|
}
|
2023-11-24 02:40:08 -08:00
|
|
|
|
|
|
|
@Patch('/:id/role')
|
2023-11-29 06:48:36 -08:00
|
|
|
@RequireGlobalScope('user:changeRole')
|
2024-01-03 00:33:35 -08:00
|
|
|
@Licensed('feat:advancedPermissions')
|
|
|
|
async changeGlobalRole(req: UserRequest.ChangeRole) {
|
|
|
|
const { NO_ADMIN_ON_OWNER, NO_USER, NO_OWNER_ON_OWNER } =
|
|
|
|
UsersController.ERROR_MESSAGES.CHANGE_ROLE;
|
2023-11-24 02:40:08 -08:00
|
|
|
|
2024-01-03 00:33:35 -08:00
|
|
|
const payload = plainToInstance(UserRoleChangePayload, req.body);
|
|
|
|
await validateEntity(payload);
|
2023-11-24 02:40:08 -08:00
|
|
|
|
2024-01-02 08:53:24 -08:00
|
|
|
const targetUser = await this.userRepository.findOne({
|
2023-11-24 02:40:08 -08:00
|
|
|
where: { id: req.params.id },
|
|
|
|
});
|
|
|
|
if (targetUser === null) {
|
|
|
|
throw new NotFoundError(NO_USER);
|
|
|
|
}
|
|
|
|
|
2024-01-24 04:38:57 -08:00
|
|
|
if (req.user.role === 'global:admin' && targetUser.role === 'global:owner') {
|
2023-11-24 02:40:08 -08:00
|
|
|
throw new UnauthorizedError(NO_ADMIN_ON_OWNER);
|
|
|
|
}
|
|
|
|
|
2024-01-24 04:38:57 -08:00
|
|
|
if (req.user.role === 'global:owner' && targetUser.role === 'global:owner') {
|
2023-11-24 02:40:08 -08:00
|
|
|
throw new UnauthorizedError(NO_OWNER_ON_OWNER);
|
|
|
|
}
|
|
|
|
|
2024-01-24 04:38:57 -08:00
|
|
|
await this.userService.update(targetUser.id, { role: payload.newRoleName });
|
2023-11-24 02:40:08 -08:00
|
|
|
|
2023-12-13 03:22:11 -08:00
|
|
|
void this.internalHooks.onUserRoleChange({
|
|
|
|
user: req.user,
|
|
|
|
target_user_id: targetUser.id,
|
2024-01-03 00:33:35 -08:00
|
|
|
target_user_new_role: ['global', payload.newRoleName].join(' '),
|
2023-12-13 03:22:11 -08:00
|
|
|
public_api: false,
|
|
|
|
});
|
|
|
|
|
2023-11-24 02:40:08 -08:00
|
|
|
return { success: true };
|
|
|
|
}
|
2023-01-27 02:19:47 -08:00
|
|
|
}
|