X-Git-Url: https://gerrit.akraino.org/r/gitweb?p=validation.git;a=blobdiff_plain;f=ui%2Fsrc%2Fmain%2Fwebapp%2Fapp%2FBluvalUI%2FApp.Services.js;fp=ui%2Fsrc%2Fmain%2Fwebapp%2Fapp%2FBluvalUI%2FApp.Services.js;h=635286a3e6443d518eab2c3781439d66adb61113;hp=b5123e1e02a7f8156f7816bed476ba4dfe9a110c;hb=3ff5d7028b19a649f6b80c476ff45ced1fdd67dc;hpb=147ecf7bf79ea9967a121d0038103151a38ebef2 diff --git a/ui/src/main/webapp/app/BluvalUI/App.Services.js b/ui/src/main/webapp/app/BluvalUI/App.Services.js index b5123e1..635286a 100644 --- a/ui/src/main/webapp/app/BluvalUI/App.Services.js +++ b/ui/src/main/webapp/app/BluvalUI/App.Services.js @@ -14,123 +14,123 @@ * limitations under the License. */ -var services = angular.module('App.Services', ['App.Config']); +var services = angular.module('App.Services', [ 'App.Config' ]); services.factory('restAPISvc', [ - '$http', - 'appContext', - function ($http, appContext) { - var svc = []; - svc.getRestAPI = function (path, cb) { - return $http({ - method: 'GET', - url: appContext + path, - headers: { - 'Content-Type': "application/json", - 'Accept': "application/json" - } - }).then( - function (response) { - if (response.status == 200) { - cb(response.data); - } else { - /* eslint-disable no-console */ - console.log("Get REST API error: " - + response.statusText); - /* eslint-enable no-console */ - cb(null); + '$http', + 'appContext', + function($http, appContext) { + var svc = []; + svc.getRestAPI = function(path, cb) { + return $http({ + method : 'GET', + url : appContext + path, + headers : { + 'Content-Type' : "application/json", + 'Accept' : "application/json" } - }, - function (error) { - /* eslint-disable no-console */ - console.log("Get REST API error: " - + error.statusText); - /* eslint-enable no-console */ - cb(null); - }); - }; - svc.postRestAPI = function (path, json, cb) { - return $http({ - method: 'POST', - url: appContext + path, - headers: { - 'Content-Type': "application/json", - 'Accept': "application/json" - }, - data: json - }).then( - function (response) { - if (response.status == 200 - || response.status == 201) { - cb(response.data); - } else { - /* eslint-disable no-console */ - console.log("Post REST API error: " - + response.statusText); - /* eslint-enable no-console */ - cb(null); - } - }, - function (error) { - /* eslint-disable no-console */ - console.log("Post REST API error: " - + error.statusText); - /* eslint-enable no-console */ - cb(null); - }); - }; - svc.deleteRestAPI = function (path, json) { - return $http({ - method: 'DELETE', - url: appContext + path, - headers: { - 'Content-Type': "application/json", - 'Accept': "application/json" - }, - data: json - }).then( - function (response) { - if (response.status !== 200) { - /* eslint-disable no-console */ - console.log("Delete REST API error: " - + response.statusText); - /* eslint-enable no-console */ - } - }, - function (error) { - /* eslint-disable no-console */ - console.log("Delete REST API error: " - + error.statusText); - /* eslint-enable no-console */ - }); - }; - return svc; - }]); + }).then( + function(response) { + if (response.status == 200) { + cb(response.data); + } else { + /* eslint-disable no-console */ + console.log("Get REST API error: " + + response.statusText); + /* eslint-enable no-console */ + cb(null); + } + }, + function(error) { + /* eslint-disable no-console */ + console.log("Get REST API error: " + + error.statusText); + /* eslint-enable no-console */ + cb(null); + }); + }; + svc.postRestAPI = function(path, json, cb) { + return $http({ + method : 'POST', + url : appContext + path, + headers : { + 'Content-Type' : "application/json", + 'Accept' : "application/json" + }, + data : json + }).then( + function(response) { + if (response.status == 200 + || response.status == 201) { + cb(response.data); + } else { + /* eslint-disable no-console */ + console.log("Post REST API error: " + + response.statusText); + /* eslint-enable no-console */ + cb(null); + } + }, + function(error) { + /* eslint-disable no-console */ + console.log("Post REST API error: " + + error.statusText); + /* eslint-enable no-console */ + cb(null); + }); + }; + svc.deleteRestAPI = function(path, json, cb) { + return $http({ + method : 'DELETE', + url : appContext + path, + headers : { + 'Content-Type' : "application/json", + 'Accept' : "application/json" + }, + data : json + }).then( + function(response) { + if (response.status !== 200) { + /* eslint-disable no-console */ + console.log("Delete REST API error: " + + response.statusText); + /* eslint-enable no-console */ + cb(null); + } + cb(response.data); + }, + function(error) { + /* eslint-disable no-console */ + console.log("Delete REST API error: " + + error.statusText); + /* eslint-enable no-console */ + cb(null); + }); + }; + return svc; + } ]); -services.factory("sharedContext", function () { +services.factory("sharedContext", function() { var context = []; - var addData = function (key, value) { + var addData = function(key, value) { var data = { - key: key, - value: value + key : key, + value : value }; context.push(data); } - var getData = function (key) { + var getData = function(key) { var data = []; - angular - .forEach( - context, - function (pair) { - if (pair.key === key) { - data = pair.value; - } - }); + angular.forEach(context, function(pair) { + if (pair.key === key) { + data = pair.value; + } + }); return data; } return { - addData: addData, - getData: getData + addData : addData, + getData : getData } }); \ No newline at end of file