Compare commits
1 Commits
2410-devel
...
898054bb63
| Author | SHA1 | Date | |
|---|---|---|---|
| 898054bb63 |
@@ -13,7 +13,7 @@ javafx {
|
|||||||
}
|
}
|
||||||
|
|
||||||
application {
|
application {
|
||||||
mainClassName = "main.MainApplication"
|
mainClassName = "client.MainApplication"
|
||||||
}
|
}
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
@@ -27,7 +27,7 @@ dependencies {
|
|||||||
|
|
||||||
val jar by tasks.getting(Jar::class) {
|
val jar by tasks.getting(Jar::class) {
|
||||||
manifest {
|
manifest {
|
||||||
attributes["Main-Class"] = "main.Launcher"
|
attributes["Main-Class"] = "client.Launcher"
|
||||||
}
|
}
|
||||||
from({
|
from({
|
||||||
configurations.runtimeClasspath.get().map { if (it.isDirectory) it else zipTree(it) }
|
configurations.runtimeClasspath.get().map { if (it.isDirectory) it else zipTree(it) }
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
//Marc Beyer//
|
||||||
package customUI;
|
package customUI;
|
||||||
|
|
||||||
public class Button extends javafx.scene.control.Button {
|
public class Button extends javafx.scene.control.Button {
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
//Marc Beyer//
|
||||||
package customUI;
|
package customUI;
|
||||||
|
|
||||||
public class Converter {
|
public class Converter {
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
//Marc Beyer//
|
||||||
package customUI;
|
package customUI;
|
||||||
|
|
||||||
public class Label extends javafx.scene.control.Label {
|
public class Label extends javafx.scene.control.Label {
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
//Marco Kühn//
|
||||||
package customUI;
|
package customUI;
|
||||||
|
|
||||||
public class Tooltip extends javafx.scene.control.Tooltip {
|
public class Tooltip extends javafx.scene.control.Tooltip {
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
//Marco Kühn//
|
||||||
package helper;
|
package helper;
|
||||||
|
|
||||||
import javafx.geometry.Bounds;
|
import javafx.geometry.Bounds;
|
||||||
|
|||||||
@@ -42,6 +42,7 @@ public class CreateEventController {
|
|||||||
public CreateEventController() {
|
public CreateEventController() {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//Marco Kühn//
|
||||||
@FXML
|
@FXML
|
||||||
public void initialize() {
|
public void initialize() {
|
||||||
|
|
||||||
@@ -53,7 +54,7 @@ public class CreateEventController {
|
|||||||
timeEnd.setConverter(defaultConverter);
|
timeEnd.setConverter(defaultConverter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//Marc Beyer//
|
||||||
@FXML
|
@FXML
|
||||||
protected void createBtnClick(ActionEvent actionEvent) {
|
protected void createBtnClick(ActionEvent actionEvent) {
|
||||||
try {
|
try {
|
||||||
@@ -85,11 +86,13 @@ public class CreateEventController {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//Marc Beyer//
|
||||||
protected void sendHttpRequest(Event event) throws HttpRequestException {
|
protected void sendHttpRequest(Event event) throws HttpRequestException {
|
||||||
DataController dataController = new DataController();
|
DataController dataController = new DataController();
|
||||||
dataController.createEvent(event);
|
dataController.createEvent(event);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//Marc Beyer//
|
||||||
@FXML
|
@FXML
|
||||||
protected void abortBtnClick(ActionEvent event) {
|
protected void abortBtnClick(ActionEvent event) {
|
||||||
Stage stage = (Stage) ((Node) event.getSource()).getScene().getWindow();
|
Stage stage = (Stage) ((Node) event.getSource()).getScene().getWindow();
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
//Marc Beyer//
|
||||||
package main;
|
package main;
|
||||||
|
|
||||||
import customUI.Converter;
|
import customUI.Converter;
|
||||||
@@ -30,9 +31,13 @@ public class EditEventController extends CreateEventController{
|
|||||||
//timeEnd.setValue(currentEvent.getEnd());
|
//timeEnd.setValue(currentEvent.getEnd());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void sendHttpRequest(Event event) throws HttpRequestException {
|
protected void sendHttpRequest(Event event) throws HttpRequestException {
|
||||||
DataController dataController = new DataController();
|
DataController dataController = new DataController();
|
||||||
dataController.editEvent(currentEvent, event);
|
dataController.deleteEvent(currentEvent.getOwnerId(), currentEvent.getId(), currentEvent.getDate());
|
||||||
|
dataController.createEvent(event);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
//Marc Beyer//
|
||||||
package main;
|
package main;
|
||||||
|
|
||||||
import config.Config;
|
import config.Config;
|
||||||
@@ -12,6 +13,7 @@ import res.HttpRequest;
|
|||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.util.Objects;
|
import java.util.Objects;
|
||||||
|
|
||||||
|
|
||||||
public class MainApplication extends Application {
|
public class MainApplication extends Application {
|
||||||
@Override
|
@Override
|
||||||
public void start(Stage stage) throws IOException {
|
public void start(Stage stage) throws IOException {
|
||||||
|
|||||||
@@ -58,6 +58,7 @@ public class MainController {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@FXML
|
@FXML
|
||||||
|
//Marco Kühn,Marc Beyer//
|
||||||
public void initialize() {
|
public void initialize() {
|
||||||
createWeek();
|
createWeek();
|
||||||
setDates();
|
setDates();
|
||||||
@@ -66,6 +67,7 @@ public class MainController {
|
|||||||
leftNav.setSpacing(40);
|
leftNav.setSpacing(40);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//Marc Beyer//
|
||||||
private void updateEvents() {
|
private void updateEvents() {
|
||||||
for (VBox vBox : dayVBoxes) {
|
for (VBox vBox : dayVBoxes) {
|
||||||
vBox.getChildren().clear();
|
vBox.getChildren().clear();
|
||||||
@@ -83,6 +85,7 @@ public class MainController {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//Marc Beyer//
|
||||||
@FXML
|
@FXML
|
||||||
protected void onBackClick() {
|
protected void onBackClick() {
|
||||||
weekOffset--;
|
weekOffset--;
|
||||||
@@ -90,6 +93,7 @@ public class MainController {
|
|||||||
updateEvents();
|
updateEvents();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//Marc Beyer//
|
||||||
@FXML
|
@FXML
|
||||||
protected void onTodayClick() {
|
protected void onTodayClick() {
|
||||||
weekOffset = 0;
|
weekOffset = 0;
|
||||||
@@ -97,6 +101,7 @@ public class MainController {
|
|||||||
updateEvents();
|
updateEvents();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//Marc Beyer//
|
||||||
@FXML
|
@FXML
|
||||||
protected void onNextClick() {
|
protected void onNextClick() {
|
||||||
weekOffset++;
|
weekOffset++;
|
||||||
@@ -104,6 +109,8 @@ public class MainController {
|
|||||||
updateEvents();
|
updateEvents();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
//Marco Kühn,Marc Beyer//
|
||||||
@FXML
|
@FXML
|
||||||
protected void onAddBtnClick() {
|
protected void onAddBtnClick() {
|
||||||
try {
|
try {
|
||||||
@@ -125,10 +132,12 @@ public class MainController {
|
|||||||
updateEvents();
|
updateEvents();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//Marco Kühn//
|
||||||
protected void onSettingBtnClick(){
|
protected void onSettingBtnClick(){
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//Marc Beyer//
|
||||||
protected void onLogoutBtnClick(ActionEvent event){
|
protected void onLogoutBtnClick(ActionEvent event){
|
||||||
ConfigLoader.save(new Config());
|
ConfigLoader.save(new Config());
|
||||||
DataController.USER_ID = -1;
|
DataController.USER_ID = -1;
|
||||||
@@ -137,6 +146,7 @@ public class MainController {
|
|||||||
stage.close();
|
stage.close();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//Marc Beyer//
|
||||||
private void createWeek() {
|
private void createWeek() {
|
||||||
for (int i = 0; i < 7; i++) {
|
for (int i = 0; i < 7; i++) {
|
||||||
Label label = new Label();
|
Label label = new Label();
|
||||||
@@ -164,6 +174,7 @@ public class MainController {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//Marco Kühn ,Marc Beyer//
|
||||||
private void addEvent(Event event) {
|
private void addEvent(Event event) {
|
||||||
VBox vBox = new VBox();
|
VBox vBox = new VBox();
|
||||||
vBox.getStyleClass().add("event");
|
vBox.getStyleClass().add("event");
|
||||||
@@ -253,6 +264,7 @@ public class MainController {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//Marc Beyer//
|
||||||
private String formatTime(String time) {
|
private String formatTime(String time) {
|
||||||
String[] timeArr = time.split(":");
|
String[] timeArr = time.split(":");
|
||||||
if (timeArr.length > 2) {
|
if (timeArr.length > 2) {
|
||||||
@@ -261,6 +273,7 @@ public class MainController {
|
|||||||
return time;
|
return time;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//Marc Beyer//
|
||||||
private void setDates() {
|
private void setDates() {
|
||||||
DateTimeFormatter dateFormatter = DateTimeFormatter.ofPattern("LLLL yyyy");
|
DateTimeFormatter dateFormatter = DateTimeFormatter.ofPattern("LLLL yyyy");
|
||||||
DateTimeFormatter dayFormatter = DateTimeFormatter.ofPattern("E dd.MM");
|
DateTimeFormatter dayFormatter = DateTimeFormatter.ofPattern("E dd.MM");
|
||||||
@@ -279,6 +292,7 @@ public class MainController {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//Marco Kühn//
|
||||||
private void createBtns(){
|
private void createBtns(){
|
||||||
Group svgAdd = new Group(
|
Group svgAdd = new Group(
|
||||||
SvgBtnCreator.createPath("M0 0h24v24H0z", "transparent", "transparent"),
|
SvgBtnCreator.createPath("M0 0h24v24H0z", "transparent", "transparent"),
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
//Alex Rechtin//
|
||||||
package users;
|
package users;
|
||||||
|
|
||||||
import javafx.event.ActionEvent;
|
import javafx.event.ActionEvent;
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
//Alex Rechtin//
|
||||||
package users;
|
package users;
|
||||||
|
|
||||||
import com.jfoenix.controls.*;
|
import com.jfoenix.controls.*;
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
/*Marco Kühn*/
|
||||||
GridPane{
|
GridPane{
|
||||||
-fx-background-color: #3E415F;
|
-fx-background-color: #3E415F;
|
||||||
-fx-padding: 20px;
|
-fx-padding: 20px;
|
||||||
|
|||||||
@@ -1,5 +1,7 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
|
||||||
|
<!-- Marco Kühn -->
|
||||||
|
|
||||||
<?import javafx.scene.control.*?>
|
<?import javafx.scene.control.*?>
|
||||||
<?import javafx.scene.layout.*?>
|
<?import javafx.scene.layout.*?>
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,7 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
|
||||||
|
<!-- Marco Kühn -->
|
||||||
|
|
||||||
<?import javafx.scene.control.*?>
|
<?import javafx.scene.control.*?>
|
||||||
<?import javafx.scene.layout.*?>
|
<?import javafx.scene.layout.*?>
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
/*Alex Rechtin, Marco Kühn*/
|
||||||
* {
|
* {
|
||||||
-fx-base-background-color: #2B2D42;
|
-fx-base-background-color: #2B2D42;
|
||||||
-fx-base1-background-color: #525E74;
|
-fx-base1-background-color: #525E74;
|
||||||
|
|||||||
@@ -1,5 +1,7 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
|
||||||
|
<!-- Alex Rechtin, Marco Kühn -->
|
||||||
|
|
||||||
<?import javafx.geometry.*?>
|
<?import javafx.geometry.*?>
|
||||||
<?import javafx.scene.control.*?>
|
<?import javafx.scene.control.*?>
|
||||||
<?import javafx.scene.image.*?>
|
<?import javafx.scene.image.*?>
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
/*Alex Rechtin*/
|
||||||
* {
|
* {
|
||||||
-fx-base-background-color: #2B2D42;
|
-fx-base-background-color: #2B2D42;
|
||||||
-fx-base1-background-color: #525E74;
|
-fx-base1-background-color: #525E74;
|
||||||
|
|||||||
@@ -1,5 +1,7 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
|
||||||
|
<!-- Alex Rechtin -->
|
||||||
|
|
||||||
<?import javafx.scene.control.*?>
|
<?import javafx.scene.control.*?>
|
||||||
<?import javafx.scene.layout.*?>
|
<?import javafx.scene.layout.*?>
|
||||||
<?import javafx.geometry.Insets?>
|
<?import javafx.geometry.Insets?>
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
/* Marco Kühn*/
|
||||||
* {
|
* {
|
||||||
-fx-base-background-color: #2B2D42;
|
-fx-base-background-color: #2B2D42;
|
||||||
-fx-base1-background-color: #525E74;
|
-fx-base1-background-color: #525E74;
|
||||||
|
|||||||
@@ -1,5 +1,7 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
|
||||||
|
<!-- Marco Kühn -->
|
||||||
|
|
||||||
<?import javafx.scene.control.*?>
|
<?import javafx.scene.control.*?>
|
||||||
<?import javafx.scene.layout.*?>
|
<?import javafx.scene.layout.*?>
|
||||||
<?import com.jfoenix.controls.*?>
|
<?import com.jfoenix.controls.*?>
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
//Marc Beyer//
|
||||||
package config;
|
package config;
|
||||||
|
|
||||||
public class Config {
|
public class Config {
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
//Marc Beyer//
|
||||||
package config;
|
package config;
|
||||||
|
|
||||||
import com.fasterxml.jackson.databind.ObjectMapper;
|
import com.fasterxml.jackson.databind.ObjectMapper;
|
||||||
@@ -17,7 +18,7 @@ public class ConfigLoader {
|
|||||||
objectMapper.findAndRegisterModules();
|
objectMapper.findAndRegisterModules();
|
||||||
return objectMapper.readValue(jsonString, Config.class);
|
return objectMapper.readValue(jsonString, Config.class);
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
System.out.println("config.json missing");
|
e.printStackTrace();
|
||||||
}
|
}
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
//Marc Beyer//
|
||||||
package helper;
|
package helper;
|
||||||
|
|
||||||
public class HttpRequestException extends Exception{
|
public class HttpRequestException extends Exception{
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
//Marc Beyer//
|
||||||
package helper;
|
package helper;
|
||||||
|
|
||||||
public class Tuple<X, Y> {
|
public class Tuple<X, Y> {
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
//Marc Beyer//
|
||||||
package res;
|
package res;
|
||||||
|
|
||||||
import com.fasterxml.jackson.core.JsonProcessingException;
|
import com.fasterxml.jackson.core.JsonProcessingException;
|
||||||
@@ -23,15 +24,10 @@ public class DataController {
|
|||||||
private static final String ALL_EVENTS_ENDPOINT = "http://localhost:8080/event/all";
|
private static final String ALL_EVENTS_ENDPOINT = "http://localhost:8080/event/all";
|
||||||
private static final String ADD_EVENT_ENDPOINT = "http://localhost:8080/event/add";
|
private static final String ADD_EVENT_ENDPOINT = "http://localhost:8080/event/add";
|
||||||
private static final String DELETE_EVENT_ENDPOINT = "http://localhost:8080/event/del";
|
private static final String DELETE_EVENT_ENDPOINT = "http://localhost:8080/event/del";
|
||||||
private static final String EDIT_EVENT_ENDPOINT = "http://localhost:8080/event/edit";
|
|
||||||
|
|
||||||
private static final String ALL_USER_ENDPOINT = "http://localhost:8080/user/all";
|
|
||||||
private static final String ADD_USER_ENDPOINT = "http://localhost:8080/user/add";
|
|
||||||
private static final String DELETE_USER_ENDPOINT = "http://localhost:8080/user/del";
|
|
||||||
private static final String EDIT_USER_ENDPOINT = "http://localhost:8080/user/edit";
|
|
||||||
|
|
||||||
private static final String LOGIN_ENDPOINT = "http://localhost:8080/user/login";
|
private static final String LOGIN_ENDPOINT = "http://localhost:8080/user/login";
|
||||||
private static final String LOGIN_WITH_TOKEN_ENDPOINT = "http://localhost:8080/user/login-with-token";
|
private static final String LOGIN_WITH_TOKEN_ENDPOINT = "http://localhost:8080/user/login-with-token";
|
||||||
|
private static final String ALL_USERS_ENDPOINT = "http://localhost:8080/user/all";
|
||||||
private static final String HEADER_TEST_ENDPOINT = "http://localhost:8080/vpr/header-test";
|
private static final String HEADER_TEST_ENDPOINT = "http://localhost:8080/vpr/header-test";
|
||||||
|
|
||||||
private final HttpRequest httpRequest;
|
private final HttpRequest httpRequest;
|
||||||
@@ -52,6 +48,13 @@ 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;
|
||||||
@@ -71,7 +74,7 @@ public class DataController {
|
|||||||
|
|
||||||
System.out.println(response.getKey() + " " + response.getValue());
|
System.out.println(response.getKey() + " " + response.getValue());
|
||||||
|
|
||||||
if (response.getKey() != 200) return false;
|
if(response.getKey() != 200) return false;
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
return false;
|
return false;
|
||||||
@@ -81,40 +84,35 @@ 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 {
|
||||||
sendBasicHttpRequest(
|
try {
|
||||||
ADD_EVENT_ENDPOINT,
|
Tuple<Integer, String> response = httpRequest.sendPostRequest(ADD_EVENT_ENDPOINT, event.getAsUrlParam(), true);
|
||||||
event.getAsUrlParam(),
|
if(response.getKey() != 200){
|
||||||
true
|
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 deleteEvent(int userId, int eventId, LocalDateTime date) throws HttpRequestException {
|
public void deleteEvent(int userId, int eventId, LocalDateTime date) throws HttpRequestException {
|
||||||
sendBasicHttpRequest(
|
try {
|
||||||
DELETE_EVENT_ENDPOINT,
|
System.out.println("DELETE: userId=" + userId + "&eventId=" + eventId + "&date=" + date.toLocalDate());
|
||||||
"userId=" + userId + "&eventId=" + eventId + "&date=" + date.toLocalDate(),
|
Tuple<Integer, String> response = httpRequest.sendPostRequest(
|
||||||
true
|
DELETE_EVENT_ENDPOINT,
|
||||||
);
|
"userId=" + userId + "&eventId=" + eventId + "&date=" + date.toLocalDate(),
|
||||||
}
|
true
|
||||||
|
);
|
||||||
public void editEvent(Event oldEvent, Event event) throws HttpRequestException {
|
if(response.getKey() != 200){
|
||||||
sendBasicHttpRequest(
|
throw new HttpRequestException(response);
|
||||||
EDIT_EVENT_ENDPOINT,
|
}
|
||||||
"eventId=" + oldEvent.getId() +
|
}catch (HttpRequestException e){
|
||||||
"&userId=" + oldEvent.getOwnerId() +
|
throw e;
|
||||||
"&date=" + oldEvent.getDate().toLocalDate() +
|
}catch (Exception e) {
|
||||||
"&newDate=" + event.getDate().toLocalDate() +
|
throw new HttpRequestException("Es konnte keine Verbindung mit dem Server hergestellt werden.", 600);
|
||||||
"&newName=" + event.getName() +
|
}
|
||||||
"&newStart=" + event.getStart() +
|
|
||||||
"&newEnd=" + event.getEnd() +
|
|
||||||
"&newPriority=" + event.getPriority() +
|
|
||||||
"&newIsFullDay=" + event.isFullDay() +
|
|
||||||
"&newIsPrivate=" + event.isPrivate(),
|
|
||||||
true
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public ArrayList<Event> getAllVisibleEvents(LocalDateTime startDate, LocalDateTime endDate) throws HttpRequestException {
|
public ArrayList<Event> getAllVisibleEvents(LocalDateTime startDate, LocalDateTime endDate) throws HttpRequestException {
|
||||||
@@ -125,7 +123,7 @@ public class DataController {
|
|||||||
"userId=" + USER_ID + "&startDate=" + startDate.toLocalDate() + "&endDate=" + endDate.toLocalDate(),
|
"userId=" + USER_ID + "&startDate=" + startDate.toLocalDate() + "&endDate=" + endDate.toLocalDate(),
|
||||||
true
|
true
|
||||||
);
|
);
|
||||||
if (response.getKey() != 200) {
|
if(response.getKey() != 200){
|
||||||
throw new HttpRequestException(response);
|
throw new HttpRequestException(response);
|
||||||
}
|
}
|
||||||
String jsonResponse = response.getValue();
|
String jsonResponse = response.getValue();
|
||||||
@@ -133,63 +131,17 @@ 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){
|
||||||
throw e;
|
throw e;
|
||||||
} catch (Exception e) {
|
}catch (Exception e) {
|
||||||
throw new HttpRequestException("Es konnte keine Verbindung mit dem Server hergestellt werden.", 600);
|
throw new HttpRequestException("Es konnte keine Verbindung mit dem Server hergestellt werden.", 600);
|
||||||
}
|
}
|
||||||
|
|
||||||
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);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
@@ -1,3 +1,4 @@
|
|||||||
|
//Marc Beyer//
|
||||||
package res;
|
package res;
|
||||||
|
|
||||||
import com.sun.jdi.event.StepEvent;
|
import com.sun.jdi.event.StepEvent;
|
||||||
@@ -30,7 +31,68 @@ public class Event {
|
|||||||
private int ownerId;
|
private int ownerId;
|
||||||
private String ownerName;
|
private String ownerName;
|
||||||
|
|
||||||
public Event() {}
|
/*
|
||||||
|
Constructor for SELECT:
|
||||||
|
e.id AS eid,
|
||||||
|
e.name AS ename,
|
||||||
|
e.start,
|
||||||
|
e.end,
|
||||||
|
e.priority,
|
||||||
|
e.is_full_day,
|
||||||
|
|
||||||
|
ue.date,
|
||||||
|
|
||||||
|
u.id AS uid,
|
||||||
|
u.forename,
|
||||||
|
u.name AS uname
|
||||||
|
*/
|
||||||
|
|
||||||
|
public Event() {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
public Event(ArrayList<Object> arr) {
|
||||||
|
id = (int) arr.get(0);
|
||||||
|
name = (String) arr.get(1);
|
||||||
|
start = (String) arr.get(2);
|
||||||
|
end = (String) arr.get(3);
|
||||||
|
priority = (int) arr.get(4);
|
||||||
|
isFullDay = (Boolean) arr.get(5); //((String)arr.get(5)).equals("true");
|
||||||
|
|
||||||
|
|
||||||
|
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm");
|
||||||
|
date = LocalDateTime.parse(arr.get(6) + " 00:00", formatter);
|
||||||
|
|
||||||
|
ownerId = (int) arr.get(7);
|
||||||
|
ownerName = arr.get(8) + " " + arr.get(9);
|
||||||
|
}
|
||||||
|
|
||||||
|
public Event(
|
||||||
|
int id,
|
||||||
|
String name,
|
||||||
|
int priority,
|
||||||
|
boolean isFullDay,
|
||||||
|
boolean isPrivate,
|
||||||
|
String start,
|
||||||
|
String end,
|
||||||
|
String date,
|
||||||
|
int ownerId,
|
||||||
|
String ownerName
|
||||||
|
) {
|
||||||
|
this.ownerId = ownerId;
|
||||||
|
this.ownerName = ownerName;
|
||||||
|
this.id = id;
|
||||||
|
this.name = name;
|
||||||
|
this.start = start;
|
||||||
|
this.end = end;
|
||||||
|
this.priority = priority;
|
||||||
|
this.isFullDay = isFullDay;
|
||||||
|
|
||||||
|
|
||||||
|
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm");
|
||||||
|
this.date = LocalDateTime.parse(date + " 00:00", formatter);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
public Event(String name,
|
public Event(String name,
|
||||||
int priority,
|
int priority,
|
||||||
|
|||||||
@@ -1,10 +1,10 @@
|
|||||||
|
//Marc Beyer//
|
||||||
package res;
|
package res;
|
||||||
|
|
||||||
import helper.Tuple;
|
import helper.Tuple;
|
||||||
|
|
||||||
import java.io.BufferedReader;
|
import java.io.BufferedReader;
|
||||||
import java.io.DataOutputStream;
|
import java.io.DataOutputStream;
|
||||||
import java.io.IOException;
|
|
||||||
import java.io.InputStreamReader;
|
import java.io.InputStreamReader;
|
||||||
import java.net.HttpURLConnection;
|
import java.net.HttpURLConnection;
|
||||||
import java.net.URL;
|
import java.net.URL;
|
||||||
@@ -18,52 +18,48 @@ public class HttpRequest {
|
|||||||
byte[] postData = urlParameters.getBytes(StandardCharsets.UTF_8);
|
byte[] postData = urlParameters.getBytes(StandardCharsets.UTF_8);
|
||||||
int postDataLength = postData.length;
|
int postDataLength = postData.length;
|
||||||
|
|
||||||
URL url = new URL(urlString);
|
/*
|
||||||
HttpURLConnection connection = (HttpURLConnection) url.openConnection();
|
URL url = new URL("http://test.de:8080/event/add");
|
||||||
|
HttpURLConnection http = (HttpURLConnection)url.openConnection();
|
||||||
|
http.setRequestMethod("POST");
|
||||||
|
http.setDoOutput(true);
|
||||||
|
http.setRequestProperty("Accept", "application/json");
|
||||||
|
http.setRequestProperty("Authorization", "Bearer {token}");
|
||||||
|
http.setRequestProperty("Content-Type", "");
|
||||||
|
http.setRequestProperty("Content-Length", "0");
|
||||||
|
|
||||||
connection.setDoOutput(true);
|
System.out.println(http.getResponseCode() + " " + http.getResponseMessage());
|
||||||
connection.setInstanceFollowRedirects(false);
|
http.disconnect();
|
||||||
connection.setRequestMethod("POST");
|
*/
|
||||||
connection.setRequestProperty("Content-Type", "application/x-www-form-urlencoded");
|
URL url = new URL(urlString);
|
||||||
connection.setRequestProperty("charset", "utf-8");
|
HttpURLConnection con = (HttpURLConnection) url.openConnection();
|
||||||
connection.setRequestProperty("Content-Length", Integer.toString(postDataLength));
|
|
||||||
connection.setUseCaches(false);
|
con.setDoOutput(true);
|
||||||
|
con.setInstanceFollowRedirects(false);
|
||||||
|
con.setRequestMethod("POST");
|
||||||
|
con.setRequestProperty("Content-Type", "application/x-www-form-urlencoded");
|
||||||
|
con.setRequestProperty("charset", "utf-8");
|
||||||
|
con.setRequestProperty("Content-Length", Integer.toString(postDataLength));
|
||||||
|
con.setUseCaches(false);
|
||||||
|
|
||||||
if(sendAuth){
|
if(sendAuth){
|
||||||
connection.setRequestProperty("Accept", "application/json");
|
con.setRequestProperty("Accept", "application/json");
|
||||||
connection.setRequestProperty("Authorization", "Bearer " + TOKEN);
|
con.setRequestProperty("Authorization", "Bearer " + TOKEN);
|
||||||
}
|
}
|
||||||
|
|
||||||
try (DataOutputStream writer = new DataOutputStream(connection.getOutputStream())) {
|
try (DataOutputStream wr = new DataOutputStream(con.getOutputStream())) {
|
||||||
writer.write(postData);
|
wr.write(postData);
|
||||||
}
|
}
|
||||||
|
|
||||||
return getHttpTuple(connection);
|
int status = con.getResponseCode();
|
||||||
}
|
|
||||||
|
|
||||||
public Tuple<Integer, String> sendGetRequest(String urlString) throws Exception {
|
|
||||||
URL url = new URL(urlString);
|
|
||||||
HttpURLConnection connection = (HttpURLConnection) url.openConnection();
|
|
||||||
connection.setRequestMethod("GET");
|
|
||||||
|
|
||||||
connection.setConnectTimeout(5000);
|
|
||||||
connection.setReadTimeout(5000);
|
|
||||||
|
|
||||||
int status = connection.getResponseCode();
|
|
||||||
|
|
||||||
return getHttpTuple(connection);
|
|
||||||
}
|
|
||||||
|
|
||||||
private Tuple<Integer, String> getHttpTuple(HttpURLConnection connection) throws IOException {
|
|
||||||
int status = connection.getResponseCode();
|
|
||||||
String inputLine;
|
String inputLine;
|
||||||
StringBuilder content = new StringBuilder();
|
StringBuilder content = new StringBuilder();
|
||||||
BufferedReader in;
|
BufferedReader in;
|
||||||
|
|
||||||
if (status == 200) {
|
if (status == 200) {
|
||||||
in = new BufferedReader(new InputStreamReader(connection.getInputStream()));
|
in = new BufferedReader(new InputStreamReader(con.getInputStream()));
|
||||||
} else {
|
} else {
|
||||||
in = new BufferedReader(new InputStreamReader(connection.getErrorStream()));
|
in = new BufferedReader(new InputStreamReader(con.getErrorStream()));
|
||||||
}
|
}
|
||||||
|
|
||||||
while ((inputLine = in.readLine()) != null) {
|
while ((inputLine = in.readLine()) != null) {
|
||||||
@@ -71,8 +67,36 @@ public class HttpRequest {
|
|||||||
}
|
}
|
||||||
in.close();
|
in.close();
|
||||||
|
|
||||||
connection.disconnect();
|
con.disconnect();
|
||||||
|
|
||||||
return new Tuple<>(status, content.toString());
|
return new Tuple<>(status, content.toString());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public String sendGetRequest(String urlString) throws Exception {
|
||||||
|
URL url = new URL(urlString);
|
||||||
|
HttpURLConnection con = (HttpURLConnection) url.openConnection();
|
||||||
|
con.setRequestMethod("GET");
|
||||||
|
|
||||||
|
con.setConnectTimeout(5000);
|
||||||
|
con.setReadTimeout(5000);
|
||||||
|
|
||||||
|
int status = con.getResponseCode();
|
||||||
|
if (status == 200) {
|
||||||
|
BufferedReader in = new BufferedReader(
|
||||||
|
new InputStreamReader(con.getInputStream()));
|
||||||
|
String inputLine;
|
||||||
|
StringBuilder content = new StringBuilder();
|
||||||
|
while ((inputLine = in.readLine()) != null) {
|
||||||
|
content.append(inputLine);
|
||||||
|
}
|
||||||
|
in.close();
|
||||||
|
|
||||||
|
con.disconnect();
|
||||||
|
return content.toString();
|
||||||
|
|
||||||
|
} else {
|
||||||
|
con.disconnect();
|
||||||
|
throw new Exception("Status: " + status);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user