angular.module('servicios', []) .factory('Utilidades', ['$http', '$location', function($http, $location){ var baseUrl = $location.protocol() + '://' + $location.host() + ($location.port() == 80 ? '' : ':' + $location.port()) + '/'; return { ejecutarGet: function(uri, onSuccess, onError){ $http({ method: 'GET', url: baseUrl + uri, headers:{'Cache-Control': 'no-cache'} }).then(function successCallback(response) { if (response.data && response.data.estado){ if (response.data.estado == 1){ if (onSuccess) onSuccess(response.data.contenido); } } }, function errorCallback(response) { if (onError) onError(response); else $('#errores').html(response); }); }, ejecutarPost: function(uri, data, onSuccess, onError){ $http({ method: 'POST', url: baseUrl + uri, data: data, headers:{'Cache-Control': 'no-cache'} }).then(function successCallback(response) { if (onSuccess) onSuccess(response); }, function errorCallback(response) { if (onError) onError(response); else $('#errores').html(response); }); }, ejecutarPut: function(uri, data, onSuccess, onError){ $http({ method: 'PUT', url: baseUrl + uri, data: data, headers:{'Cache-Control': 'no-cache'} }).then(function successCallback(response) { if (onSuccess) onSuccess(response); }, function errorCallback(response) { if (onError) onError(response); else $('#errores').html(response); }); }, getUrl: function(){ return baseUrl; } }; }]);