blob: 60fc9175a6c67d17b4b3ba5e7f28b86d5fcc0a5c [file] [log] [blame]
Matteo Scandolofb46ae62017-08-08 09:10:50 -07001
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 Scandolocb466ed2017-01-04 17:16:24 -080019import {IXosModelDefsField} from '../../core/services/helpers/config.helpers';
Matteo Scandolo828d1e82017-01-17 14:49:38 -080020import {IXosAppConfig} from '../../../index';
Matteo Scandolof2c3ed62016-12-15 14:32:50 -080021
Matteo Scandolo1aee1982017-02-17 08:33:23 -080022export interface IXosModelDefsRelation {
23 model: string; // model name
24 type: string; // relation type
Matteo Scandolo5d962a32017-08-01 18:16:14 -070025 on_field: string; // the field that is containing the relation
Matteo Scandolof2c3ed62016-12-15 14:32:50 -080026}
27
Matteo Scandolo1aee1982017-02-17 08:33:23 -080028export interface IXosModeldef {
29 fields: IXosModelDefsField[];
30 relations?: IXosModelDefsRelation[];
31 name: string;
32 app: string;
Matteo Scandolo580033a2017-08-17 11:16:39 -070033 description: string;
34 verbose_name: string;
Matteo Scandolo1aee1982017-02-17 08:33:23 -080035}
36
37export interface IXosModeldefsService {
38 get(): Promise<IXosModeldef[]>;
39}
40
41export class XosModeldefsService implements IXosModeldefsService {
Matteo Scandolo828d1e82017-01-17 14:49:38 -080042
43 static $inject = ['$http', '$q', 'AppConfig'];
44
Matteo Scandolof2c3ed62016-12-15 14:32:50 -080045 constructor(
46 private $http: angular.IHttpService,
47 private $q: angular.IQService,
Matteo Scandolo828d1e82017-01-17 14:49:38 -080048 private AppConfig: IXosAppConfig
Matteo Scandolof2c3ed62016-12-15 14:32:50 -080049 ) {
50 }
51
52 public get(): Promise<any> {
53 const d = this.$q.defer();
Matteo Scandolo1aee1982017-02-17 08:33:23 -080054 this.$http.get(`${this.AppConfig.apiEndpoint}/modeldefs`)
55 .then((res: any) => {
56 d.resolve(res.data.items);
Matteo Scandolof2c3ed62016-12-15 14:32:50 -080057 })
58 .catch(e => {
59 d.reject(e);
60 });
61 return d.promise;
62 }
63}