2019-08-23 15:06:42 +03:00
|
|
|
///
|
|
|
|
|
/// 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 { Injectable } from '@angular/core';
|
2019-11-15 12:22:14 +02:00
|
|
|
import { defaultHttpOptions, defaultHttpOptionsFromConfig, RequestConfig } from './http-utils';
|
2019-08-23 15:06:42 +03:00
|
|
|
import { Observable } from 'rxjs/index';
|
|
|
|
|
import { HttpClient } from '@angular/common/http';
|
|
|
|
|
import { EntityRelation, EntityRelationInfo, EntityRelationsQuery } from '@shared/models/relation.models';
|
|
|
|
|
import { EntityId } from '@app/shared/models/id/entity-id';
|
|
|
|
|
|
|
|
|
|
@Injectable({
|
|
|
|
|
providedIn: 'root'
|
|
|
|
|
})
|
|
|
|
|
export class EntityRelationService {
|
|
|
|
|
|
|
|
|
|
constructor(
|
|
|
|
|
private http: HttpClient
|
|
|
|
|
) { }
|
|
|
|
|
|
2019-11-15 12:22:14 +02:00
|
|
|
public saveRelation(relation: EntityRelation, config?: RequestConfig): Observable<EntityRelation> {
|
|
|
|
|
return this.http.post<EntityRelation>('/api/relation', relation, defaultHttpOptionsFromConfig(config));
|
2019-08-23 15:06:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public deleteRelation(fromId: EntityId, relationType: string, toId: EntityId,
|
2019-11-15 12:22:14 +02:00
|
|
|
config?: RequestConfig) {
|
2019-08-23 15:06:42 +03:00
|
|
|
return this.http.delete(`/api/relation?fromId=${fromId.id}&fromType=${fromId.entityType}` +
|
|
|
|
|
`&relationType=${relationType}&toId=${toId.id}&toType=${toId.entityType}`,
|
2019-11-15 12:22:14 +02:00
|
|
|
defaultHttpOptionsFromConfig(config));
|
2019-08-23 15:06:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public deleteRelations(entityId: EntityId,
|
2019-11-15 12:22:14 +02:00
|
|
|
config?: RequestConfig) {
|
2019-08-23 15:06:42 +03:00
|
|
|
return this.http.delete(`/api/relations?entityId=${entityId.id}&entityType=${entityId.entityType}`,
|
2019-11-15 12:22:14 +02:00
|
|
|
defaultHttpOptionsFromConfig(config));
|
2019-08-23 15:06:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public getRelation(fromId: EntityId, relationType: string, toId: EntityId,
|
2019-11-15 12:22:14 +02:00
|
|
|
config?: RequestConfig): Observable<EntityRelation> {
|
2019-08-23 15:06:42 +03:00
|
|
|
return this.http.get<EntityRelation>(`/api/relation?fromId=${fromId.id}&fromType=${fromId.entityType}` +
|
|
|
|
|
`&relationType=${relationType}&toId=${toId.id}&toType=${toId.entityType}`,
|
2019-11-15 12:22:14 +02:00
|
|
|
defaultHttpOptionsFromConfig(config));
|
2019-08-23 15:06:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public findByFrom(fromId: EntityId,
|
2019-11-15 12:22:14 +02:00
|
|
|
config?: RequestConfig): Observable<Array<EntityRelation>> {
|
2019-08-23 15:06:42 +03:00
|
|
|
return this.http.get<Array<EntityRelation>>(
|
|
|
|
|
`/api/relations?fromId=${fromId.id}&fromType=${fromId.entityType}`,
|
2019-11-15 12:22:14 +02:00
|
|
|
defaultHttpOptionsFromConfig(config));
|
2019-08-23 15:06:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public findInfoByFrom(fromId: EntityId,
|
2019-11-15 12:22:14 +02:00
|
|
|
config?: RequestConfig): Observable<Array<EntityRelationInfo>> {
|
2019-08-23 15:06:42 +03:00
|
|
|
return this.http.get<Array<EntityRelationInfo>>(
|
|
|
|
|
`/api/relations/info?fromId=${fromId.id}&fromType=${fromId.entityType}`,
|
2019-11-15 12:22:14 +02:00
|
|
|
defaultHttpOptionsFromConfig(config));
|
2019-08-23 15:06:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public findByFromAndType(fromId: EntityId, relationType: string,
|
2019-11-15 12:22:14 +02:00
|
|
|
config?: RequestConfig): Observable<Array<EntityRelation>> {
|
2019-08-23 15:06:42 +03:00
|
|
|
return this.http.get<Array<EntityRelation>>(
|
|
|
|
|
`/api/relations?fromId=${fromId.id}&fromType=${fromId.entityType}&relationType=${relationType}`,
|
2019-11-15 12:22:14 +02:00
|
|
|
defaultHttpOptionsFromConfig(config));
|
2019-08-23 15:06:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public findByTo(toId: EntityId,
|
2019-11-15 12:22:14 +02:00
|
|
|
config?: RequestConfig): Observable<Array<EntityRelation>> {
|
2019-08-23 15:06:42 +03:00
|
|
|
return this.http.get<Array<EntityRelation>>(
|
|
|
|
|
`/api/relations?toId=${toId.id}&toType=${toId.entityType}`,
|
2019-11-15 12:22:14 +02:00
|
|
|
defaultHttpOptionsFromConfig(config));
|
2019-08-23 15:06:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public findInfoByTo(toId: EntityId,
|
2019-11-15 12:22:14 +02:00
|
|
|
config?: RequestConfig): Observable<Array<EntityRelationInfo>> {
|
2019-08-23 15:06:42 +03:00
|
|
|
return this.http.get<Array<EntityRelationInfo>>(
|
|
|
|
|
`/api/relations/info?toId=${toId.id}&toType=${toId.entityType}`,
|
2019-11-15 12:22:14 +02:00
|
|
|
defaultHttpOptionsFromConfig(config));
|
2019-08-23 15:06:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public findByToAndType(toId: EntityId, relationType: string,
|
2019-11-15 12:22:14 +02:00
|
|
|
config?: RequestConfig): Observable<Array<EntityRelation>> {
|
2019-08-23 15:06:42 +03:00
|
|
|
return this.http.get<Array<EntityRelation>>(
|
|
|
|
|
`/api/relations?toId=${toId.id}&toType=${toId.entityType}&relationType=${relationType}`,
|
2019-11-15 12:22:14 +02:00
|
|
|
defaultHttpOptionsFromConfig(config));
|
2019-08-23 15:06:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public findByQuery(query: EntityRelationsQuery,
|
2019-11-15 12:22:14 +02:00
|
|
|
config?: RequestConfig): Observable<Array<EntityRelation>> {
|
2019-08-23 15:06:42 +03:00
|
|
|
return this.http.post<Array<EntityRelation>>(
|
|
|
|
|
'/api/relations', query,
|
2019-11-15 12:22:14 +02:00
|
|
|
defaultHttpOptionsFromConfig(config));
|
2019-08-23 15:06:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public findInfoByQuery(query: EntityRelationsQuery,
|
2019-11-15 12:22:14 +02:00
|
|
|
config?: RequestConfig): Observable<Array<EntityRelationInfo>> {
|
2019-08-23 15:06:42 +03:00
|
|
|
return this.http.post<Array<EntityRelationInfo>>(
|
|
|
|
|
'/api/relations/info', query,
|
2019-11-15 12:22:14 +02:00
|
|
|
defaultHttpOptionsFromConfig(config));
|
2019-08-23 15:06:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|