Skip to content
Snippets Groups Projects
ldap.component.ts 5.68 KiB
Newer Older
  • Learn to ignore specific revisions
  • Alex ORLUC's avatar
    Alex ORLUC committed
    import { Component, OnInit, ViewChild } from '@angular/core';
    
    import { SignaturesContentService } from '../../../service/signatures.service';
    import { NotificationService } from '../../../service/notification.service';
    
    import { HttpClient } from '@angular/common/http';
    
    import { MatDialog, MatSidenav } from '@angular/material';
    
    import { map, finalize } from 'rxjs/operators';
    import { ActivatedRoute, Router } from '@angular/router';
    
    import { ConfirmComponent } from '../../../plugins/confirm.component';
    
    import { TranslateService } from '@ngx-translate/core';
    
    
    export interface Ldap {
    
        label: string;
    
        identifier: string;
    
        value: {
            uri: string,
            ssl: boolean,
            prefix: string,
            suffix: string,
            baseDN: string,
        };
    
    }
    
    @Component({
        selector: 'app-administration-ldap',
        templateUrl: 'ldap.component.html',
    
        styleUrls: ['../../administration.scss', 'ldap.component.scss'],
    
    })
    
    export class LdapComponent implements OnInit {
    
        creationMode: boolean = true;
        loading: boolean = true;
    
        loadingTest: boolean = false;
        ldapTest: any = {
            login: '',
            password: '',
            result: ''
        };
    
        ldap: Ldap;
        ldapClone: Ldap;
        title: string = '';
    
    
        // tslint:disable-next-line:no-input-rename
    
    Alex ORLUC's avatar
    Alex ORLUC committed
        @ViewChild('snavRight') snavRight: MatSidenav;
    
        constructor(public http: HttpClient, private translate: TranslateService, private route: ActivatedRoute, private router: Router, public signaturesService: SignaturesContentService, public notificationService: NotificationService, public dialog: MatDialog) {
        }
    
        ngOnInit(): void {
    
            this.ldapTest.login = this.signaturesService.userLogged.login;
    
    
            this.route.params.subscribe((params: any) => {
                if (params['id'] === undefined) {
                    this.creationMode = true;
                    this.title = this.translate.instant('lang.ldapCreation');
                    this.ldap = {
    
                        identifier: 'ldapServer',
    
                        value: {
                            uri: '',
                            ssl: false,
                            prefix: '',
                            suffix: '',
                            baseDN: '',
                        }
    
                    };
                    this.loading = false;
                } else {
                    this.creationMode = false;
    
                    this.http.get('../rest/configurations/' + params['id'])
    
                            map((data: any) => data.configuration),
    
                            finalize(() => this.loading = false)
                        )
                        .subscribe({
    
                            next: (data: any) => {
    
                                this.ldap = data;
                                this.title = this.ldap.label;
                            },
                        });
                }
            });
        }
    
        canValidate() {
            if (JSON.stringify(this.ldap) === JSON.stringify(this.ldapClone)) {
                return false;
            } else {
                return true;
            }
        }
    
        onSubmit() {
            if (this.creationMode) {
                this.createLdap();
            } else {
                this.modifyLdap();
            }
        }
    
        modifyLdap() {
            this.loading = true;
    
            this.http.patch('../rest/configurations/' + this.ldap.id, this.ldap)
    
                .pipe(
                    finalize(() => this.loading = false)
                )
                .subscribe({
                    next: () => {
    
                        this.router.navigate(['/administration/connections/ldaps']);
    
                        this.notificationService.success('lang.ldapUpdated');
                    },
                });
        }
    
        createLdap() {
            this.loading = true;
    
            this.http.post('../rest/configurations', this.ldap)
    
                .pipe(
                    finalize(() => this.loading = false)
                )
                .subscribe({
                    next: () => {
    
                        this.router.navigate(['/administration/connections/ldaps']);
    
                        this.notificationService.success('lang.ldapAdded');
                    },
                });
        }
    
        delete() {
    
            const dialogRef = this.dialog.open(ConfirmComponent, { autoFocus: false, data: { mode: '', title: 'lang.confirmMsg', msg: '' } });
    
    
            dialogRef.afterClosed().subscribe(result => {
                if (result === 'yes') {
                    this.loading = true;
    
                    this.http.delete('../rest/configurations/' + this.ldap.id)
    
                        .pipe(
                            finalize(() => this.loading = false)
                        )
                        .subscribe({
                            next: () => {
    
                                this.router.navigate(['/administration/connections/ldaps']);
    
                                this.notificationService.success('lang.ldapDeleted');
    
            this.router.navigate(['/administration/connections/ldaps']);
        }
    
        testLdap() {
            this.ldapTest.result = '';
            this.loadingTest = true;
            this.http.get('../rest/configurations/' + this.ldap.id + '/connection', {
                params: {
                    login: this.ldapTest.login,
                    password: this.ldapTest.password
                }
            })
                .pipe(
                    finalize(() => this.loadingTest = false)
                )
                .subscribe({
                    next: (data: any) => {
    
    Alex ORLUC's avatar
    Alex ORLUC committed
                        this.ldapTest.result = data.informations;
    
                        if (data.connection) {
                            this.snavRight.close();
    
    Alex ORLUC's avatar
    Alex ORLUC committed
                            this.notificationService.success('lang.ldapConnectionSucceeded');