Added user methods
This commit is contained in:
parent
c4e24549d5
commit
2147ca1ad8
@ -52,13 +52,6 @@ public class DataController {
|
|||||||
|
|
||||||
USER_ID = Long.parseLong(data[1]);
|
USER_ID = Long.parseLong(data[1]);
|
||||||
HttpRequest.TOKEN = data[0];
|
HttpRequest.TOKEN = data[0];
|
||||||
|
|
||||||
Tuple<Integer, String> auth = httpRequest.sendPostRequest(
|
|
||||||
HEADER_TEST_ENDPOINT,
|
|
||||||
"",
|
|
||||||
true
|
|
||||||
);
|
|
||||||
System.out.println("auth " + auth);
|
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
return false;
|
return false;
|
||||||
@ -88,40 +81,27 @@ public class DataController {
|
|||||||
return USER_ID >= 0;
|
return USER_ID >= 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*********
|
||||||
|
* Event *
|
||||||
|
*********/
|
||||||
public void createEvent(Event event) throws HttpRequestException {
|
public void createEvent(Event event) throws HttpRequestException {
|
||||||
try {
|
sendBasicHttpRequest(
|
||||||
Tuple<Integer, String> response = httpRequest.sendPostRequest(ADD_EVENT_ENDPOINT, event.getAsUrlParam(), true);
|
ADD_EVENT_ENDPOINT,
|
||||||
if(response.getKey() != 200){
|
event.getAsUrlParam(),
|
||||||
throw new HttpRequestException(response);
|
true
|
||||||
}
|
);
|
||||||
}catch (HttpRequestException e){
|
|
||||||
throw e;
|
|
||||||
}catch (Exception e) {
|
|
||||||
throw new HttpRequestException("Es konnte keine Verbindung mit dem Server hergestellt werden.", 600);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void deleteEvent(int userId, int eventId, LocalDateTime date) throws HttpRequestException {
|
public void deleteEvent(int userId, int eventId, LocalDateTime date) throws HttpRequestException {
|
||||||
try {
|
sendBasicHttpRequest(
|
||||||
System.out.println("DELETE: userId=" + userId + "&eventId=" + eventId + "&date=" + date.toLocalDate());
|
|
||||||
Tuple<Integer, String> response = httpRequest.sendPostRequest(
|
|
||||||
DELETE_EVENT_ENDPOINT,
|
DELETE_EVENT_ENDPOINT,
|
||||||
"userId=" + userId + "&eventId=" + eventId + "&date=" + date.toLocalDate(),
|
"userId=" + userId + "&eventId=" + eventId + "&date=" + date.toLocalDate(),
|
||||||
true
|
true
|
||||||
);
|
);
|
||||||
if(response.getKey() != 200){
|
|
||||||
throw new HttpRequestException(response);
|
|
||||||
}
|
|
||||||
}catch (HttpRequestException e){
|
|
||||||
throw e;
|
|
||||||
}catch (Exception e) {
|
|
||||||
throw new HttpRequestException("Es konnte keine Verbindung mit dem Server hergestellt werden.", 600);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void editEvent(Event oldEvent, Event event) throws HttpRequestException {
|
public void editEvent(Event oldEvent, Event event) throws HttpRequestException {
|
||||||
try {
|
sendBasicHttpRequest(
|
||||||
Tuple<Integer, String> response = httpRequest.sendPostRequest(
|
|
||||||
EDIT_EVENT_ENDPOINT,
|
EDIT_EVENT_ENDPOINT,
|
||||||
"eventId=" + oldEvent.getId() +
|
"eventId=" + oldEvent.getId() +
|
||||||
"&userId=" + oldEvent.getOwnerId() +
|
"&userId=" + oldEvent.getOwnerId() +
|
||||||
@ -135,14 +115,6 @@ public class DataController {
|
|||||||
"&newIsPrivate=" + event.isPrivate(),
|
"&newIsPrivate=" + event.isPrivate(),
|
||||||
true
|
true
|
||||||
);
|
);
|
||||||
if(response.getKey() != 200){
|
|
||||||
throw new HttpRequestException(response);
|
|
||||||
}
|
|
||||||
}catch (HttpRequestException e){
|
|
||||||
throw e;
|
|
||||||
}catch (Exception e) {
|
|
||||||
throw new HttpRequestException("Es konnte keine Verbindung mit dem Server hergestellt werden.", 600);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public ArrayList<Event> getAllVisibleEvents(LocalDateTime startDate, LocalDateTime endDate) throws HttpRequestException {
|
public ArrayList<Event> getAllVisibleEvents(LocalDateTime startDate, LocalDateTime endDate) throws HttpRequestException {
|
||||||
@ -161,7 +133,8 @@ public class DataController {
|
|||||||
|
|
||||||
ObjectMapper objectMapper = new ObjectMapper();
|
ObjectMapper objectMapper = new ObjectMapper();
|
||||||
objectMapper.findAndRegisterModules();
|
objectMapper.findAndRegisterModules();
|
||||||
eventList = (ArrayList<Event>) objectMapper.readValue(jsonResponse, new TypeReference<List<Event>>(){});
|
eventList = (ArrayList<Event>) objectMapper.readValue(jsonResponse, new TypeReference<List<Event>>() {
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
} catch (HttpRequestException e) {
|
} catch (HttpRequestException e) {
|
||||||
@ -173,5 +146,50 @@ public class DataController {
|
|||||||
return eventList;
|
return eventList;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/********
|
||||||
|
* User *
|
||||||
|
********/
|
||||||
|
|
||||||
|
/*
|
||||||
|
public void createUser(User user) throws HttpRequestException {
|
||||||
|
sendBasicHttpRequest(
|
||||||
|
ADD_USER_ENDPOINT,
|
||||||
|
user.getAsUrlParam(),
|
||||||
|
true
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void deleteUser(User user) throws HttpRequestException {
|
||||||
|
sendBasicHttpRequest(
|
||||||
|
DELETE_USER_ENDPOINT,
|
||||||
|
user.getAsUrlParam(),
|
||||||
|
true
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void editUser(User oldUser, User user) throws HttpRequestException {
|
||||||
|
sendBasicHttpRequest(
|
||||||
|
EDIT_USER_ENDPOINT,
|
||||||
|
user.getAsUrlParam(),
|
||||||
|
true
|
||||||
|
);
|
||||||
|
}
|
||||||
|
*/
|
||||||
|
|
||||||
|
private void sendBasicHttpRequest(String urlString, String urlParameters, boolean sendAuth) throws HttpRequestException {
|
||||||
|
try {
|
||||||
|
Tuple<Integer, String> response = httpRequest.sendPostRequest(
|
||||||
|
urlString,
|
||||||
|
urlParameters,
|
||||||
|
sendAuth
|
||||||
|
);
|
||||||
|
if (response.getKey() != 200) {
|
||||||
|
throw new HttpRequestException(response);
|
||||||
|
}
|
||||||
|
} catch (HttpRequestException e) {
|
||||||
|
throw e;
|
||||||
|
} catch (Exception e) {
|
||||||
|
throw new HttpRequestException("Es konnte keine Verbindung mit dem Server hergestellt werden.", 600);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user