bitwarden-estensione-browser/src/app/layouts/organization-layout.compone...

84 lines
3.0 KiB
TypeScript
Raw Normal View History

2018-06-08 23:08:19 +02:00
import {
Component,
NgZone,
OnDestroy,
2018-07-03 21:11:58 +02:00
OnInit,
2018-06-08 23:08:19 +02:00
} from '@angular/core';
2018-07-03 21:11:58 +02:00
import { ActivatedRoute } from '@angular/router';
import { BroadcasterService } from 'jslib/angular/services/broadcaster.service';
import { ApiService } from 'jslib/abstractions/api.service';
import { EnvironmentService } from 'jslib/abstractions/environment.service';
import { PlatformUtilsService } from 'jslib/abstractions/platformUtils.service';
2020-06-25 22:30:45 +02:00
import { UserService } from 'jslib/abstractions/user.service';
2018-07-03 21:11:58 +02:00
import { Organization } from 'jslib/models/domain/organization';
2018-06-08 23:08:19 +02:00
const BroadcasterSubscriptionId = 'OrganizationLayoutComponent';
2018-06-08 23:08:19 +02:00
@Component({
selector: 'app-organization-layout',
templateUrl: 'organization-layout.component.html',
})
export class OrganizationLayoutComponent implements OnInit, OnDestroy {
2018-07-03 21:11:58 +02:00
organization: Organization;
enterpriseTokenPromise: Promise<any>;
2018-07-03 21:11:58 +02:00
private organizationId: string;
private enterpriseUrl: string;
2018-07-03 21:11:58 +02:00
constructor(private route: ActivatedRoute, private userService: UserService,
private broadcasterService: BroadcasterService, private ngZone: NgZone,
private apiService: ApiService, private platformUtilsService: PlatformUtilsService,
private environmentService: EnvironmentService) { }
2018-07-03 21:11:58 +02:00
ngOnInit() {
2020-08-27 22:12:20 +02:00
this.enterpriseUrl = 'https://portal.bitwarden.com';
if (this.environmentService.enterpriseUrl != null) {
this.enterpriseUrl = this.environmentService.enterpriseUrl;
} else if (this.environmentService.baseUrl != null) {
2020-08-27 22:12:20 +02:00
this.enterpriseUrl = this.environmentService.baseUrl + '/portal';
}
2018-07-06 22:36:51 +02:00
document.body.classList.remove('layout_frontend');
2018-07-03 21:11:58 +02:00
this.route.params.subscribe(async (params) => {
this.organizationId = params.organizationId;
await this.load();
});
this.broadcasterService.subscribe(BroadcasterSubscriptionId, (message: any) => {
this.ngZone.run(async () => {
switch (message.command) {
case 'updatedOrgLicense':
await this.load();
break;
}
});
});
}
ngOnDestroy() {
this.broadcasterService.unsubscribe(BroadcasterSubscriptionId);
2018-07-03 21:11:58 +02:00
}
async load() {
this.organization = await this.userService.getOrganization(this.organizationId);
}
async goToEnterprisePortal() {
if (this.enterpriseTokenPromise != null) {
return;
}
try {
this.enterpriseTokenPromise = this.apiService.getEnterprisePortalSignInToken();
const token = await this.enterpriseTokenPromise;
if (token != null) {
const userId = await this.userService.getUserId();
this.platformUtilsService.launchUri(this.enterpriseUrl + '/login?userId=' + userId +
'&token=' + (window as any).encodeURIComponent(token) + '&organizationId=' + this.organization.id);
}
} catch { }
this.enterpriseTokenPromise = null;
}
2018-07-03 21:11:58 +02:00
}