Compare commits
12 Commits
Add-SVGs
...
898054bb63
| Author | SHA1 | Date | |
|---|---|---|---|
| 898054bb63 | |||
| b963a53d85 | |||
| 4f6d9670d0 | |||
| 8260c3f732 | |||
| c79e9a4581 | |||
| 4ce4445d50 | |||
| 7aa615ce54 | |||
| 2c3d646c47 | |||
| e021809fd7 | |||
| c040e54fb8 | |||
| 4020d59284 | |||
| 2f0c4b2a4c |
2
.gitignore
vendored
2
.gitignore
vendored
@@ -72,3 +72,5 @@ crashlytics-build.properties
|
||||
|
||||
.gradle/
|
||||
build/
|
||||
|
||||
/client/config.json
|
||||
@@ -1,8 +1,9 @@
|
||||
//Marc Beyer//
|
||||
package customUI;
|
||||
|
||||
public class Button extends javafx.scene.control.Button {
|
||||
|
||||
public void setTextValue(String text){
|
||||
super.setText(Converter.CONVERT_STR(text));
|
||||
super.setText(Converter.convertString(text));
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
//Marc Beyer//
|
||||
package customUI;
|
||||
|
||||
public class Converter {
|
||||
@@ -8,7 +9,7 @@ public class Converter {
|
||||
ß \u00df
|
||||
*/
|
||||
@SuppressWarnings("all")
|
||||
public static String CONVERT_STR(String str){
|
||||
public static String convertString(String str){
|
||||
return str
|
||||
.replace("ä", "\u00e4")
|
||||
.replace("Ä", "\u00c4")
|
||||
|
||||
@@ -1,8 +1,9 @@
|
||||
//Marc Beyer//
|
||||
package customUI;
|
||||
|
||||
public class Label extends javafx.scene.control.Label {
|
||||
public Label(String content){
|
||||
super(Converter.CONVERT_STR(content));
|
||||
super(Converter.convertString(content));
|
||||
}
|
||||
|
||||
public Label(){
|
||||
@@ -10,6 +11,6 @@ public class Label extends javafx.scene.control.Label {
|
||||
}
|
||||
|
||||
public void setTextValue(String text){
|
||||
super.setText(Converter.CONVERT_STR(text));
|
||||
super.setText(Converter.convertString(text));
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,9 +1,10 @@
|
||||
//Marco Kühn//
|
||||
package customUI;
|
||||
|
||||
public class Tooltip extends javafx.scene.control.Tooltip {
|
||||
|
||||
public Tooltip(String tollTipText){
|
||||
super(Converter.CONVERT_STR(tollTipText));
|
||||
super(Converter.convertString(tollTipText));
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
//Marco Kühn//
|
||||
package helper;
|
||||
|
||||
import javafx.geometry.Bounds;
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
package main;
|
||||
|
||||
import com.jfoenix.controls.*;
|
||||
import helper.HttpRequestException;
|
||||
import javafx.event.ActionEvent;
|
||||
import javafx.fxml.FXML;
|
||||
import javafx.scene.Node;
|
||||
@@ -41,6 +42,7 @@ public class CreateEventController {
|
||||
public CreateEventController() {
|
||||
}
|
||||
|
||||
//Marco Kühn//
|
||||
@FXML
|
||||
public void initialize() {
|
||||
|
||||
@@ -52,7 +54,7 @@ public class CreateEventController {
|
||||
timeEnd.setConverter(defaultConverter);
|
||||
}
|
||||
|
||||
|
||||
//Marc Beyer//
|
||||
@FXML
|
||||
protected void createBtnClick(ActionEvent actionEvent) {
|
||||
try {
|
||||
@@ -60,6 +62,8 @@ public class CreateEventController {
|
||||
throw new IllegalArgumentException("Bitte w\u00e4hle ein Datum aus");
|
||||
}
|
||||
|
||||
System.out.println(datePickerDate.getValue());
|
||||
|
||||
Event event = new Event(
|
||||
textName.getText(),
|
||||
ComboBoxPriotity.getSelectionModel().getSelectedIndex(),
|
||||
@@ -73,16 +77,22 @@ public class CreateEventController {
|
||||
|
||||
System.out.println(event.getAsUrlParam());
|
||||
|
||||
DataController dataController = new DataController();
|
||||
dataController.createEvent(event);
|
||||
sendHttpRequest(event);
|
||||
|
||||
Stage stage = (Stage) ((Node) actionEvent.getSource()).getScene().getWindow();
|
||||
stage.close();
|
||||
} catch (RuntimeException e) {
|
||||
} catch (Exception e) {
|
||||
labelError.setText(e.getMessage());
|
||||
}
|
||||
}
|
||||
|
||||
//Marc Beyer//
|
||||
protected void sendHttpRequest(Event event) throws HttpRequestException {
|
||||
DataController dataController = new DataController();
|
||||
dataController.createEvent(event);
|
||||
}
|
||||
|
||||
//Marc Beyer//
|
||||
@FXML
|
||||
protected void abortBtnClick(ActionEvent event) {
|
||||
Stage stage = (Stage) ((Node) event.getSource()).getScene().getWindow();
|
||||
|
||||
43
client/app/src/main/java/main/EditEventController.java
Normal file
43
client/app/src/main/java/main/EditEventController.java
Normal file
@@ -0,0 +1,43 @@
|
||||
//Marc Beyer//
|
||||
package main;
|
||||
|
||||
import customUI.Converter;
|
||||
import helper.HttpRequestException;
|
||||
import javafx.fxml.FXML;
|
||||
import javafx.util.StringConverter;
|
||||
import javafx.util.converter.LocalTimeStringConverter;
|
||||
import res.DataController;
|
||||
import res.Event;
|
||||
|
||||
import java.time.LocalTime;
|
||||
import java.time.format.FormatStyle;
|
||||
import java.util.Locale;
|
||||
|
||||
public class EditEventController extends CreateEventController{
|
||||
|
||||
private Event currentEvent;
|
||||
|
||||
public Event getCurrentEvent() {
|
||||
return currentEvent;
|
||||
}
|
||||
|
||||
public void setCurrentEvent(Event currentEvent) {
|
||||
this.currentEvent = currentEvent;
|
||||
|
||||
textName.setText(Converter.convertString(currentEvent.getName()));
|
||||
datePickerDate.setValue(currentEvent.getDate().toLocalDate());
|
||||
ComboBoxPriotity.getSelectionModel().select(currentEvent.getPriority());
|
||||
|
||||
//timeEnd.setValue(currentEvent.getEnd());
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
@Override
|
||||
protected void sendHttpRequest(Event event) throws HttpRequestException {
|
||||
DataController dataController = new DataController();
|
||||
dataController.deleteEvent(currentEvent.getOwnerId(), currentEvent.getId(), currentEvent.getDate());
|
||||
dataController.createEvent(event);
|
||||
}
|
||||
}
|
||||
@@ -1,33 +1,51 @@
|
||||
//Marc Beyer//
|
||||
package main;
|
||||
|
||||
import config.Config;
|
||||
import config.ConfigLoader;
|
||||
import javafx.application.Application;
|
||||
import javafx.fxml.FXMLLoader;
|
||||
import javafx.scene.Scene;
|
||||
import javafx.stage.Stage;
|
||||
import res.DataController;
|
||||
import res.HttpRequest;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.util.Objects;
|
||||
|
||||
|
||||
public class MainApplication extends Application {
|
||||
@Override
|
||||
public void start(Stage stage) throws IOException {
|
||||
Config config = ConfigLoader.load();
|
||||
if(config == null){
|
||||
config = new Config(false, -1, "");
|
||||
}
|
||||
|
||||
System.out.println("Ignore 'Illegal reflective access operation'-Warning. See https://github.com/sshahine/JFoenix/issues/1170");
|
||||
|
||||
if(
|
||||
!config.isSaveLogin()
|
||||
|| !new DataController().loginWithToken(config.getId(), config.getToken())
|
||||
){
|
||||
// Load login-scene
|
||||
FXMLLoader fxmlLoaderLogin = new FXMLLoader(MainApplication.class.getResource("../users/login.fxml"));
|
||||
Scene sceneLogin = new Scene(fxmlLoaderLogin.load(), 650, 500);
|
||||
sceneLogin.getStylesheets().add(Objects.requireNonNull(
|
||||
MainApplication.class.getResource("../users/login.css")).toExternalForm()
|
||||
);
|
||||
Stage stageLogin = new Stage();
|
||||
stageLogin.setTitle("Anmelden");
|
||||
stageLogin.setScene(sceneLogin);
|
||||
stageLogin.showAndWait();
|
||||
loadLoginScene();
|
||||
}
|
||||
|
||||
if (DataController.USER_ID >= 0) {
|
||||
if(config.isSaveLogin()){
|
||||
config.setId(DataController.USER_ID);
|
||||
config.setToken(HttpRequest.TOKEN);
|
||||
ConfigLoader.save(config);
|
||||
}
|
||||
// Load main-scene
|
||||
loadMainScene(stage);
|
||||
|
||||
System.out.println("Logged in...");
|
||||
}
|
||||
}
|
||||
|
||||
private void loadMainScene(Stage stage) throws IOException {
|
||||
FXMLLoader fxmlLoader = new FXMLLoader(MainApplication.class.getResource("main-view.fxml"));
|
||||
|
||||
Scene scene = new Scene(fxmlLoader.load(), 1200, 700);
|
||||
@@ -37,9 +55,18 @@ public class MainApplication extends Application {
|
||||
stage.setTitle("SharePlaner");
|
||||
stage.setScene(scene);
|
||||
stage.show();
|
||||
|
||||
System.out.println("Logged in...");
|
||||
}
|
||||
|
||||
private void loadLoginScene() throws IOException {
|
||||
FXMLLoader fxmlLoaderLogin = new FXMLLoader(MainApplication.class.getResource("../users/login.fxml"));
|
||||
Scene sceneLogin = new Scene(fxmlLoaderLogin.load(), 650, 500);
|
||||
sceneLogin.getStylesheets().add(Objects.requireNonNull(
|
||||
MainApplication.class.getResource("../users/login.css")).toExternalForm()
|
||||
);
|
||||
Stage stageLogin = new Stage();
|
||||
stageLogin.setTitle("Anmelden");
|
||||
stageLogin.setScene(sceneLogin);
|
||||
stageLogin.showAndWait();
|
||||
}
|
||||
|
||||
public static void main(String[] args) {
|
||||
|
||||
@@ -1,12 +1,16 @@
|
||||
package main;
|
||||
|
||||
import config.Config;
|
||||
import config.ConfigLoader;
|
||||
import customUI.Button;
|
||||
import customUI.Label;
|
||||
import helper.SvgBtnCreator;
|
||||
import helper.HttpRequestException;
|
||||
import javafx.fxml.FXML;
|
||||
import javafx.fxml.FXMLLoader;
|
||||
import javafx.geometry.Pos;
|
||||
import javafx.scene.Group;
|
||||
import javafx.scene.Node;
|
||||
import javafx.scene.Scene;
|
||||
import javafx.scene.control.ScrollPane;
|
||||
import javafx.scene.layout.GridPane;
|
||||
@@ -17,6 +21,9 @@ import javafx.stage.Stage;
|
||||
import res.DataController;
|
||||
import res.Event;
|
||||
|
||||
import javafx.event.ActionEvent;
|
||||
import res.HttpRequest;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.time.Duration;
|
||||
import java.time.LocalDateTime;
|
||||
@@ -51,6 +58,7 @@ public class MainController {
|
||||
}
|
||||
|
||||
@FXML
|
||||
//Marco Kühn,Marc Beyer//
|
||||
public void initialize() {
|
||||
createWeek();
|
||||
setDates();
|
||||
@@ -59,19 +67,25 @@ public class MainController {
|
||||
leftNav.setSpacing(40);
|
||||
}
|
||||
|
||||
//Marc Beyer//
|
||||
private void updateEvents() {
|
||||
for (VBox vBox : dayVBoxes) {
|
||||
vBox.getChildren().clear();
|
||||
}
|
||||
|
||||
DataController dataController = new DataController();
|
||||
try {
|
||||
ArrayList<Event> eventList = dataController.getAllVisibleEvents(weekStartDateTime, weekStartDateTime.plusDays(7));
|
||||
|
||||
for (Event event : eventList) {
|
||||
addEvent(event);
|
||||
}
|
||||
} catch (HttpRequestException e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
}
|
||||
|
||||
//Marc Beyer//
|
||||
@FXML
|
||||
protected void onBackClick() {
|
||||
weekOffset--;
|
||||
@@ -79,6 +93,7 @@ public class MainController {
|
||||
updateEvents();
|
||||
}
|
||||
|
||||
//Marc Beyer//
|
||||
@FXML
|
||||
protected void onTodayClick() {
|
||||
weekOffset = 0;
|
||||
@@ -86,6 +101,7 @@ public class MainController {
|
||||
updateEvents();
|
||||
}
|
||||
|
||||
//Marc Beyer//
|
||||
@FXML
|
||||
protected void onNextClick() {
|
||||
weekOffset++;
|
||||
@@ -93,6 +109,8 @@ public class MainController {
|
||||
updateEvents();
|
||||
}
|
||||
|
||||
|
||||
//Marco Kühn,Marc Beyer//
|
||||
@FXML
|
||||
protected void onAddBtnClick() {
|
||||
try {
|
||||
@@ -106,6 +124,7 @@ public class MainController {
|
||||
stage.setScene(scene);
|
||||
stage.initModality(Modality.APPLICATION_MODAL);
|
||||
stage.setResizable(false);
|
||||
//stage.initStyle(StageStyle.UNDECORATED);
|
||||
stage.showAndWait();
|
||||
} catch (IOException e) {
|
||||
e.printStackTrace();
|
||||
@@ -113,14 +132,21 @@ public class MainController {
|
||||
updateEvents();
|
||||
}
|
||||
|
||||
//Marco Kühn//
|
||||
protected void onSettingBtnClick(){
|
||||
|
||||
}
|
||||
|
||||
protected void onLogoutBtnClick(){
|
||||
|
||||
//Marc Beyer//
|
||||
protected void onLogoutBtnClick(ActionEvent event){
|
||||
ConfigLoader.save(new Config());
|
||||
DataController.USER_ID = -1;
|
||||
HttpRequest.TOKEN = "";
|
||||
Stage stage = (Stage) ((Node) event.getSource()).getScene().getWindow();
|
||||
stage.close();
|
||||
}
|
||||
|
||||
//Marc Beyer//
|
||||
private void createWeek() {
|
||||
for (int i = 0; i < 7; i++) {
|
||||
Label label = new Label();
|
||||
@@ -148,6 +174,7 @@ public class MainController {
|
||||
}
|
||||
}
|
||||
|
||||
//Marco Kühn ,Marc Beyer//
|
||||
private void addEvent(Event event) {
|
||||
VBox vBox = new VBox();
|
||||
vBox.getStyleClass().add("event");
|
||||
@@ -166,7 +193,11 @@ public class MainController {
|
||||
deleteBtn.getStyleClass().add("deleteEventBtn");
|
||||
deleteBtn.setOnAction(e -> {
|
||||
DataController dataController = new DataController();
|
||||
try {
|
||||
dataController.deleteEvent(event.getOwnerId(), event.getId(), event.getDate());
|
||||
} catch (HttpRequestException ex) {
|
||||
ex.printStackTrace();
|
||||
}
|
||||
updateEvents();
|
||||
});
|
||||
|
||||
@@ -189,7 +220,10 @@ public class MainController {
|
||||
stage.setScene(scene);
|
||||
stage.initModality(Modality.APPLICATION_MODAL);
|
||||
stage.setResizable(false);
|
||||
EditEventController editEventController = fxmlLoader.getController();
|
||||
editEventController.setCurrentEvent(event);
|
||||
stage.showAndWait();
|
||||
updateEvents();
|
||||
} catch (IOException e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
@@ -230,6 +264,7 @@ public class MainController {
|
||||
}
|
||||
}
|
||||
|
||||
//Marc Beyer//
|
||||
private String formatTime(String time) {
|
||||
String[] timeArr = time.split(":");
|
||||
if (timeArr.length > 2) {
|
||||
@@ -238,6 +273,7 @@ public class MainController {
|
||||
return time;
|
||||
}
|
||||
|
||||
//Marc Beyer//
|
||||
private void setDates() {
|
||||
DateTimeFormatter dateFormatter = DateTimeFormatter.ofPattern("LLLL yyyy");
|
||||
DateTimeFormatter dayFormatter = DateTimeFormatter.ofPattern("E dd.MM");
|
||||
@@ -256,6 +292,7 @@ public class MainController {
|
||||
|
||||
}
|
||||
|
||||
//Marco Kühn//
|
||||
private void createBtns(){
|
||||
Group svgAdd = new Group(
|
||||
SvgBtnCreator.createPath("M0 0h24v24H0z", "transparent", "transparent"),
|
||||
@@ -283,7 +320,7 @@ public class MainController {
|
||||
"white", "gray")
|
||||
);
|
||||
Button logoutBtn = SvgBtnCreator.createBtn(svgLogout, 40, "main-btn", "Abmelden");
|
||||
logoutBtn.setOnAction(e -> onLogoutBtnClick());
|
||||
logoutBtn.setOnAction(this::onLogoutBtnClick);
|
||||
logoutBtn.getStyleClass().add("main-btn");
|
||||
leftNav.getChildren().add(logoutBtn);
|
||||
|
||||
@@ -320,6 +357,4 @@ public class MainController {
|
||||
GridPane.setColumnIndex(nextBtn, 3);
|
||||
buttonBox.getChildren().add(nextBtn);
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
@@ -1,9 +1,11 @@
|
||||
//Alex Rechtin//
|
||||
package users;
|
||||
|
||||
import javafx.event.ActionEvent;
|
||||
import javafx.fxml.FXML;
|
||||
import javafx.scene.Node;
|
||||
import javafx.scene.control.Label;
|
||||
import javafx.scene.control.PasswordField;
|
||||
import javafx.scene.control.TextField;
|
||||
import javafx.scene.control.ToggleButton;
|
||||
import javafx.stage.Stage;
|
||||
@@ -13,8 +15,8 @@ import java.util.Objects;
|
||||
public class CreateUserController {
|
||||
|
||||
public TextField textName;
|
||||
public TextField textPassword;
|
||||
public TextField textPasswordSecond;
|
||||
public PasswordField textPassword;
|
||||
public PasswordField textPasswordSecond;
|
||||
public ToggleButton checkButtonIsAdmin;
|
||||
public TextField textLogin;
|
||||
public TextField textForename;
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
//Alex Rechtin//
|
||||
package users;
|
||||
|
||||
import com.jfoenix.controls.*;
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
/*Marco Kühn*/
|
||||
GridPane{
|
||||
-fx-background-color: #3E415F;
|
||||
-fx-padding: 20px;
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<!-- Marco Kühn -->
|
||||
|
||||
<?import javafx.scene.control.*?>
|
||||
<?import javafx.scene.layout.*?>
|
||||
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<!-- Marco Kühn -->
|
||||
|
||||
<?import javafx.scene.control.*?>
|
||||
<?import javafx.scene.layout.*?>
|
||||
|
||||
@@ -8,7 +10,7 @@
|
||||
<?import com.jfoenix.controls.*?>
|
||||
|
||||
<GridPane fx:id="mainGrid" xmlns="http://javafx.com/javafx" xmlns:fx="http://javafx.com/fxml/1"
|
||||
fx:controller="main.CreateEventController">
|
||||
fx:controller="main.EditEventController">
|
||||
|
||||
<columnConstraints>
|
||||
<ColumnConstraints/>
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
/*Alex Rechtin, Marco Kühn*/
|
||||
* {
|
||||
-fx-base-background-color: #2B2D42;
|
||||
-fx-base1-background-color: #525E74;
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<!-- Alex Rechtin, Marco Kühn -->
|
||||
|
||||
<?import javafx.geometry.*?>
|
||||
<?import javafx.scene.control.*?>
|
||||
<?import javafx.scene.image.*?>
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
/*Alex Rechtin*/
|
||||
* {
|
||||
-fx-base-background-color: #2B2D42;
|
||||
-fx-base1-background-color: #525E74;
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<!-- Alex Rechtin -->
|
||||
|
||||
<?import javafx.scene.control.*?>
|
||||
<?import javafx.scene.layout.*?>
|
||||
<?import javafx.geometry.Insets?>
|
||||
@@ -37,8 +39,8 @@
|
||||
<TextField fx:id="textLogin" styleClass="textField" GridPane.columnIndex="2" GridPane.rowIndex="1" />
|
||||
<TextField fx:id="textForename" styleClass="textField" GridPane.columnIndex="2" GridPane.rowIndex="2" />
|
||||
<TextField fx:id="textName" styleClass="textField" GridPane.columnIndex="2" GridPane.rowIndex="3" />
|
||||
<TextField fx:id="textPassword" styleClass="textField" GridPane.columnIndex="2" GridPane.rowIndex="4" />
|
||||
<TextField fx:id="textPasswordSecond" styleClass="textField" GridPane.columnIndex="2" GridPane.rowIndex="5" />
|
||||
<PasswordField fx:id="textPassword" styleClass="textField" GridPane.columnIndex="2" GridPane.rowIndex="4" />
|
||||
<PasswordField fx:id="textPasswordSecond" styleClass="textField" GridPane.columnIndex="2" GridPane.rowIndex="5" />
|
||||
|
||||
<ToggleButton fx:id="checkButtonIsAdmin" GridPane.columnIndex="2" GridPane.rowIndex="6"/>
|
||||
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
/* Marco Kühn*/
|
||||
* {
|
||||
-fx-base-background-color: #2B2D42;
|
||||
-fx-base1-background-color: #525E74;
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<!-- Marco Kühn -->
|
||||
|
||||
<?import javafx.scene.control.*?>
|
||||
<?import javafx.scene.layout.*?>
|
||||
<?import com.jfoenix.controls.*?>
|
||||
|
||||
42
client/data/src/main/java/config/Config.java
Normal file
42
client/data/src/main/java/config/Config.java
Normal file
@@ -0,0 +1,42 @@
|
||||
//Marc Beyer//
|
||||
package config;
|
||||
|
||||
public class Config {
|
||||
private boolean saveLogin;
|
||||
private long id;
|
||||
private String token;
|
||||
|
||||
public Config(){
|
||||
|
||||
}
|
||||
|
||||
public Config(boolean saveLogin, long id, String token) {
|
||||
this.saveLogin = saveLogin;
|
||||
this.id = id;
|
||||
this.token = token;
|
||||
}
|
||||
|
||||
public boolean isSaveLogin() {
|
||||
return saveLogin;
|
||||
}
|
||||
|
||||
public void setSaveLogin(boolean saveLogin) {
|
||||
this.saveLogin = saveLogin;
|
||||
}
|
||||
|
||||
public long getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
public void setId(long id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
public String getToken() {
|
||||
return token;
|
||||
}
|
||||
|
||||
public void setToken(String token) {
|
||||
this.token = token;
|
||||
}
|
||||
}
|
||||
39
client/data/src/main/java/config/ConfigLoader.java
Normal file
39
client/data/src/main/java/config/ConfigLoader.java
Normal file
@@ -0,0 +1,39 @@
|
||||
//Marc Beyer//
|
||||
package config;
|
||||
|
||||
import com.fasterxml.jackson.databind.ObjectMapper;
|
||||
import res.DataController;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.nio.file.Files;
|
||||
import java.nio.file.Paths;
|
||||
|
||||
public class ConfigLoader {
|
||||
|
||||
public static Config load(){
|
||||
try {
|
||||
String jsonString = Files.readString(Paths.get("config.json"));
|
||||
|
||||
ObjectMapper objectMapper = new ObjectMapper();
|
||||
objectMapper.findAndRegisterModules();
|
||||
return objectMapper.readValue(jsonString, Config.class);
|
||||
} catch (IOException e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
public static void save(Config config){
|
||||
ObjectMapper objectMapper = new ObjectMapper();
|
||||
objectMapper.findAndRegisterModules();
|
||||
|
||||
try {
|
||||
Files.writeString(Paths.get(
|
||||
"config.json"),
|
||||
objectMapper.writeValueAsString(config)
|
||||
);
|
||||
} catch (IOException e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
}
|
||||
}
|
||||
24
client/data/src/main/java/helper/HttpRequestException.java
Normal file
24
client/data/src/main/java/helper/HttpRequestException.java
Normal file
@@ -0,0 +1,24 @@
|
||||
//Marc Beyer//
|
||||
package helper;
|
||||
|
||||
public class HttpRequestException extends Exception{
|
||||
private int status;
|
||||
|
||||
public HttpRequestException(String message, int status) {
|
||||
super(message);
|
||||
this.status = status;
|
||||
}
|
||||
|
||||
public HttpRequestException(Tuple<Integer, String> response) {
|
||||
super(response.getValue());
|
||||
this.status = response.getKey();
|
||||
}
|
||||
|
||||
public int getStatus() {
|
||||
return status;
|
||||
}
|
||||
|
||||
public void setStatus(int status) {
|
||||
this.status = status;
|
||||
}
|
||||
}
|
||||
@@ -1,3 +1,4 @@
|
||||
//Marc Beyer//
|
||||
package helper;
|
||||
|
||||
public class Tuple<X, Y> {
|
||||
|
||||
@@ -1,8 +1,10 @@
|
||||
//Marc Beyer//
|
||||
package res;
|
||||
|
||||
import com.fasterxml.jackson.core.JsonProcessingException;
|
||||
import com.fasterxml.jackson.core.type.TypeReference;
|
||||
import com.fasterxml.jackson.databind.ObjectMapper;
|
||||
import helper.HttpRequestException;
|
||||
import helper.Tuple;
|
||||
|
||||
import java.io.BufferedReader;
|
||||
@@ -24,6 +26,7 @@ public class DataController {
|
||||
private static final String DELETE_EVENT_ENDPOINT = "http://localhost:8080/event/del";
|
||||
|
||||
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 ALL_USERS_ENDPOINT = "http://localhost:8080/user/all";
|
||||
private static final String HEADER_TEST_ENDPOINT = "http://localhost:8080/vpr/header-test";
|
||||
|
||||
@@ -60,28 +63,59 @@ public class DataController {
|
||||
return USER_ID >= 0;
|
||||
}
|
||||
|
||||
public void createEvent(Event event) {
|
||||
public boolean loginWithToken(long userId, String token) {
|
||||
try {
|
||||
System.out.println(httpRequest.sendPostRequest(ADD_EVENT_ENDPOINT, event.getAsUrlParam(), true));
|
||||
HttpRequest.TOKEN = token;
|
||||
Tuple<Integer, String> response = httpRequest.sendPostRequest(
|
||||
LOGIN_WITH_TOKEN_ENDPOINT,
|
||||
"userId=" + userId,
|
||||
true
|
||||
);
|
||||
|
||||
System.out.println(response.getKey() + " " + response.getValue());
|
||||
|
||||
if(response.getKey() != 200) return false;
|
||||
} catch (Exception e) {
|
||||
throw new RuntimeException("Es konnte keine Verbindung mit dem Server hergestellt werden.");
|
||||
e.printStackTrace();
|
||||
return false;
|
||||
}
|
||||
USER_ID = userId;
|
||||
HttpRequest.TOKEN = token;
|
||||
return USER_ID >= 0;
|
||||
}
|
||||
|
||||
public void createEvent(Event event) throws HttpRequestException {
|
||||
try {
|
||||
Tuple<Integer, String> response = httpRequest.sendPostRequest(ADD_EVENT_ENDPOINT, event.getAsUrlParam(), 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 deleteEvent(int userId, int eventId, LocalDateTime date) {
|
||||
public void deleteEvent(int userId, int eventId, LocalDateTime date) throws HttpRequestException {
|
||||
try {
|
||||
System.out.println("DELETE: userId=" + userId + "&eventId=" + eventId + "&date=" + date.toLocalDate());
|
||||
System.out.println(httpRequest.sendPostRequest(
|
||||
Tuple<Integer, String> response = httpRequest.sendPostRequest(
|
||||
DELETE_EVENT_ENDPOINT,
|
||||
"userId=" + userId + "&eventId=" + eventId + "&date=" + date.toLocalDate(),
|
||||
true
|
||||
));
|
||||
);
|
||||
if(response.getKey() != 200){
|
||||
throw new HttpRequestException(response);
|
||||
}
|
||||
}catch (HttpRequestException e){
|
||||
throw e;
|
||||
}catch (Exception e) {
|
||||
e.printStackTrace();
|
||||
throw new HttpRequestException("Es konnte keine Verbindung mit dem Server hergestellt werden.", 600);
|
||||
}
|
||||
}
|
||||
|
||||
public ArrayList<Event> getAllVisibleEvents(LocalDateTime startDate, LocalDateTime endDate) {
|
||||
public ArrayList<Event> getAllVisibleEvents(LocalDateTime startDate, LocalDateTime endDate) throws HttpRequestException {
|
||||
ArrayList<Event> eventList = new ArrayList<>();
|
||||
try {
|
||||
Tuple<Integer, String> response = httpRequest.sendPostRequest(
|
||||
@@ -89,6 +123,9 @@ public class DataController {
|
||||
"userId=" + USER_ID + "&startDate=" + startDate.toLocalDate() + "&endDate=" + endDate.toLocalDate(),
|
||||
true
|
||||
);
|
||||
if(response.getKey() != 200){
|
||||
throw new HttpRequestException(response);
|
||||
}
|
||||
String jsonResponse = response.getValue();
|
||||
System.out.println(jsonResponse);
|
||||
|
||||
@@ -97,35 +134,14 @@ public class DataController {
|
||||
eventList = (ArrayList<Event>) objectMapper.readValue(jsonResponse, new TypeReference<List<Event>>(){});
|
||||
|
||||
|
||||
}catch (HttpRequestException e){
|
||||
throw e;
|
||||
}catch (Exception e) {
|
||||
e.printStackTrace();
|
||||
throw new HttpRequestException("Es konnte keine Verbindung mit dem Server hergestellt werden.", 600);
|
||||
}
|
||||
|
||||
return eventList;
|
||||
}
|
||||
|
||||
public Event[] getAllEvents() {
|
||||
Event[] eventList = null;
|
||||
|
||||
try {
|
||||
String jsonResponse = httpRequest.sendGetRequest("http://localhost:8080/vpr/all-events-test");
|
||||
eventList = parseJsonToEventList(jsonResponse);
|
||||
for (Event e : eventList) {
|
||||
System.out.println(e);
|
||||
}
|
||||
} catch (Exception e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
|
||||
return eventList;
|
||||
}
|
||||
|
||||
private Event[] parseJsonToEventList(String jsonString) throws JsonProcessingException {
|
||||
ArrayList<Event> eventList;
|
||||
|
||||
// Parse JSON
|
||||
ObjectMapper objectMapper = new ObjectMapper();
|
||||
|
||||
return objectMapper.readValue(jsonString, Event[].class);
|
||||
}
|
||||
}
|
||||
@@ -1,3 +1,4 @@
|
||||
//Marc Beyer//
|
||||
package res;
|
||||
|
||||
import com.sun.jdi.event.StepEvent;
|
||||
@@ -110,26 +111,6 @@ public class Event {
|
||||
Pattern pattern = Pattern.compile("[A-Za-z\u00e4\u00f6\u00fc\u00c4\u00d6\u00dc\u00df0-9 =!?+*/$.:,;_<>()-]*");
|
||||
Matcher matcher = pattern.matcher(name);
|
||||
if (!matcher.matches()) {
|
||||
System.out.println(name);
|
||||
|
||||
byte[] bytes = name.getBytes(StandardCharsets.UTF_16);
|
||||
|
||||
String utf8EncodedString = new String(bytes, StandardCharsets.UTF_16);
|
||||
System.out.println(utf8EncodedString);
|
||||
|
||||
for (char c : (name).toCharArray()) {
|
||||
System.out.print(c + " " + (int) c + ", ");
|
||||
}
|
||||
System.out.println();
|
||||
for (char c : (name).toCharArray()) {
|
||||
System.out.print(c + " " + (int) c + ", ");
|
||||
}
|
||||
System.out.println();
|
||||
for (char c : ("TäöüÄÖÜ").toCharArray()) {
|
||||
System.out.print(c + " " + (int) c + ", ");
|
||||
}
|
||||
System.out.println();
|
||||
|
||||
throw new IllegalArgumentException("Der Name darf nur aus Zahlen, Buchstaben und folgenden Sonderzeichen bestehen: \u00e4\u00f6\u00fc \u00c4\u00d6\u00dc \u00df =!?+*/$.:,;_ <>()-");
|
||||
}
|
||||
if (priority < 0) {
|
||||
@@ -163,7 +144,9 @@ public class Event {
|
||||
}
|
||||
|
||||
public void setName(String name) {
|
||||
this.name = convertToASCII(name);
|
||||
System.out.println(name);
|
||||
this.name = name;
|
||||
System.out.println(this.name);
|
||||
}
|
||||
|
||||
public int getPriority() {
|
||||
@@ -250,9 +233,4 @@ public class Event {
|
||||
"&isFullDay=" + isFullDay() +
|
||||
"&isPrivate=" + isPrivate();
|
||||
}
|
||||
|
||||
private String convertToASCII(String s) {
|
||||
byte[] germanBytes = s.getBytes();
|
||||
return new String(germanBytes, StandardCharsets.US_ASCII);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
//Marc Beyer//
|
||||
package res;
|
||||
|
||||
import helper.Tuple;
|
||||
|
||||
Reference in New Issue
Block a user