mirror of
https://github.com/bitwarden/browser
synced 2025-12-29 14:43:31 +00:00
47 lines
1.5 KiB
TypeScript
47 lines
1.5 KiB
TypeScript
import { firstValueFrom } from "rxjs";
|
|
|
|
import { Response } from "@bitwarden/cli/models/response";
|
|
import { OrganizationService } from "@bitwarden/common/admin-console/abstractions/organization/organization.service.abstraction";
|
|
import { Utils } from "@bitwarden/common/platform/misc/utils";
|
|
|
|
import { OrganizationAuthRequestService } from "../../../../bit-common/src/admin-console/auth-requests";
|
|
|
|
export class DenyCommand {
|
|
constructor(
|
|
private organizationService: OrganizationService,
|
|
private organizationAuthRequestService: OrganizationAuthRequestService,
|
|
) {}
|
|
|
|
async run(organizationId: string, id: string): Promise<Response> {
|
|
if (organizationId != null) {
|
|
organizationId = organizationId.toLowerCase();
|
|
}
|
|
|
|
if (!Utils.isGuid(organizationId)) {
|
|
return Response.badRequest("`" + organizationId + "` is not a GUID.");
|
|
}
|
|
|
|
if (id != null) {
|
|
id = id.toLowerCase();
|
|
}
|
|
|
|
if (!Utils.isGuid(id)) {
|
|
return Response.badRequest("`" + id + "` is not a GUID.");
|
|
}
|
|
|
|
const organization = await firstValueFrom(this.organizationService.get$(organizationId));
|
|
if (!organization?.canManageUsersPassword) {
|
|
return Response.error(
|
|
"You do not have permission to approve pending device authorization requests.",
|
|
);
|
|
}
|
|
|
|
try {
|
|
await this.organizationAuthRequestService.denyPendingRequests(organizationId, id);
|
|
return Response.success();
|
|
} catch (e) {
|
|
return Response.error(e);
|
|
}
|
|
}
|
|
}
|