Matteo Scandolo | fb46ae6 | 2017-08-08 09:10:50 -0700 | [diff] [blame] | 1 | |
| 2 | /* |
| 3 | * Copyright 2017-present Open Networking Foundation |
| 4 | |
| 5 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | * you may not use this file except in compliance with the License. |
| 7 | * You may obtain a copy of the License at |
| 8 | |
| 9 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | |
| 11 | * Unless required by applicable law or agreed to in writing, software |
| 12 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | * See the License for the specific language governing permissions and |
| 15 | * limitations under the License. |
| 16 | */ |
| 17 | |
| 18 | |
Matteo Scandolo | cb466ed | 2017-01-04 17:16:24 -0800 | [diff] [blame] | 19 | import {IXosModelDefsField} from '../../core/services/helpers/config.helpers'; |
Matteo Scandolo | 828d1e8 | 2017-01-17 14:49:38 -0800 | [diff] [blame] | 20 | import {IXosAppConfig} from '../../../index'; |
Matteo Scandolo | 29edc0f | 2018-04-26 17:19:10 +0200 | [diff] [blame] | 21 | import IPromise = angular.IPromise; |
Matteo Scandolo | f2c3ed6 | 2016-12-15 14:32:50 -0800 | [diff] [blame] | 22 | |
Matteo Scandolo | 1aee198 | 2017-02-17 08:33:23 -0800 | [diff] [blame] | 23 | export interface IXosModelDefsRelation { |
| 24 | model: string; // model name |
| 25 | type: string; // relation type |
Matteo Scandolo | 5d962a3 | 2017-08-01 18:16:14 -0700 | [diff] [blame] | 26 | on_field: string; // the field that is containing the relation |
Matteo Scandolo | f2c3ed6 | 2016-12-15 14:32:50 -0800 | [diff] [blame] | 27 | } |
| 28 | |
Matteo Scandolo | 1aee198 | 2017-02-17 08:33:23 -0800 | [diff] [blame] | 29 | export interface IXosModeldef { |
| 30 | fields: IXosModelDefsField[]; |
| 31 | relations?: IXosModelDefsRelation[]; |
| 32 | name: string; |
| 33 | app: string; |
Matteo Scandolo | 580033a | 2017-08-17 11:16:39 -0700 | [diff] [blame] | 34 | description: string; |
| 35 | verbose_name: string; |
vigneshethiraj | 98b2b89 | 2019-05-25 16:43:08 +0530 | [diff] [blame] | 36 | sync_implemented?: string; |
| 37 | policy_implemented?: string; |
Matteo Scandolo | 1aee198 | 2017-02-17 08:33:23 -0800 | [diff] [blame] | 38 | } |
| 39 | |
| 40 | export interface IXosModeldefsService { |
Matteo Scandolo | 29edc0f | 2018-04-26 17:19:10 +0200 | [diff] [blame] | 41 | get(): IPromise<IXosModeldef[]>; |
Matteo Scandolo | 1aee198 | 2017-02-17 08:33:23 -0800 | [diff] [blame] | 42 | } |
| 43 | |
| 44 | export class XosModeldefsService implements IXosModeldefsService { |
Matteo Scandolo | 828d1e8 | 2017-01-17 14:49:38 -0800 | [diff] [blame] | 45 | |
| 46 | static $inject = ['$http', '$q', 'AppConfig']; |
| 47 | |
Matteo Scandolo | f2c3ed6 | 2016-12-15 14:32:50 -0800 | [diff] [blame] | 48 | constructor( |
| 49 | private $http: angular.IHttpService, |
| 50 | private $q: angular.IQService, |
Matteo Scandolo | 828d1e8 | 2017-01-17 14:49:38 -0800 | [diff] [blame] | 51 | private AppConfig: IXosAppConfig |
Matteo Scandolo | f2c3ed6 | 2016-12-15 14:32:50 -0800 | [diff] [blame] | 52 | ) { |
| 53 | } |
| 54 | |
Matteo Scandolo | 29edc0f | 2018-04-26 17:19:10 +0200 | [diff] [blame] | 55 | public get(): IPromise<IXosModeldef[]> { |
Matteo Scandolo | f2c3ed6 | 2016-12-15 14:32:50 -0800 | [diff] [blame] | 56 | const d = this.$q.defer(); |
Matteo Scandolo | bf4e840 | 2019-06-24 12:22:49 -0700 | [diff] [blame^] | 57 | this.$http.get(`${this.AppConfig.apiEndpoint}/modeldefs`) |
Matteo Scandolo | 1aee198 | 2017-02-17 08:33:23 -0800 | [diff] [blame] | 58 | .then((res: any) => { |
| 59 | d.resolve(res.data.items); |
Matteo Scandolo | f2c3ed6 | 2016-12-15 14:32:50 -0800 | [diff] [blame] | 60 | }) |
| 61 | .catch(e => { |
| 62 | d.reject(e); |
| 63 | }); |
| 64 | return d.promise; |
| 65 | } |
| 66 | } |