X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;ds=sidebyside;f=sdnc-a1-controller%2Foam%2Fconfigbackuprestore%2Fvnfconfigbackupservice%2Fsrc%2Fmain%2Fwebapp%2Fjs%2Fsdnc-services%2Fsdnc-compareConfig-service.js;fp=sdnc-a1-controller%2Foam%2Fconfigbackuprestore%2Fvnfconfigbackupservice%2Fsrc%2Fmain%2Fwebapp%2Fjs%2Fsdnc-services%2Fsdnc-compareConfig-service.js;h=42bafcd994d7f175e05026171be9a2f51e65fcb4;hb=b6fe5a1bbad372357f6b441e1657dd8bbe48dc1a;hp=0000000000000000000000000000000000000000;hpb=4e0c72d8a2570e256911eab7cc34f770a1aa327a;p=nonrtric.git diff --git a/sdnc-a1-controller/oam/configbackuprestore/vnfconfigbackupservice/src/main/webapp/js/sdnc-services/sdnc-compareConfig-service.js b/sdnc-a1-controller/oam/configbackuprestore/vnfconfigbackupservice/src/main/webapp/js/sdnc-services/sdnc-compareConfig-service.js new file mode 100644 index 00000000..42bafcd9 --- /dev/null +++ b/sdnc-a1-controller/oam/configbackuprestore/vnfconfigbackupservice/src/main/webapp/js/sdnc-services/sdnc-compareConfig-service.js @@ -0,0 +1,156 @@ +/* + * ============LICENSE_START======================================================= + * ONAP : SDNC-FEATURES + * ================================================================================ + * Copyright 2018 TechMahindra + *================================================================================= + * 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. + * ============LICENSE_END========================================================= + */ +myApp.service('deviceConfigService', ['$http','VNF_API_BASE', function($http, VNF_API_BASE) { + + + this.getAllVNFFromRc = function() { + var rctestlist = {}; + return $http.get('/getAllBackupVnfIds') + .then(function(response) { + console.log("---validationTestService::getAllVNF From Restconf::TestResponse---" + JSON.stringify(response)); + vnflist = response.data; + return vnflist; + }, + function(response) { + console.log("validationTestService::getAllVNF From Restconf::Status Code", response.status); + return response; + }); + + }; + + this.getAllVNF = function() { + var testlist = {}; + return $http.get('/getAllBackupVnfIds') + .then(function(response) { + console.log("---validationTestService::getAllVNF::TestResponse---" + JSON.stringify(response)); + vnflist = response.data; + return vnflist; + }, + function(response) { + console.log("validationTestService::getAllVNF::Status Code", response.status); + return response; + }); + + }; + + this.getAllVnfIds = function() { + var rctestlist = {}; + return $http.get('/getAllVnfIds') + .then(function(response) { + console.log("---validationTestService::getAllVNF From Restconf::TestResponse---" + JSON.stringify(response)); + vnflist = response.data; + return vnflist; + }, + function(response) { + console.log("validationTestService::getAllVNF From Restconf::Status Code", response.status); + return response; + }); + + }; + + this.getVersions = function(vnfId) { + + var data = {}; + data.vnfId = vnfId; + var config = { + params: data, + headers: { + 'Accept': 'application/json' + } + }; + + console.log("deviceConfigService::getVersions::config", JSON.stringify(config)); + + var baseUrl = VNF_API_BASE; + var request = { + method: 'GET', + url: '/configDetailsById/'+vnfId, + + headers: { + 'Content-Type': 'application/json', + } + }; + + return $http(request) + .then(function(response) { + console.log("---deviceConfigService::getVersions::Response---" + JSON.stringify(response)); + return response; + }, + function(response) { + console.log("--deviceConfigService::getVersions::Status Code--", response.status); + return response; + }); + + + } + + this.invokeBackup = function() { + var testlist = {}; + return $http.get('/backup') + .then(function(response) { + console.log("---validationTestService::getAllVNF::TestResponse---" + response); + vnflist = response; + return vnflist; + }, + function(response) { + console.log("validationTestService::getAllVNF::Status Code", response); + return response; + }); + + }; + + this.getlastupdated = function() { + var testlist = {}; + return $http.get('/backuptime') + .then(function(response) { + console.log("---validationTestService::getBackuptime::---" + response); + return response; + }) + + }; + + this.runApplyconfig = function(vnfid, newConfig) { + + + + var url='/vnf-list/'+vnfid; + + + + var config = { + headers : { + 'Content-Type': 'application/json' + } + } + + $http.put(url, newConfig, config) + .success(function(newConfig) { + console.log("---validationTestService::getAllVNF::TestResponse---" ,response); + + return newConfig; + }, + function(newConfig) { + console.log("validationTestService::getAllVNF::Status Code", response); + return newConfig; + }); + }; + + +}]); \ No newline at end of file