2021-03-27 09:37:57 +01:00
|
|
|
import { Component, Injector, OnDestroy, Type } from '@angular/core';
|
2021-04-15 18:30:50 +02:00
|
|
|
import { MatDialog } from '@angular/material/dialog';
|
2021-03-27 09:37:57 +01:00
|
|
|
import { ActivatedRoute } from '@angular/router';
|
|
|
|
import { Subscription } from 'rxjs';
|
|
|
|
import { switchMap } from 'rxjs/operators';
|
|
|
|
import {
|
2021-04-15 18:30:50 +02:00
|
|
|
GetOrgFeaturesResponse,
|
|
|
|
SetDefaultFeaturesRequest,
|
|
|
|
SetOrgFeaturesRequest,
|
2021-03-27 09:37:57 +01:00
|
|
|
} from 'src/app/proto/generated/zitadel/admin_pb';
|
|
|
|
import { Features } from 'src/app/proto/generated/zitadel/features_pb';
|
|
|
|
import { GetFeaturesResponse } from 'src/app/proto/generated/zitadel/management_pb';
|
|
|
|
import { Org } from 'src/app/proto/generated/zitadel/org_pb';
|
|
|
|
import { AdminService } from 'src/app/services/admin.service';
|
|
|
|
import { ManagementService } from 'src/app/services/mgmt.service';
|
|
|
|
import { StorageService } from 'src/app/services/storage.service';
|
2021-04-15 18:30:50 +02:00
|
|
|
import { StripeCustomer, SubscriptionService } from 'src/app/services/subscription.service';
|
2021-03-27 09:37:57 +01:00
|
|
|
import { ToastService } from 'src/app/services/toast.service';
|
|
|
|
|
2021-04-15 18:30:50 +02:00
|
|
|
import { COUNTRIES, Country } from './country';
|
|
|
|
import { PaymentInfoDialogComponent } from './payment-info-dialog/payment-info-dialog.component';
|
|
|
|
|
2021-03-27 09:37:57 +01:00
|
|
|
export enum FeatureServiceType {
|
2021-04-15 18:30:50 +02:00
|
|
|
MGMT,
|
|
|
|
ADMIN,
|
2021-03-27 09:37:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@Component({
|
2021-04-15 18:30:50 +02:00
|
|
|
selector: 'app-features',
|
|
|
|
templateUrl: './features.component.html',
|
|
|
|
styleUrls: ['./features.component.scss'],
|
2021-03-27 09:37:57 +01:00
|
|
|
})
|
|
|
|
export class FeaturesComponent implements OnDestroy {
|
2021-04-15 18:30:50 +02:00
|
|
|
private managementService!: ManagementService;
|
|
|
|
public serviceType!: FeatureServiceType;
|
|
|
|
|
|
|
|
public features!: Features.AsObject;
|
|
|
|
|
|
|
|
private sub: Subscription = new Subscription();
|
|
|
|
public org!: Org.AsObject;
|
|
|
|
|
|
|
|
public FeatureServiceType: any = FeatureServiceType;
|
|
|
|
|
|
|
|
public customerLoading: boolean = false;
|
|
|
|
public stripeLoading: boolean = false;
|
|
|
|
public stripeURL: string = '';
|
|
|
|
public stripeCustomer!: StripeCustomer;
|
|
|
|
|
|
|
|
constructor(
|
|
|
|
private route: ActivatedRoute,
|
|
|
|
private toast: ToastService,
|
|
|
|
private sessionStorage: StorageService,
|
|
|
|
private injector: Injector,
|
|
|
|
private adminService: AdminService,
|
|
|
|
private subService: SubscriptionService,
|
|
|
|
private dialog: MatDialog,
|
|
|
|
) {
|
|
|
|
const temporg = this.sessionStorage.getItem('organization') as Org.AsObject;
|
|
|
|
if (temporg) {
|
|
|
|
this.org = temporg;
|
2021-03-27 09:37:57 +01:00
|
|
|
}
|
2021-04-15 18:30:50 +02:00
|
|
|
this.sub = this.route.data.pipe(switchMap(data => {
|
|
|
|
this.serviceType = data.serviceType;
|
|
|
|
if (this.serviceType === FeatureServiceType.MGMT) {
|
|
|
|
this.managementService = this.injector.get(ManagementService as Type<ManagementService>);
|
|
|
|
}
|
|
|
|
return this.route.params;
|
|
|
|
})).subscribe(_ => {
|
|
|
|
this.fetchData();
|
|
|
|
});
|
2021-03-27 09:37:57 +01:00
|
|
|
|
2021-04-15 18:30:50 +02:00
|
|
|
if (this.serviceType === FeatureServiceType.MGMT) {
|
|
|
|
this.customerLoading = true;
|
|
|
|
this.subService.getCustomer(this.org.id)
|
|
|
|
.then(payload => {
|
|
|
|
this.customerLoading = false;
|
|
|
|
this.stripeCustomer = payload;
|
|
|
|
if (this.customerValid) {
|
|
|
|
this.getLinkToStripe();
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.catch(error => {
|
|
|
|
this.customerLoading = false;
|
|
|
|
console.error(error);
|
|
|
|
});
|
2021-03-27 09:37:57 +01:00
|
|
|
}
|
2021-04-15 18:30:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public ngOnDestroy(): void {
|
|
|
|
this.sub.unsubscribe();
|
|
|
|
}
|
|
|
|
|
2021-04-16 14:51:09 +02:00
|
|
|
public setCustomer(): void {
|
2021-04-15 18:30:50 +02:00
|
|
|
const dialogRefPhone = this.dialog.open(PaymentInfoDialogComponent, {
|
|
|
|
data: {
|
|
|
|
customer: this.stripeCustomer,
|
|
|
|
},
|
|
|
|
width: '400px',
|
|
|
|
});
|
|
|
|
|
|
|
|
dialogRefPhone.afterClosed().subscribe(customer => {
|
|
|
|
if (customer) {
|
|
|
|
console.log(customer);
|
|
|
|
this.stripeCustomer = customer;
|
2021-04-16 14:51:09 +02:00
|
|
|
this.subService.setCustomer(this.org.id, customer).then(() => {
|
2021-04-15 18:30:50 +02:00
|
|
|
this.getLinkToStripe();
|
|
|
|
}).catch(console.error);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2021-03-27 09:37:57 +01:00
|
|
|
|
2021-04-15 18:30:50 +02:00
|
|
|
public getLinkToStripe(): void {
|
|
|
|
if (this.serviceType === FeatureServiceType.MGMT) {
|
|
|
|
this.stripeLoading = true;
|
|
|
|
this.subService.getLink(this.org.id, window.location.href)
|
|
|
|
.then(payload => {
|
|
|
|
this.stripeLoading = false;
|
|
|
|
console.log(payload);
|
|
|
|
this.stripeURL = payload.redirect_url;
|
|
|
|
})
|
|
|
|
.catch(error => {
|
|
|
|
this.stripeLoading = false;
|
|
|
|
console.error(error);
|
2021-03-27 09:37:57 +01:00
|
|
|
});
|
|
|
|
}
|
2021-04-15 18:30:50 +02:00
|
|
|
}
|
2021-03-27 09:37:57 +01:00
|
|
|
|
2021-04-15 18:30:50 +02:00
|
|
|
public fetchData(): void {
|
|
|
|
this.getData().then(resp => {
|
|
|
|
if (resp?.features) {
|
|
|
|
this.features = resp.features;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
private async getData(): Promise<GetFeaturesResponse.AsObject | GetOrgFeaturesResponse.AsObject | undefined> {
|
|
|
|
switch (this.serviceType) {
|
|
|
|
case FeatureServiceType.MGMT:
|
|
|
|
return this.managementService.getFeatures();
|
|
|
|
case FeatureServiceType.ADMIN:
|
|
|
|
if (this.org?.id) {
|
|
|
|
return this.adminService.getDefaultFeatures();
|
2021-03-27 09:37:57 +01:00
|
|
|
}
|
2021-04-15 18:30:50 +02:00
|
|
|
break;
|
2021-03-27 09:37:57 +01:00
|
|
|
}
|
2021-04-15 18:30:50 +02:00
|
|
|
}
|
2021-03-27 09:37:57 +01:00
|
|
|
|
2021-04-15 18:30:50 +02:00
|
|
|
public savePolicy(): void {
|
|
|
|
switch (this.serviceType) {
|
|
|
|
case FeatureServiceType.MGMT:
|
|
|
|
const req = new SetOrgFeaturesRequest();
|
|
|
|
req.setOrgId(this.org.id);
|
|
|
|
|
|
|
|
req.setLoginPolicyUsernameLogin(this.features.loginPolicyUsernameLogin);
|
|
|
|
req.setLoginPolicyRegistration(this.features.loginPolicyRegistration);
|
|
|
|
req.setLoginPolicyIdp(this.features.loginPolicyIdp);
|
|
|
|
req.setLoginPolicyFactors(this.features.loginPolicyFactors);
|
|
|
|
req.setLoginPolicyPasswordless(this.features.loginPolicyPasswordless);
|
|
|
|
req.setPasswordComplexityPolicy(this.features.passwordComplexityPolicy);
|
|
|
|
req.setLabelPolicy(this.features.labelPolicy);
|
|
|
|
|
|
|
|
this.adminService.setOrgFeatures(req).then(() => {
|
|
|
|
this.toast.showInfo('POLICY.TOAST.SET', true);
|
|
|
|
}).catch(error => {
|
|
|
|
this.toast.showError(error);
|
|
|
|
});
|
|
|
|
break;
|
|
|
|
case FeatureServiceType.ADMIN:
|
|
|
|
// update Default org iam policy?
|
|
|
|
const dreq = new SetDefaultFeaturesRequest();
|
|
|
|
dreq.setLoginPolicyUsernameLogin(this.features.loginPolicyUsernameLogin);
|
|
|
|
dreq.setLoginPolicyRegistration(this.features.loginPolicyRegistration);
|
|
|
|
dreq.setLoginPolicyIdp(this.features.loginPolicyIdp);
|
|
|
|
dreq.setLoginPolicyFactors(this.features.loginPolicyFactors);
|
|
|
|
dreq.setLoginPolicyPasswordless(this.features.loginPolicyPasswordless);
|
|
|
|
dreq.setPasswordComplexityPolicy(this.features.passwordComplexityPolicy);
|
|
|
|
dreq.setLabelPolicy(this.features.labelPolicy);
|
|
|
|
|
|
|
|
this.adminService.setDefaultFeatures(dreq).then(() => {
|
|
|
|
this.toast.showInfo('POLICY.TOAST.SET', true);
|
|
|
|
}).catch(error => {
|
|
|
|
this.toast.showError(error);
|
|
|
|
});
|
|
|
|
break;
|
2021-03-27 09:37:57 +01:00
|
|
|
}
|
2021-04-15 18:30:50 +02:00
|
|
|
}
|
2021-03-27 09:37:57 +01:00
|
|
|
|
2021-04-15 18:30:50 +02:00
|
|
|
public resetFeatures(): void {
|
|
|
|
if (this.serviceType === FeatureServiceType.MGMT) {
|
|
|
|
this.adminService.resetOrgFeatures(this.org.id).then(() => {
|
|
|
|
this.toast.showInfo('POLICY.TOAST.RESETSUCCESS', true);
|
|
|
|
setTimeout(() => {
|
|
|
|
this.fetchData();
|
|
|
|
}, 1000);
|
|
|
|
}).catch(error => {
|
|
|
|
this.toast.showError(error);
|
|
|
|
});
|
2021-03-27 09:37:57 +01:00
|
|
|
}
|
2021-04-15 18:30:50 +02:00
|
|
|
}
|
2021-03-27 09:37:57 +01:00
|
|
|
|
2021-04-15 18:30:50 +02:00
|
|
|
public get isDefault(): boolean {
|
|
|
|
if (this.features && this.serviceType === FeatureServiceType.MGMT) {
|
|
|
|
return this.features.isDefault;
|
|
|
|
} else {
|
|
|
|
return false;
|
2021-03-27 09:37:57 +01:00
|
|
|
}
|
2021-04-15 18:30:50 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
get customerValid(): boolean {
|
|
|
|
return !!this.stripeCustomer?.contact &&
|
|
|
|
!!this.stripeCustomer?.address &&
|
|
|
|
!!this.stripeCustomer?.city &&
|
|
|
|
!!this.stripeCustomer?.postal_code;
|
|
|
|
}
|
|
|
|
|
|
|
|
get customerCountry(): Country | undefined {
|
|
|
|
return COUNTRIES.find(country => country.isoCode === this.stripeCustomer.country);
|
|
|
|
}
|
2021-03-27 09:37:57 +01:00
|
|
|
}
|