mirror of
https://github.com/bitwarden/browser
synced 2026-02-28 02:23:25 +00:00
* Rename service-factory folder * Move cryptographic service factories * Move crypto models * Move crypto services * Move domain base class * Platform code owners * Move desktop log services * Move log files * Establish component library ownership * Move background listeners * Move background background * Move localization to Platform * Move browser alarms to Platform * Move browser state to Platform * Move CLI state to Platform * Move Desktop native concerns to Platform * Move flag and misc to Platform * Lint fixes * Move electron state to platform * Move web state to Platform * Move lib state to Platform * Fix broken tests * Rename interface to idiomatic TS * `npm run prettier` 🤖 * Resolve review feedback * Set platform as owners of web core and shared * Expand moved services * Fix test types --------- Co-authored-by: Hinton <hinton@users.noreply.github.com>
121 lines
4.3 KiB
TypeScript
121 lines
4.3 KiB
TypeScript
import { Component } from "@angular/core";
|
|
|
|
import { ModalConfig } from "@bitwarden/angular/services/modal.service";
|
|
import { ApiService } from "@bitwarden/common/abstractions/api.service";
|
|
import { UserVerificationService } from "@bitwarden/common/abstractions/userVerification/userVerification.service.abstraction";
|
|
import { OrganizationApiServiceAbstraction } from "@bitwarden/common/admin-console/abstractions/organization/organization-api.service.abstraction";
|
|
import { OrganizationApiKeyType } from "@bitwarden/common/admin-console/enums";
|
|
import { OrganizationApiKeyRequest } from "@bitwarden/common/admin-console/models/request/organization-api-key.request";
|
|
import { ApiKeyResponse } from "@bitwarden/common/auth/models/response/api-key.response";
|
|
import { I18nService } from "@bitwarden/common/platform/abstractions/i18n.service";
|
|
import { PlatformUtilsService } from "@bitwarden/common/platform/abstractions/platform-utils.service";
|
|
import { Verification } from "@bitwarden/common/types/verification";
|
|
|
|
export interface BillingSyncApiModalData {
|
|
organizationId: string;
|
|
hasBillingToken: boolean;
|
|
}
|
|
|
|
@Component({
|
|
selector: "app-billing-sync-api-key",
|
|
templateUrl: "billing-sync-api-key.component.html",
|
|
})
|
|
export class BillingSyncApiKeyComponent {
|
|
organizationId: string;
|
|
hasBillingToken: boolean;
|
|
|
|
showRotateScreen: boolean;
|
|
masterPassword: Verification;
|
|
formPromise: Promise<ApiKeyResponse>;
|
|
clientSecret?: string;
|
|
keyRevisionDate?: Date;
|
|
lastSyncDate?: Date = null;
|
|
|
|
constructor(
|
|
private userVerificationService: UserVerificationService,
|
|
private apiService: ApiService,
|
|
private platformUtilsService: PlatformUtilsService,
|
|
private i18nService: I18nService,
|
|
private organizationApiService: OrganizationApiServiceAbstraction,
|
|
modalConfig: ModalConfig<BillingSyncApiModalData>
|
|
) {
|
|
this.organizationId = modalConfig.data.organizationId;
|
|
this.hasBillingToken = modalConfig.data.hasBillingToken;
|
|
}
|
|
|
|
copy() {
|
|
this.platformUtilsService.copyToClipboard(this.clientSecret);
|
|
}
|
|
|
|
async submit() {
|
|
if (this.showRotateScreen) {
|
|
this.formPromise = this.userVerificationService
|
|
.buildRequest(this.masterPassword, OrganizationApiKeyRequest)
|
|
.then((request) => {
|
|
request.type = OrganizationApiKeyType.BillingSync;
|
|
return this.organizationApiService.rotateApiKey(this.organizationId, request);
|
|
});
|
|
const response = await this.formPromise;
|
|
await this.load(response);
|
|
this.showRotateScreen = false;
|
|
this.platformUtilsService.showToast(
|
|
"success",
|
|
null,
|
|
this.i18nService.t("billingSyncApiKeyRotated")
|
|
);
|
|
} else {
|
|
this.formPromise = this.userVerificationService
|
|
.buildRequest(this.masterPassword, OrganizationApiKeyRequest)
|
|
.then((request) => {
|
|
request.type = OrganizationApiKeyType.BillingSync;
|
|
return this.organizationApiService.getOrCreateApiKey(this.organizationId, request);
|
|
});
|
|
const response = await this.formPromise;
|
|
await this.load(response);
|
|
}
|
|
}
|
|
|
|
async load(response: ApiKeyResponse) {
|
|
this.clientSecret = response.apiKey;
|
|
this.keyRevisionDate = response.revisionDate;
|
|
this.hasBillingToken = true;
|
|
const syncStatus = await this.apiService.getSponsorshipSyncStatus(this.organizationId);
|
|
this.lastSyncDate = syncStatus.lastSyncDate;
|
|
}
|
|
|
|
cancelRotate() {
|
|
this.showRotateScreen = false;
|
|
}
|
|
|
|
rotateToken() {
|
|
this.showRotateScreen = true;
|
|
}
|
|
|
|
private dayDiff(date1: Date, date2: Date): number {
|
|
const diffTime = Math.abs(date2.getTime() - date1.getTime());
|
|
return Math.round(diffTime / (1000 * 60 * 60 * 24));
|
|
}
|
|
|
|
get submitButtonText(): string {
|
|
if (this.showRotateScreen) {
|
|
return this.i18nService.t("rotateToken");
|
|
}
|
|
|
|
return this.i18nService.t(this.hasBillingToken ? "continue" : "generateToken");
|
|
}
|
|
|
|
get showLastSyncText(): boolean {
|
|
// If the keyRevisionDate is later than the lastSyncDate we need to show
|
|
// a warning that they need to put the billing sync key in their self hosted install
|
|
return this.lastSyncDate && this.lastSyncDate > this.keyRevisionDate;
|
|
}
|
|
|
|
get showAwaitingSyncText(): boolean {
|
|
return this.lastSyncDate && this.lastSyncDate <= this.keyRevisionDate;
|
|
}
|
|
|
|
get daysBetween(): number {
|
|
return this.dayDiff(this.keyRevisionDate, new Date());
|
|
}
|
|
}
|