se-hub/templates/js/services/apiService.js

44 lines
909 B
JavaScript
Raw Normal View History

2015-06-09 17:16:29 +00:00
var DEBUG = true;
2015-05-09 19:00:14 +00:00
var service = angular.module('seHub.services', []);
service.factory('apiService', ['$http', function($http) {
return {
getUserByToken: function(token){
var url = (DEBUG ? "http://localhost:8080" : "http://se-hub.appspot.com") + "/api/users/getUserByToken/" + token;
2015-05-09 19:00:14 +00:00
req = {
method : "GET",
url : url
};
return $http(req);
},
getAllCampuses: function(token){
var url = (DEBUG ? "http://localhost:8080" : "http://se-hub.appspot.com") + "/api/campuses/getAll/" + token;
req = {
method : "GET",
url : url
2015-05-09 19:00:14 +00:00
};
return $http(req);
},
sendValidationMail: function(token, email){
var url = (DEBUG ? "http://localhost:8080" : "http://se-hub.appspot.com") + "/api/validation/sendmail/" + token;
payload = {
email: email
};
req = {
method: "POST",
url: url,
data: payload
};
2015-05-09 19:00:14 +00:00
return $http(req);
}
};
}]);