From 087d4b667a9c5517ac7d014c2bbdad994b927147 Mon Sep 17 00:00:00 2001 From: Nirvan Ramjuttun Date: Tue, 7 May 2019 12:39:19 -0400 Subject: Modify CDS-UI server to allow communicating with external blueprint mS Issue-ID: CCSDK-1292 Change-Id: I3536437bad334841d7c7ecd577c092cd13f42a9b Signed-off-by: Nirvan Ramjuttun --- .../resource-dictionary.datasource-template.ts | 91 ++++++++++++++++++++++ 1 file changed, 91 insertions(+) create mode 100644 cds-ui/server/src/datasources/resource-dictionary.datasource-template.ts (limited to 'cds-ui/server/src/datasources/resource-dictionary.datasource-template.ts') diff --git a/cds-ui/server/src/datasources/resource-dictionary.datasource-template.ts b/cds-ui/server/src/datasources/resource-dictionary.datasource-template.ts new file mode 100644 index 000000000..b987e588c --- /dev/null +++ b/cds-ui/server/src/datasources/resource-dictionary.datasource-template.ts @@ -0,0 +1,91 @@ +import {controllerApiConfig} from '../../config/app-config'; + +export default { + "name": "resourceDictionary", + "connector": "rest", + "baseURL": controllerApiConfig.url + "/dictionary", + "crud": false, + "operations": [{ + "template": { + "method": "GET", + "url": controllerApiConfig.url + "/dictionary/{name}", + "headers": { + "accepts": "application/json", + "content-type": "application/json", + "authorization": controllerApiConfig.authToken + }, + "responsePath": "$.*" + }, + "functions": { + "getByName": ["name"] + + } + }, + { + "template": { + "method": "GET", + "url": controllerApiConfig.url + "/dictionary/source-mapping", + "headers": { + "accepts": "application/json", + "content-type": "application/json", + "authorization": controllerApiConfig.authToken + }, + "responsePath": "$.*" + }, + "functions": { + "getSourceMapping": [] + + } + }, + { + "template": { + "method": "GET", + "url": controllerApiConfig.url + "/dictionary/search/{tags}", + "headers": { + "accepts": "application/json", + "content-type": "application/json", + "authorization": controllerApiConfig.authToken + }, + "responsePath": "$.*" + }, + "functions": { + "getByTags": ["tags"] + + } + }, + { + "template": { + "method": "POST", + "url": controllerApiConfig.url + "/dictionary", + "headers": { + "accepts": "application/json", + "content-type": "application/json", + "authorization": controllerApiConfig.authToken + }, + "body": "{resourceDictionary}", + "responsePath": "$.*" + }, + "functions": { + "save": ["resourceDictionary"] + + } + }, + { + "template": { + "method": "POST", + "url": controllerApiConfig.url + "/dictionary/by-names", + "headers": { + "accepts": "application/json", + "content-type": "application/json", + "authorization": controllerApiConfig.authToken + }, + "body": "{resourceDictionaryList}", + "responsePath": "$.*" + }, + "functions": { + "searchbyNames": ["resourceDictionaryList"] + + } + } + ] +}; \ No newline at end of file -- cgit 1.2.3-korg