1e6e3f24f2
-Project evaluation pattern - added
73 lines
No EOL
1.8 KiB
JavaScript
73 lines
No EOL
1.8 KiB
JavaScript
var DEBUG = true;
|
|
|
|
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;
|
|
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
|
|
};
|
|
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
|
|
};
|
|
return $http(req);
|
|
},
|
|
updateUser: function(token, payLoad){
|
|
var url = (DEBUG ? "http://localhost:8080" : "http://se-hub.appspot.com") + "/api/users/updateUser/" + token;
|
|
|
|
req = {
|
|
method: "POST",
|
|
url: url,
|
|
data: payLoad
|
|
};
|
|
return $http(req);
|
|
},
|
|
getAllCourses: function(token){
|
|
var url = (DEBUG ? "http://localhost:8080" : "http://se-hub.appspot.com") + "/api/courses/getAll/" + token;
|
|
req = {
|
|
method : "GET",
|
|
url : url
|
|
|
|
};
|
|
return $http(req);
|
|
},
|
|
getAllMessages: function(token){
|
|
var url = (DEBUG ? "http://localhost:8080" : "http://se-hub.appspot.com") + "/api/courses/getAllMessages/" + token;
|
|
req = {
|
|
method : "GET",
|
|
url : url
|
|
|
|
};
|
|
return $http(req);
|
|
},
|
|
getCourseMessages: function(token, courseName){
|
|
var url = (DEBUG ? "http://localhost:8080" : "http://se-hub.appspot.com") + "/api/courses/getCourseMessages/" + token + '/' + courseName;
|
|
req = {
|
|
method : "GET",
|
|
url : url
|
|
|
|
};
|
|
return $http(req);
|
|
}
|
|
};
|
|
}]); |