Resource Dictionary: fecthing data-type list
[ccsdk/cds.git] / cds-ui / server / src / services / resource-dictionary.service.ts
1 import {getService} from '@loopback/service-proxy';
2 import {inject, Provider} from '@loopback/core';
3 import {ResourceDictionaryDataSource} from '../datasources';
4
5 export interface ResourceDictionaryService {
6   getByName(name: string): Promise<JSON>;
7   getSourceMapping(): Promise<JSON>;
8   getByTags(tags: string): Promise<JSON>;
9   save(resourceDictionary: JSON): Promise<JSON>;
10   searchbyNames(resourceDictionaryList: JSON): Promise<JSON>;  
11   getModelType(source: string): Promise<JSON>;
12   getDataTypes(): Promise<JSON>;
13 }
14
15 export class ResourceDictionaryServiceProvider implements Provider<ResourceDictionaryService> {
16   constructor(
17     // resourceDictionary must match the name property in the datasource json file
18     @inject('datasources.resourceDictionary')
19     protected dataSource: ResourceDictionaryDataSource = new ResourceDictionaryDataSource(),
20   ) {}
21
22   value(): Promise<ResourceDictionaryService> {
23     return getService(this.dataSource);
24   }
25 }