2019-08-14 19:55:24 +03:00
|
|
|
///
|
2020-02-20 10:26:43 +02:00
|
|
|
/// Copyright © 2016-2020 The Thingsboard Authors
|
2019-08-14 19:55:24 +03:00
|
|
|
///
|
|
|
|
|
/// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
|
/// you may not use this file except in compliance with the License.
|
|
|
|
|
/// You may obtain a copy of the License at
|
|
|
|
|
///
|
|
|
|
|
/// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
///
|
|
|
|
|
/// Unless required by applicable law or agreed to in writing, software
|
|
|
|
|
/// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
|
/// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
|
/// See the License for the specific language governing permissions and
|
|
|
|
|
/// limitations under the License.
|
|
|
|
|
///
|
|
|
|
|
|
2020-04-03 21:14:39 +03:00
|
|
|
import { Component, Inject, OnInit, SkipSelf } from '@angular/core';
|
2020-02-10 13:15:29 +02:00
|
|
|
import { ErrorStateMatcher } from '@angular/material/core';
|
2020-04-03 21:14:39 +03:00
|
|
|
import { MAT_DIALOG_DATA, MatDialogRef } from '@angular/material/dialog';
|
2019-08-14 19:55:24 +03:00
|
|
|
import { Store } from '@ngrx/store';
|
|
|
|
|
import { AppState } from '@core/core.state';
|
2020-09-10 15:14:37 +03:00
|
|
|
import {
|
|
|
|
|
FormBuilder,
|
|
|
|
|
FormControl,
|
|
|
|
|
FormGroup,
|
|
|
|
|
FormGroupDirective,
|
|
|
|
|
NgForm,
|
|
|
|
|
ValidationErrors,
|
|
|
|
|
ValidatorFn,
|
|
|
|
|
Validators
|
|
|
|
|
} from '@angular/forms';
|
2020-04-03 21:14:39 +03:00
|
|
|
import { DeviceService } from '@core/http/device.service';
|
2020-09-10 15:14:37 +03:00
|
|
|
import {
|
|
|
|
|
credentialTypeNames,
|
|
|
|
|
DeviceCredentialMQTTBasic,
|
|
|
|
|
DeviceCredentials,
|
|
|
|
|
DeviceCredentialsType
|
|
|
|
|
} from '@shared/models/device.models';
|
2019-08-28 16:02:27 +03:00
|
|
|
import { DialogComponent } from '@shared/components/dialog.component';
|
|
|
|
|
import { Router } from '@angular/router';
|
2019-08-14 19:55:24 +03:00
|
|
|
|
|
|
|
|
export interface DeviceCredentialsDialogData {
|
|
|
|
|
isReadOnly: boolean;
|
|
|
|
|
deviceId: string;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
|
selector: 'tb-device-credentials-dialog',
|
|
|
|
|
templateUrl: './device-credentials-dialog.component.html',
|
|
|
|
|
providers: [{provide: ErrorStateMatcher, useExisting: DeviceCredentialsDialogComponent}],
|
|
|
|
|
styleUrls: []
|
|
|
|
|
})
|
2019-08-28 16:02:27 +03:00
|
|
|
export class DeviceCredentialsDialogComponent extends
|
|
|
|
|
DialogComponent<DeviceCredentialsDialogComponent, DeviceCredentials> implements OnInit, ErrorStateMatcher {
|
2019-08-14 19:55:24 +03:00
|
|
|
|
|
|
|
|
deviceCredentialsFormGroup: FormGroup;
|
|
|
|
|
|
|
|
|
|
isReadOnly: boolean;
|
|
|
|
|
|
|
|
|
|
deviceCredentials: DeviceCredentials;
|
|
|
|
|
|
|
|
|
|
submitted = false;
|
|
|
|
|
|
|
|
|
|
deviceCredentialsType = DeviceCredentialsType;
|
|
|
|
|
|
|
|
|
|
credentialsTypes = Object.keys(DeviceCredentialsType);
|
|
|
|
|
|
|
|
|
|
credentialTypeNamesMap = credentialTypeNames;
|
|
|
|
|
|
2020-09-10 15:14:37 +03:00
|
|
|
hidePassword = true;
|
|
|
|
|
|
2019-08-14 19:55:24 +03:00
|
|
|
constructor(protected store: Store<AppState>,
|
2019-08-28 16:02:27 +03:00
|
|
|
protected router: Router,
|
2019-08-14 19:55:24 +03:00
|
|
|
@Inject(MAT_DIALOG_DATA) public data: DeviceCredentialsDialogData,
|
|
|
|
|
private deviceService: DeviceService,
|
|
|
|
|
@SkipSelf() private errorStateMatcher: ErrorStateMatcher,
|
|
|
|
|
public dialogRef: MatDialogRef<DeviceCredentialsDialogComponent, DeviceCredentials>,
|
|
|
|
|
public fb: FormBuilder) {
|
2019-08-28 16:02:27 +03:00
|
|
|
super(store, router, dialogRef);
|
2019-08-14 19:55:24 +03:00
|
|
|
|
|
|
|
|
this.isReadOnly = data.isReadOnly;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ngOnInit(): void {
|
|
|
|
|
this.deviceCredentialsFormGroup = this.fb.group({
|
|
|
|
|
credentialsType: [DeviceCredentialsType.ACCESS_TOKEN],
|
|
|
|
|
credentialsId: [''],
|
2020-09-10 15:14:37 +03:00
|
|
|
credentialsValue: [''],
|
|
|
|
|
credentialsBasic: this.fb.group({
|
|
|
|
|
clientId: ['', [Validators.pattern(/^[A-Za-z0-9]+$/)]],
|
|
|
|
|
userName: [''],
|
|
|
|
|
password: ['']
|
|
|
|
|
}, {validators: this.atLeastOne(Validators.required, ['clientId', 'userName'])})
|
2019-08-14 19:55:24 +03:00
|
|
|
});
|
|
|
|
|
if (this.isReadOnly) {
|
|
|
|
|
this.deviceCredentialsFormGroup.disable({emitEvent: false});
|
|
|
|
|
} else {
|
|
|
|
|
this.registerDisableOnLoadFormControl(this.deviceCredentialsFormGroup.get('credentialsType'));
|
|
|
|
|
}
|
|
|
|
|
this.loadDeviceCredentials();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
isErrorState(control: FormControl | null, form: FormGroupDirective | NgForm | null): boolean {
|
|
|
|
|
const originalErrorState = this.errorStateMatcher.isErrorState(control, form);
|
|
|
|
|
const customErrorState = !!(control && control.invalid && this.submitted);
|
|
|
|
|
return originalErrorState || customErrorState;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
loadDeviceCredentials() {
|
|
|
|
|
this.deviceService.getDeviceCredentials(this.data.deviceId).subscribe(
|
|
|
|
|
(deviceCredentials) => {
|
|
|
|
|
this.deviceCredentials = deviceCredentials;
|
2020-09-10 15:14:37 +03:00
|
|
|
let credentialsValue = deviceCredentials.credentialsValue;
|
|
|
|
|
let credentialsBasic = {clientId: null, userName: null, password: null};
|
|
|
|
|
if (deviceCredentials.credentialsType === DeviceCredentialsType.MQTT_BASIC) {
|
|
|
|
|
credentialsValue = null;
|
|
|
|
|
credentialsBasic = deviceCredentials.credentialsValue as DeviceCredentialMQTTBasic;
|
|
|
|
|
}
|
2019-08-14 19:55:24 +03:00
|
|
|
this.deviceCredentialsFormGroup.patchValue({
|
|
|
|
|
credentialsType: deviceCredentials.credentialsType,
|
|
|
|
|
credentialsId: deviceCredentials.credentialsId,
|
2020-09-10 15:14:37 +03:00
|
|
|
credentialsValue,
|
|
|
|
|
credentialsBasic
|
2019-08-14 19:55:24 +03:00
|
|
|
});
|
|
|
|
|
this.updateValidators();
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
credentialsTypeChanged(): void {
|
2020-09-10 15:14:37 +03:00
|
|
|
this.deviceCredentialsFormGroup.patchValue({
|
|
|
|
|
credentialsId: null,
|
|
|
|
|
credentialsValue: null,
|
|
|
|
|
credentialsBasic: {clientId: '', userName: '', password: ''}
|
|
|
|
|
}, {emitEvent: true});
|
2019-08-14 19:55:24 +03:00
|
|
|
this.updateValidators();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
updateValidators(): void {
|
2020-09-10 15:14:37 +03:00
|
|
|
this.hidePassword = true;
|
2019-08-14 19:55:24 +03:00
|
|
|
const crendetialsType = this.deviceCredentialsFormGroup.get('credentialsType').value as DeviceCredentialsType;
|
|
|
|
|
switch (crendetialsType) {
|
|
|
|
|
case DeviceCredentialsType.ACCESS_TOKEN:
|
2020-06-17 12:00:49 +03:00
|
|
|
this.deviceCredentialsFormGroup.get('credentialsId').setValidators([Validators.required, Validators.pattern(/^.{1,20}$/)]);
|
2019-08-14 19:55:24 +03:00
|
|
|
this.deviceCredentialsFormGroup.get('credentialsId').updateValueAndValidity();
|
|
|
|
|
this.deviceCredentialsFormGroup.get('credentialsValue').setValidators([]);
|
|
|
|
|
this.deviceCredentialsFormGroup.get('credentialsValue').updateValueAndValidity();
|
2020-09-10 15:14:37 +03:00
|
|
|
this.deviceCredentialsFormGroup.get('credentialsBasic').disable();
|
2019-08-14 19:55:24 +03:00
|
|
|
break;
|
|
|
|
|
case DeviceCredentialsType.X509_CERTIFICATE:
|
|
|
|
|
this.deviceCredentialsFormGroup.get('credentialsValue').setValidators([Validators.required]);
|
|
|
|
|
this.deviceCredentialsFormGroup.get('credentialsValue').updateValueAndValidity();
|
|
|
|
|
this.deviceCredentialsFormGroup.get('credentialsId').setValidators([]);
|
|
|
|
|
this.deviceCredentialsFormGroup.get('credentialsId').updateValueAndValidity();
|
2020-09-10 15:14:37 +03:00
|
|
|
this.deviceCredentialsFormGroup.get('credentialsBasic').disable();
|
2019-08-14 19:55:24 +03:00
|
|
|
break;
|
2020-09-10 15:14:37 +03:00
|
|
|
case DeviceCredentialsType.MQTT_BASIC:
|
|
|
|
|
this.deviceCredentialsFormGroup.get('credentialsBasic').enable();
|
|
|
|
|
this.deviceCredentialsFormGroup.get('credentialsBasic').updateValueAndValidity();
|
|
|
|
|
this.deviceCredentialsFormGroup.get('credentialsId').setValidators([]);
|
|
|
|
|
this.deviceCredentialsFormGroup.get('credentialsId').updateValueAndValidity();
|
|
|
|
|
this.deviceCredentialsFormGroup.get('credentialsValue').setValidators([]);
|
|
|
|
|
this.deviceCredentialsFormGroup.get('credentialsValue').updateValueAndValidity();
|
2019-08-14 19:55:24 +03:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-09-10 15:14:37 +03:00
|
|
|
private atLeastOne(validator: ValidatorFn, controls: string[] = null) {
|
|
|
|
|
return (group: FormGroup): ValidationErrors | null => {
|
|
|
|
|
if (!controls) {
|
|
|
|
|
controls = Object.keys(group.controls);
|
|
|
|
|
}
|
|
|
|
|
const hasAtLeastOne = group?.controls && controls.some(k => !validator(group.controls[k]));
|
|
|
|
|
|
|
|
|
|
return hasAtLeastOne ? null : {atLeastOne: true};
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-14 19:55:24 +03:00
|
|
|
cancel(): void {
|
|
|
|
|
this.dialogRef.close(null);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
save(): void {
|
|
|
|
|
this.submitted = true;
|
2020-09-10 15:14:37 +03:00
|
|
|
const deviceCredentialsValue = this.deviceCredentialsFormGroup.value;
|
|
|
|
|
if (deviceCredentialsValue.credentialsType === DeviceCredentialsType.MQTT_BASIC) {
|
|
|
|
|
deviceCredentialsValue.credentialsValue = deviceCredentialsValue.credentialsBasic;
|
|
|
|
|
}
|
|
|
|
|
delete deviceCredentialsValue.credentialsBasic;
|
|
|
|
|
this.deviceCredentials = {...this.deviceCredentials, ...deviceCredentialsValue};
|
2019-08-14 19:55:24 +03:00
|
|
|
this.deviceService.saveDeviceCredentials(this.deviceCredentials).subscribe(
|
|
|
|
|
(deviceCredentials) => {
|
|
|
|
|
this.dialogRef.close(deviceCredentials);
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
}
|
2020-09-10 15:14:37 +03:00
|
|
|
|
|
|
|
|
passwordChanged() {
|
|
|
|
|
const value = this.deviceCredentialsFormGroup.get('credentialsBasic.password').value;
|
|
|
|
|
if (value !== '') {
|
|
|
|
|
this.deviceCredentialsFormGroup.get('credentialsBasic.userName').setValidators([Validators.required]);
|
|
|
|
|
if (this.deviceCredentialsFormGroup.get('credentialsBasic.userName').untouched) {
|
|
|
|
|
this.deviceCredentialsFormGroup.get('credentialsBasic.userName').markAsTouched({onlySelf: true});
|
|
|
|
|
}
|
|
|
|
|
this.deviceCredentialsFormGroup.get('credentialsBasic.userName').updateValueAndValidity();
|
|
|
|
|
} else {
|
|
|
|
|
this.deviceCredentialsFormGroup.get('credentialsBasic.userName').setValidators([]);
|
|
|
|
|
this.deviceCredentialsFormGroup.get('credentialsBasic.userName').updateValueAndValidity();
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-08-14 19:55:24 +03:00
|
|
|
}
|