139 lines
5.3 KiB
TypeScript
139 lines
5.3 KiB
TypeScript
|
|
///
|
||
|
|
/// Copyright © 2016-2019 The Thingsboard Authors
|
||
|
|
///
|
||
|
|
/// 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.
|
||
|
|
///
|
||
|
|
|
||
|
|
import {Component, OnInit, SkipSelf, Inject} from '@angular/core';
|
||
|
|
import {ErrorStateMatcher, MatDialogRef, MAT_DIALOG_DATA} from '@angular/material';
|
||
|
|
import { PageComponent } from '@shared/components/page.component';
|
||
|
|
import { Store } from '@ngrx/store';
|
||
|
|
import { AppState } from '@core/core.state';
|
||
|
|
import {FormBuilder, FormControl, FormGroup, FormGroupDirective, NgForm, Validators} from '@angular/forms';
|
||
|
|
import { ActionNotificationShow } from '@core/notification/notification.actions';
|
||
|
|
import { TranslateService } from '@ngx-translate/core';
|
||
|
|
import { AuthService } from '@core/auth/auth.service';
|
||
|
|
import {DeviceService} from '@core/http/device.service';
|
||
|
|
import {DeviceCredentials, DeviceCredentialsType, credentialTypeNames} from '@shared/models/device.models';
|
||
|
|
|
||
|
|
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: []
|
||
|
|
})
|
||
|
|
export class DeviceCredentialsDialogComponent extends PageComponent implements OnInit, ErrorStateMatcher {
|
||
|
|
|
||
|
|
deviceCredentialsFormGroup: FormGroup;
|
||
|
|
|
||
|
|
isReadOnly: boolean;
|
||
|
|
|
||
|
|
deviceCredentials: DeviceCredentials;
|
||
|
|
|
||
|
|
submitted = false;
|
||
|
|
|
||
|
|
deviceCredentialsType = DeviceCredentialsType;
|
||
|
|
|
||
|
|
credentialsTypes = Object.keys(DeviceCredentialsType);
|
||
|
|
|
||
|
|
credentialTypeNamesMap = credentialTypeNames;
|
||
|
|
|
||
|
|
constructor(protected store: Store<AppState>,
|
||
|
|
@Inject(MAT_DIALOG_DATA) public data: DeviceCredentialsDialogData,
|
||
|
|
private deviceService: DeviceService,
|
||
|
|
@SkipSelf() private errorStateMatcher: ErrorStateMatcher,
|
||
|
|
public dialogRef: MatDialogRef<DeviceCredentialsDialogComponent, DeviceCredentials>,
|
||
|
|
public fb: FormBuilder) {
|
||
|
|
super(store);
|
||
|
|
|
||
|
|
this.isReadOnly = data.isReadOnly;
|
||
|
|
}
|
||
|
|
|
||
|
|
ngOnInit(): void {
|
||
|
|
this.deviceCredentialsFormGroup = this.fb.group({
|
||
|
|
credentialsType: [DeviceCredentialsType.ACCESS_TOKEN],
|
||
|
|
credentialsId: [''],
|
||
|
|
credentialsValue: ['']
|
||
|
|
});
|
||
|
|
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;
|
||
|
|
this.deviceCredentialsFormGroup.patchValue({
|
||
|
|
credentialsType: deviceCredentials.credentialsType,
|
||
|
|
credentialsId: deviceCredentials.credentialsId,
|
||
|
|
credentialsValue: deviceCredentials.credentialsValue
|
||
|
|
});
|
||
|
|
this.updateValidators();
|
||
|
|
}
|
||
|
|
);
|
||
|
|
}
|
||
|
|
|
||
|
|
credentialsTypeChanged(): void {
|
||
|
|
this.deviceCredentialsFormGroup.patchValue(
|
||
|
|
{credentialsId: null, credentialsValue: null}, {emitEvent: true});
|
||
|
|
this.updateValidators();
|
||
|
|
}
|
||
|
|
|
||
|
|
updateValidators(): void {
|
||
|
|
const crendetialsType = this.deviceCredentialsFormGroup.get('credentialsType').value as DeviceCredentialsType;
|
||
|
|
switch (crendetialsType) {
|
||
|
|
case DeviceCredentialsType.ACCESS_TOKEN:
|
||
|
|
this.deviceCredentialsFormGroup.get('credentialsId').setValidators([Validators.max(20), Validators.pattern(/^.{1,20}$/)]);
|
||
|
|
this.deviceCredentialsFormGroup.get('credentialsId').updateValueAndValidity();
|
||
|
|
this.deviceCredentialsFormGroup.get('credentialsValue').setValidators([]);
|
||
|
|
this.deviceCredentialsFormGroup.get('credentialsValue').updateValueAndValidity();
|
||
|
|
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();
|
||
|
|
break;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
cancel(): void {
|
||
|
|
this.dialogRef.close(null);
|
||
|
|
}
|
||
|
|
|
||
|
|
save(): void {
|
||
|
|
this.submitted = true;
|
||
|
|
this.deviceCredentials = {...this.deviceCredentials, ...this.deviceCredentialsFormGroup.value};
|
||
|
|
this.deviceService.saveDeviceCredentials(this.deviceCredentials).subscribe(
|
||
|
|
(deviceCredentials) => {
|
||
|
|
this.dialogRef.close(deviceCredentials);
|
||
|
|
}
|
||
|
|
);
|
||
|
|
}
|
||
|
|
}
|