/* * ============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.getVersions = function(vnfId) { var data = {}; // data.selectedVnfName = vnfName; // data.selectedVnfType = vnfType; 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 baseApi='runtest'; // var apiUrl= baseUrl + baseApi; // Call the pre validation service var request = { method: 'GET', url: '/configDetailsById/'+vnfId, //url: 'sdnc-stubs/getAllConfigForVNF.json', //data: data, 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; }); /*.then(function (response) { if (response.data) { $scope.successMessage1 = "Put Data Method Executed Successfully!"; return response; } var status= response.status; if (status == 200){ $window.alert("applyed successfully "); } var successMessage1 = "Put Data Method Executed Successfully!"; }, function (response) { var successMessage1 = "Service not Exists"; }); */ }; }]);