thingsboard/ui-ngx/src/app/core/http/device.service.ts

177 lines
8.0 KiB
TypeScript
Raw Normal View History

2019-08-13 19:58:35 +03:00
///
2021-01-11 13:42:16 +02:00
/// Copyright © 2016-2021 The Thingsboard Authors
2019-08-13 19:58:35 +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.
///
import { Injectable } from '@angular/core';
import { defaultHttpOptionsFromConfig, RequestConfig } from './http-utils';
import { Observable, ReplaySubject } from 'rxjs';
2019-08-13 19:58:35 +03:00
import { HttpClient } from '@angular/common/http';
import { PageLink } from '@shared/models/page/page-link';
import { PageData } from '@shared/models/page/page-data';
2020-02-21 19:04:49 +02:00
import {
ClaimRequest,
ClaimResult,
2020-02-21 19:04:49 +02:00
Device,
DeviceCredentials,
DeviceInfo,
DeviceSearchQuery
} from '@app/shared/models/device.models';
import { EntitySubtype } from '@app/shared/models/entity-type.models';
import { AuthService } from '@core/auth/auth.service';
2019-08-13 19:58:35 +03:00
@Injectable({
providedIn: 'root'
})
export class DeviceService {
constructor(
private http: HttpClient
) { }
public getTenantDeviceInfos(pageLink: PageLink, type: string = '',
config?: RequestConfig): Observable<PageData<DeviceInfo>> {
2019-08-13 19:58:35 +03:00
return this.http.get<PageData<DeviceInfo>>(`/api/tenant/deviceInfos${pageLink.toQuery()}&type=${type}`,
defaultHttpOptionsFromConfig(config));
2019-08-13 19:58:35 +03:00
}
public getTenantDeviceInfosByDeviceProfileId(pageLink: PageLink, deviceProfileId: string = '',
config?: RequestConfig): Observable<PageData<DeviceInfo>> {
return this.http.get<PageData<DeviceInfo>>(`/api/tenant/deviceInfos${pageLink.toQuery()}&deviceProfileId=${deviceProfileId}`,
defaultHttpOptionsFromConfig(config));
}
public getCustomerDeviceInfos(customerId: string, pageLink: PageLink, type: string = '',
config?: RequestConfig): Observable<PageData<DeviceInfo>> {
2019-08-13 19:58:35 +03:00
return this.http.get<PageData<DeviceInfo>>(`/api/customer/${customerId}/deviceInfos${pageLink.toQuery()}&type=${type}`,
defaultHttpOptionsFromConfig(config));
2019-08-13 19:58:35 +03:00
}
public getCustomerDeviceInfosByDeviceProfileId(customerId: string, pageLink: PageLink, deviceProfileId: string = '',
config?: RequestConfig): Observable<PageData<DeviceInfo>> {
return this.http.get<PageData<DeviceInfo>>(`/api/customer/${customerId}/deviceInfos${pageLink.toQuery()}&deviceProfileId=${deviceProfileId}`,
defaultHttpOptionsFromConfig(config));
}
public getDevice(deviceId: string, config?: RequestConfig): Observable<Device> {
return this.http.get<Device>(`/api/device/${deviceId}`, defaultHttpOptionsFromConfig(config));
2019-08-13 19:58:35 +03:00
}
public getDevices(deviceIds: Array<string>, config?: RequestConfig): Observable<Array<Device>> {
return this.http.get<Array<Device>>(`/api/devices?deviceIds=${deviceIds.join(',')}`, defaultHttpOptionsFromConfig(config));
2019-08-15 20:39:56 +03:00
}
public getDeviceInfo(deviceId: string, config?: RequestConfig): Observable<DeviceInfo> {
return this.http.get<DeviceInfo>(`/api/device/info/${deviceId}`, defaultHttpOptionsFromConfig(config));
2019-08-13 19:58:35 +03:00
}
public saveDevice(device: Device, config?: RequestConfig): Observable<Device> {
return this.http.post<Device>('/api/device', device, defaultHttpOptionsFromConfig(config));
2019-08-13 19:58:35 +03:00
}
public deleteDevice(deviceId: string, config?: RequestConfig) {
return this.http.delete(`/api/device/${deviceId}`, defaultHttpOptionsFromConfig(config));
2019-08-13 19:58:35 +03:00
}
public getDeviceTypes(config?: RequestConfig): Observable<Array<EntitySubtype>> {
return this.http.get<Array<EntitySubtype>>('/api/device/types', defaultHttpOptionsFromConfig(config));
2019-08-13 19:58:35 +03:00
}
public getDeviceCredentials(deviceId: string, sync: boolean = false, config?: RequestConfig): Observable<DeviceCredentials> {
2019-08-14 19:55:24 +03:00
const url = `/api/device/${deviceId}/credentials`;
if (sync) {
const responseSubject = new ReplaySubject<DeviceCredentials>();
const request = new XMLHttpRequest();
request.open('GET', url, false);
request.setRequestHeader('Accept', 'application/json, text/plain, */*');
const jwtToken = AuthService.getJwtToken();
if (jwtToken) {
request.setRequestHeader('X-Authorization', 'Bearer ' + jwtToken);
}
request.send(null);
if (request.status === 200) {
const credentials = JSON.parse(request.responseText) as DeviceCredentials;
responseSubject.next(credentials);
} else {
responseSubject.error(null);
}
return responseSubject.asObservable();
} else {
return this.http.get<DeviceCredentials>(url, defaultHttpOptionsFromConfig(config));
2019-08-14 19:55:24 +03:00
}
}
public saveDeviceCredentials(deviceCredentials: DeviceCredentials, config?: RequestConfig): Observable<DeviceCredentials> {
return this.http.post<DeviceCredentials>('/api/device/credentials', deviceCredentials, defaultHttpOptionsFromConfig(config));
2019-08-14 19:55:24 +03:00
}
public makeDevicePublic(deviceId: string, config?: RequestConfig): Observable<Device> {
return this.http.post<Device>(`/api/customer/public/device/${deviceId}`, null, defaultHttpOptionsFromConfig(config));
2019-08-14 19:55:24 +03:00
}
public assignDeviceToCustomer(customerId: string, deviceId: string,
config?: RequestConfig): Observable<Device> {
return this.http.post<Device>(`/api/customer/${customerId}/device/${deviceId}`, null, defaultHttpOptionsFromConfig(config));
}
public unassignDeviceFromCustomer(deviceId: string, config?: RequestConfig) {
return this.http.delete(`/api/customer/device/${deviceId}`, defaultHttpOptionsFromConfig(config));
2019-08-13 19:58:35 +03:00
}
public sendOneWayRpcCommand(deviceId: string, requestBody: any, config?: RequestConfig): Observable<any> {
return this.http.post<Device>(`/api/rpc/oneway/${deviceId}`, requestBody, defaultHttpOptionsFromConfig(config));
}
public sendTwoWayRpcCommand(deviceId: string, requestBody: any, config?: RequestConfig): Observable<any> {
return this.http.post<Device>(`/api/rpc/twoway/${deviceId}`, requestBody, defaultHttpOptionsFromConfig(config));
}
public findByQuery(query: DeviceSearchQuery,
config?: RequestConfig): Observable<Array<Device>> {
return this.http.post<Array<Device>>('/api/devices', query, defaultHttpOptionsFromConfig(config));
}
public findByName(deviceName: string, config?: RequestConfig): Observable<Device> {
return this.http.get<Device>(`/api/tenant/devices?deviceName=${deviceName}`, defaultHttpOptionsFromConfig(config));
}
2020-02-21 19:04:49 +02:00
public claimDevice(deviceName: string, claimRequest: ClaimRequest,
config?: RequestConfig): Observable<ClaimResult> {
2020-02-28 14:11:52 +02:00
return this.http.post<ClaimResult>(`/api/customer/device/${deviceName}/claim`, claimRequest, defaultHttpOptionsFromConfig(config));
2020-02-21 19:04:49 +02:00
}
public unclaimDevice(deviceName: string, config?: RequestConfig) {
return this.http.delete(`/api/customer/device/${deviceName}/claim`, defaultHttpOptionsFromConfig(config));
}
2020-11-04 07:18:54 +02:00
public assignDeviceToEdge(edgeId: string, deviceId: string,
config?: RequestConfig): Observable<Device> {
return this.http.post<Device>(`/api/edge/${edgeId}/device/${deviceId}`,
defaultHttpOptionsFromConfig(config));
}
2020-11-04 07:18:54 +02:00
public unassignDeviceFromEdge(edgeId: string, deviceId: string,
config?: RequestConfig) {
2020-06-22 12:37:36 +03:00
return this.http.delete(`/api/edge/${edgeId}/device/${deviceId}`,
defaultHttpOptionsFromConfig(config));
}
public getEdgeDevices(edgeId: string, pageLink: PageLink, type: string = '',
config?: RequestConfig): Observable<PageData<DeviceInfo>> {
return this.http.get<PageData<DeviceInfo>>(`/api/edge/${edgeId}/devices${pageLink.toQuery()}&type=${type}`,
defaultHttpOptionsFromConfig(config))
}
2019-08-13 19:58:35 +03:00
}