2020-10-04 00:05:52 +03:00
|
|
|
///
|
2021-01-11 13:42:16 +02:00
|
|
|
/// Copyright © 2016-2021 The Thingsboard Authors
|
2020-10-04 00:05:52 +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-10-13 12:01:47 +03:00
|
|
|
import { Component, forwardRef, Input, OnInit } from '@angular/core';
|
2020-10-04 00:05:52 +03:00
|
|
|
import {
|
|
|
|
|
ControlValueAccessor,
|
|
|
|
|
FormBuilder,
|
|
|
|
|
FormControl,
|
|
|
|
|
FormGroup,
|
|
|
|
|
NG_VALIDATORS,
|
|
|
|
|
NG_VALUE_ACCESSOR,
|
|
|
|
|
ValidationErrors,
|
|
|
|
|
Validator,
|
|
|
|
|
Validators
|
2020-10-13 12:01:47 +03:00
|
|
|
} from '@angular/forms';
|
|
|
|
|
import { coerceBooleanProperty } from '@angular/cdk/coercion';
|
2020-10-04 00:05:52 +03:00
|
|
|
import {
|
|
|
|
|
DeviceProvisionConfiguration,
|
|
|
|
|
DeviceProvisionType,
|
|
|
|
|
deviceProvisionTypeTranslationMap
|
2020-10-13 12:01:47 +03:00
|
|
|
} from '@shared/models/device.models';
|
2020-10-13 11:08:13 +03:00
|
|
|
import { generateSecret, isDefinedAndNotNull } from '@core/utils';
|
2020-11-17 17:49:32 +02:00
|
|
|
import { ActionNotificationShow } from '@core/notification/notification.actions';
|
|
|
|
|
import { Store } from '@ngrx/store';
|
|
|
|
|
import { AppState } from '@core/core.state';
|
|
|
|
|
import { TranslateService } from '@ngx-translate/core';
|
2020-10-04 00:05:52 +03:00
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
|
selector: 'tb-device-profile-provision-configuration',
|
|
|
|
|
templateUrl: './device-profile-provision-configuration.component.html',
|
|
|
|
|
styleUrls: [],
|
|
|
|
|
providers: [
|
|
|
|
|
{
|
|
|
|
|
provide: NG_VALUE_ACCESSOR,
|
|
|
|
|
useExisting: forwardRef(() => DeviceProfileProvisionConfigurationComponent),
|
|
|
|
|
multi: true
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
provide: NG_VALIDATORS,
|
|
|
|
|
useExisting: forwardRef(() => DeviceProfileProvisionConfigurationComponent),
|
|
|
|
|
multi: true,
|
|
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
})
|
|
|
|
|
export class DeviceProfileProvisionConfigurationComponent implements ControlValueAccessor, OnInit, Validator {
|
|
|
|
|
|
|
|
|
|
provisionConfigurationFormGroup: FormGroup;
|
|
|
|
|
|
|
|
|
|
deviceProvisionType = DeviceProvisionType;
|
|
|
|
|
deviceProvisionTypes = Object.keys(DeviceProvisionType);
|
|
|
|
|
deviceProvisionTypeTranslateMap = deviceProvisionTypeTranslationMap;
|
|
|
|
|
|
|
|
|
|
private requiredValue: boolean;
|
|
|
|
|
get required(): boolean {
|
|
|
|
|
return this.requiredValue;
|
|
|
|
|
}
|
|
|
|
|
@Input()
|
|
|
|
|
set required(value: boolean) {
|
|
|
|
|
this.requiredValue = coerceBooleanProperty(value);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Input()
|
|
|
|
|
disabled: boolean;
|
|
|
|
|
|
|
|
|
|
private propagateChange = (v: any) => { };
|
|
|
|
|
|
2020-11-17 17:49:32 +02:00
|
|
|
constructor(protected store: Store<AppState>,
|
|
|
|
|
private fb: FormBuilder,
|
|
|
|
|
private translate: TranslateService) {
|
2020-10-04 00:05:52 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ngOnInit(): void {
|
|
|
|
|
this.provisionConfigurationFormGroup = this.fb.group({
|
|
|
|
|
type: [DeviceProvisionType.DISABLED, Validators.required],
|
|
|
|
|
provisionDeviceSecret: [{value: null, disabled: true}, Validators.required],
|
|
|
|
|
provisionDeviceKey: [{value: null, disabled: true}, Validators.required]
|
|
|
|
|
});
|
|
|
|
|
this.provisionConfigurationFormGroup.get('type').valueChanges.subscribe((type) => {
|
2020-10-12 19:39:47 +03:00
|
|
|
if (type === DeviceProvisionType.DISABLED) {
|
2020-10-04 00:05:52 +03:00
|
|
|
this.provisionConfigurationFormGroup.get('provisionDeviceSecret').disable({emitEvent: false});
|
2020-10-13 11:08:13 +03:00
|
|
|
this.provisionConfigurationFormGroup.get('provisionDeviceSecret').patchValue(null, {emitEvent: false});
|
2020-10-04 00:05:52 +03:00
|
|
|
this.provisionConfigurationFormGroup.get('provisionDeviceKey').disable({emitEvent: false});
|
|
|
|
|
this.provisionConfigurationFormGroup.get('provisionDeviceKey').patchValue(null);
|
|
|
|
|
} else {
|
2020-10-13 11:08:13 +03:00
|
|
|
const provisionDeviceSecret: string = this.provisionConfigurationFormGroup.get('provisionDeviceSecret').value;
|
|
|
|
|
if (!provisionDeviceSecret || !provisionDeviceSecret.length) {
|
|
|
|
|
this.provisionConfigurationFormGroup.get('provisionDeviceSecret').patchValue(generateSecret(20), {emitEvent: false});
|
|
|
|
|
}
|
|
|
|
|
const provisionDeviceKey: string = this.provisionConfigurationFormGroup.get('provisionDeviceKey').value;
|
|
|
|
|
if (!provisionDeviceKey || !provisionDeviceKey.length) {
|
|
|
|
|
this.provisionConfigurationFormGroup.get('provisionDeviceKey').patchValue(generateSecret(20), {emitEvent: false});
|
|
|
|
|
}
|
2020-10-04 00:05:52 +03:00
|
|
|
this.provisionConfigurationFormGroup.get('provisionDeviceSecret').enable({emitEvent: false});
|
|
|
|
|
this.provisionConfigurationFormGroup.get('provisionDeviceKey').enable({emitEvent: false});
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
this.provisionConfigurationFormGroup.valueChanges.subscribe(() => {
|
|
|
|
|
this.updateModel();
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
registerOnChange(fn: any): void {
|
|
|
|
|
this.propagateChange = fn;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
registerOnTouched(fn: any): void {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
writeValue(value: DeviceProvisionConfiguration | null): void {
|
2020-10-12 19:39:47 +03:00
|
|
|
if (isDefinedAndNotNull(value)){
|
2020-10-04 00:05:52 +03:00
|
|
|
this.provisionConfigurationFormGroup.patchValue(value, {emitEvent: false});
|
|
|
|
|
} else {
|
|
|
|
|
this.provisionConfigurationFormGroup.patchValue({type: DeviceProvisionType.DISABLED});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
setDisabledState(isDisabled: boolean){
|
|
|
|
|
this.disabled = isDisabled;
|
2020-10-12 19:39:47 +03:00
|
|
|
if (this.disabled){
|
2020-10-04 00:05:52 +03:00
|
|
|
this.provisionConfigurationFormGroup.disable();
|
|
|
|
|
} else {
|
2020-10-13 12:01:47 +03:00
|
|
|
if (this.provisionConfigurationFormGroup.get('type').value !== DeviceProvisionType.DISABLED) {
|
|
|
|
|
this.provisionConfigurationFormGroup.enable({emitEvent: false});
|
|
|
|
|
} else {
|
|
|
|
|
this.provisionConfigurationFormGroup.get('type').enable({emitEvent: false});
|
|
|
|
|
}
|
2020-10-04 00:05:52 +03:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
validate(c: FormControl): ValidationErrors | null {
|
|
|
|
|
return (this.provisionConfigurationFormGroup.valid) ? null : {
|
|
|
|
|
provisionConfiguration: {
|
|
|
|
|
valid: false,
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private updateModel(): void {
|
|
|
|
|
let deviceProvisionConfiguration: DeviceProvisionConfiguration = null;
|
|
|
|
|
if (this.provisionConfigurationFormGroup.valid) {
|
|
|
|
|
deviceProvisionConfiguration = this.provisionConfigurationFormGroup.getRawValue();
|
|
|
|
|
}
|
|
|
|
|
this.propagateChange(deviceProvisionConfiguration);
|
|
|
|
|
}
|
2020-11-17 17:49:32 +02:00
|
|
|
|
|
|
|
|
onProvisionCopied(isKey: boolean) {
|
|
|
|
|
this.store.dispatch(new ActionNotificationShow(
|
|
|
|
|
{
|
|
|
|
|
message: this.translate.instant(isKey ? 'device-profile.provision-key-copied-message' : 'device-profile.provision-secret-copied-message'),
|
|
|
|
|
type: 'success',
|
|
|
|
|
duration: 1200,
|
|
|
|
|
verticalPosition: 'bottom',
|
|
|
|
|
horizontalPosition: 'right'
|
|
|
|
|
}));
|
|
|
|
|
}
|
2020-10-04 00:05:52 +03:00
|
|
|
}
|