import { Component, OnInit } from '@angular/core' import { FormControl, FormGroup } from '@angular/forms' import { NgbActiveModal } from '@ng-bootstrap/ng-bootstrap' import { first } from 'rxjs' import { EditDialogComponent } from 'src/app/components/common/edit-dialog/edit-dialog.component' import { Group } from 'src/app/data/group' import { User } from 'src/app/data/user' import { PermissionsService } from 'src/app/services/permissions.service' import { GroupService } from 'src/app/services/rest/group.service' import { UserService } from 'src/app/services/rest/user.service' import { SettingsService } from 'src/app/services/settings.service' import { ToastService } from 'src/app/services/toast.service' @Component({ selector: 'pngx-user-edit-dialog', templateUrl: './user-edit-dialog.component.html', styleUrls: ['./user-edit-dialog.component.scss'], }) export class UserEditDialogComponent extends EditDialogComponent implements OnInit { groups: Group[] passwordIsSet: boolean = false public totpLoading: boolean = false constructor( service: UserService, activeModal: NgbActiveModal, groupsService: GroupService, settingsService: SettingsService, private toastService: ToastService, private permissionsService: PermissionsService ) { super(service, activeModal, service, settingsService) groupsService .listAll() .pipe(first()) .subscribe((result) => (this.groups = result.results)) } ngOnInit(): void { super.ngOnInit() this.onToggleSuperUser() } getCreateTitle() { return $localize`Create new user account` } getEditTitle() { return $localize`Edit user account` } getForm(): FormGroup { return new FormGroup({ username: new FormControl(''), email: new FormControl(''), password: new FormControl(null), first_name: new FormControl(''), last_name: new FormControl(''), is_active: new FormControl(true), is_staff: new FormControl(true), is_superuser: new FormControl(false), groups: new FormControl([]), user_permissions: new FormControl([]), }) } onToggleSuperUser() { if (this.objectForm.get('is_superuser').value) { this.objectForm.get('user_permissions').disable() } else { this.objectForm.get('user_permissions').enable() } } get inheritedPermissions(): string[] { const groupsVal: Array = this.objectForm.get('groups').value if (!groupsVal) return [] else return groupsVal.flatMap( (id) => this.groups.find((g) => g.id == id)?.permissions ) } save(): void { this.passwordIsSet = this.objectForm.get('password').value?.toString().replaceAll('*', '') .length > 0 super.save() } get currentUserIsSuperUser(): boolean { return this.permissionsService.isSuperUser() } deactivateTotp() { this.totpLoading = true ;(this.service as UserService) .deactivateTotp(this.object) .pipe(first()) .subscribe({ next: (result) => { this.totpLoading = false if (result) { this.toastService.showInfo($localize`Totp deactivated`) this.object.is_mfa_enabled = false } else { this.toastService.showError($localize`Totp deactivation failed`) } }, error: (e) => { this.totpLoading = false this.toastService.showError($localize`Totp deactivation failed`, e) }, }) } }