mirror of https://github.com/ghostfolio/ghostfolio
207 lines
5.4 KiB
207 lines
5.4 KiB
import {
|
|
ChangeDetectorRef,
|
|
Component,
|
|
OnDestroy,
|
|
OnInit,
|
|
ViewChild
|
|
} from '@angular/core';
|
|
import {
|
|
MatSlideToggle,
|
|
MatSlideToggleChange
|
|
} from '@angular/material/slide-toggle';
|
|
import { DataService } from '@ghostfolio/client/services/data.service';
|
|
import { UserService } from '@ghostfolio/client/services/user/user.service';
|
|
import { WebAuthnService } from '@ghostfolio/client/services/web-authn.service';
|
|
import { DEFAULT_DATE_FORMAT, baseCurrency } from '@ghostfolio/common/config';
|
|
import { Access, User } from '@ghostfolio/common/interfaces';
|
|
import { hasPermission, permissions } from '@ghostfolio/common/permissions';
|
|
import { Currency } from '@prisma/client';
|
|
import { StripeService } from 'ngx-stripe';
|
|
import { EMPTY, Subject } from 'rxjs';
|
|
import { catchError, switchMap, takeUntil } from 'rxjs/operators';
|
|
|
|
@Component({
|
|
selector: 'gf-account-page',
|
|
templateUrl: './account-page.html',
|
|
styleUrls: ['./account-page.scss']
|
|
})
|
|
export class AccountPageComponent implements OnDestroy, OnInit {
|
|
@ViewChild('toggleSignInWithFingerprintEnabledElement')
|
|
signInWithFingerprintElement: MatSlideToggle;
|
|
|
|
public accesses: Access[];
|
|
public baseCurrency = baseCurrency;
|
|
public coupon: number;
|
|
public couponId: string;
|
|
public currencies: Currency[] = [];
|
|
public defaultDateFormat = DEFAULT_DATE_FORMAT;
|
|
public hasPermissionForSubscription: boolean;
|
|
public hasPermissionToUpdateViewMode: boolean;
|
|
public hasPermissionToUpdateUserSettings: boolean;
|
|
public price: number;
|
|
public priceId: string;
|
|
public user: User;
|
|
|
|
private unsubscribeSubject = new Subject<void>();
|
|
|
|
/**
|
|
* @constructor
|
|
*/
|
|
public constructor(
|
|
private changeDetectorRef: ChangeDetectorRef,
|
|
private dataService: DataService,
|
|
private stripeService: StripeService,
|
|
private userService: UserService,
|
|
public webAuthnService: WebAuthnService
|
|
) {
|
|
const { currencies, globalPermissions, subscriptions } =
|
|
this.dataService.fetchInfo();
|
|
this.coupon = subscriptions?.[0]?.coupon;
|
|
this.couponId = subscriptions?.[0]?.couponId;
|
|
this.currencies = currencies;
|
|
|
|
this.hasPermissionForSubscription = hasPermission(
|
|
globalPermissions,
|
|
permissions.enableSubscription
|
|
);
|
|
|
|
this.price = subscriptions?.[0]?.price;
|
|
this.priceId = subscriptions?.[0]?.priceId;
|
|
|
|
this.userService.stateChanged
|
|
.pipe(takeUntil(this.unsubscribeSubject))
|
|
.subscribe((state) => {
|
|
if (state?.user) {
|
|
this.user = state.user;
|
|
|
|
this.hasPermissionToUpdateUserSettings = hasPermission(
|
|
this.user.permissions,
|
|
permissions.updateUserSettings
|
|
);
|
|
|
|
this.hasPermissionToUpdateViewMode = hasPermission(
|
|
this.user.permissions,
|
|
permissions.updateViewMode
|
|
);
|
|
|
|
this.changeDetectorRef.markForCheck();
|
|
}
|
|
});
|
|
}
|
|
|
|
/**
|
|
* Initializes the controller
|
|
*/
|
|
public ngOnInit() {
|
|
this.update();
|
|
}
|
|
|
|
public onChangeUserSettings(aKey: string, aValue: string) {
|
|
const settings = { ...this.user.settings, [aKey]: aValue };
|
|
|
|
this.dataService
|
|
.putUserSettings({
|
|
baseCurrency: settings?.baseCurrency,
|
|
viewMode: settings?.viewMode
|
|
})
|
|
.pipe(takeUntil(this.unsubscribeSubject))
|
|
.subscribe(() => {
|
|
this.userService.remove();
|
|
|
|
this.userService
|
|
.get()
|
|
.pipe(takeUntil(this.unsubscribeSubject))
|
|
.subscribe((user) => {
|
|
this.user = user;
|
|
|
|
this.changeDetectorRef.markForCheck();
|
|
});
|
|
});
|
|
}
|
|
|
|
public onCheckout() {
|
|
this.dataService
|
|
.createCheckoutSession({ couponId: this.couponId, priceId: this.priceId })
|
|
.pipe(
|
|
switchMap(({ sessionId }: { sessionId: string }) => {
|
|
return this.stripeService.redirectToCheckout({
|
|
sessionId
|
|
});
|
|
})
|
|
)
|
|
.subscribe((result) => {
|
|
if (result.error) {
|
|
alert(result.error.message);
|
|
}
|
|
});
|
|
}
|
|
|
|
public onSignInWithFingerprintChange(aEvent: MatSlideToggleChange) {
|
|
if (aEvent.checked) {
|
|
this.registerDevice();
|
|
} else {
|
|
const confirmation = confirm(
|
|
'Do you really want to remove this sign in method?'
|
|
);
|
|
|
|
if (confirmation) {
|
|
this.deregisterDevice();
|
|
} else {
|
|
this.update();
|
|
}
|
|
}
|
|
}
|
|
|
|
public ngOnDestroy() {
|
|
this.unsubscribeSubject.next();
|
|
this.unsubscribeSubject.complete();
|
|
}
|
|
|
|
private deregisterDevice() {
|
|
this.webAuthnService
|
|
.deregister()
|
|
.pipe(
|
|
takeUntil(this.unsubscribeSubject),
|
|
catchError(() => {
|
|
this.update();
|
|
|
|
return EMPTY;
|
|
})
|
|
)
|
|
.subscribe(() => {
|
|
this.update();
|
|
});
|
|
}
|
|
|
|
private registerDevice() {
|
|
this.webAuthnService
|
|
.register()
|
|
.pipe(
|
|
takeUntil(this.unsubscribeSubject),
|
|
catchError(() => {
|
|
this.update();
|
|
|
|
return EMPTY;
|
|
})
|
|
)
|
|
.subscribe(() => {
|
|
this.update();
|
|
});
|
|
}
|
|
|
|
private update() {
|
|
this.dataService
|
|
.fetchAccesses()
|
|
.pipe(takeUntil(this.unsubscribeSubject))
|
|
.subscribe((response) => {
|
|
this.accesses = response;
|
|
|
|
if (this.signInWithFingerprintElement) {
|
|
this.signInWithFingerprintElement.checked =
|
|
this.webAuthnService.isEnabled() ?? false;
|
|
}
|
|
|
|
this.changeDetectorRef.markForCheck();
|
|
});
|
|
}
|
|
}
|
|
|