Fixed event/add endpoint
This commit is contained in:
		@@ -12,6 +12,7 @@ import javafx.util.converter.LocalTimeStringConverter;
 | 
				
			|||||||
import res.DataController;
 | 
					import res.DataController;
 | 
				
			||||||
import res.Event;
 | 
					import res.Event;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					import java.time.LocalDateTime;
 | 
				
			||||||
import java.time.LocalTime;
 | 
					import java.time.LocalTime;
 | 
				
			||||||
import java.time.format.FormatStyle;
 | 
					import java.time.format.FormatStyle;
 | 
				
			||||||
import java.util.Locale;
 | 
					import java.util.Locale;
 | 
				
			||||||
@@ -65,8 +66,8 @@ public class CreateEventController {
 | 
				
			|||||||
                    ComboBoxPriotity.getSelectionModel().getSelectedIndex(),
 | 
					                    ComboBoxPriotity.getSelectionModel().getSelectedIndex(),
 | 
				
			||||||
                    toggleBtnIsFullDay.isSelected(),
 | 
					                    toggleBtnIsFullDay.isSelected(),
 | 
				
			||||||
                    toggleBtnIsPrivate.isSelected(),
 | 
					                    toggleBtnIsPrivate.isSelected(),
 | 
				
			||||||
                    timeStart.getValue().toString(),
 | 
					                    timeStart.getValue(),
 | 
				
			||||||
                    timeEnd.getValue().toString(),
 | 
					                    timeEnd.getValue(),
 | 
				
			||||||
                    datePickerDate.getValue().atStartOfDay(),
 | 
					                    datePickerDate.getValue().atStartOfDay(),
 | 
				
			||||||
                    (int) DataController.USER_ID
 | 
					                    (int) DataController.USER_ID
 | 
				
			||||||
            );
 | 
					            );
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -4,9 +4,11 @@ import com.sun.jdi.event.StepEvent;
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
import java.io.Serializable;
 | 
					import java.io.Serializable;
 | 
				
			||||||
import java.nio.charset.StandardCharsets;
 | 
					import java.nio.charset.StandardCharsets;
 | 
				
			||||||
 | 
					import java.sql.SQLOutput;
 | 
				
			||||||
import java.time.Duration;
 | 
					import java.time.Duration;
 | 
				
			||||||
import java.time.LocalDate;
 | 
					import java.time.LocalDate;
 | 
				
			||||||
import java.time.LocalDateTime;
 | 
					import java.time.LocalDateTime;
 | 
				
			||||||
 | 
					import java.time.LocalTime;
 | 
				
			||||||
import java.time.format.DateTimeFormatter;
 | 
					import java.time.format.DateTimeFormatter;
 | 
				
			||||||
import java.util.ArrayList;
 | 
					import java.util.ArrayList;
 | 
				
			||||||
import java.util.regex.Matcher;
 | 
					import java.util.regex.Matcher;
 | 
				
			||||||
@@ -95,11 +97,13 @@ public class Event {
 | 
				
			|||||||
                 int priority,
 | 
					                 int priority,
 | 
				
			||||||
                 boolean isFullDay,
 | 
					                 boolean isFullDay,
 | 
				
			||||||
                 boolean isPrivate,
 | 
					                 boolean isPrivate,
 | 
				
			||||||
                 String start,
 | 
					                 LocalTime start,
 | 
				
			||||||
                 String end,
 | 
					                 LocalTime end,
 | 
				
			||||||
                 LocalDateTime date,
 | 
					                 LocalDateTime date,
 | 
				
			||||||
                 int ownerId
 | 
					                 int ownerId
 | 
				
			||||||
    ) throws IllegalArgumentException {
 | 
					    ) throws IllegalArgumentException {
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        System.out.println("Create Event");
 | 
				
			||||||
        if (name.length() < 3) {
 | 
					        if (name.length() < 3) {
 | 
				
			||||||
            throw new IllegalArgumentException("Der Name muss eine L\u00e4nge von 3 haben.");
 | 
					            throw new IllegalArgumentException("Der Name muss eine L\u00e4nge von 3 haben.");
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
@@ -140,8 +144,8 @@ public class Event {
 | 
				
			|||||||
        this.priority = priority;
 | 
					        this.priority = priority;
 | 
				
			||||||
        this.isFullDay = isFullDay;
 | 
					        this.isFullDay = isFullDay;
 | 
				
			||||||
        this.isPrivate = isPrivate;
 | 
					        this.isPrivate = isPrivate;
 | 
				
			||||||
        this.start = start;
 | 
					        if (start != null) this.start = start.toString();
 | 
				
			||||||
        this.end = end;
 | 
					        if (start != null) this.end = end.toString();
 | 
				
			||||||
        this.date = date;
 | 
					        this.date = date;
 | 
				
			||||||
        this.ownerId = ownerId;
 | 
					        this.ownerId = ownerId;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
@@ -242,7 +246,7 @@ public class Event {
 | 
				
			|||||||
                "&name=" + getName() +
 | 
					                "&name=" + getName() +
 | 
				
			||||||
                "&start=" + getStart() +
 | 
					                "&start=" + getStart() +
 | 
				
			||||||
                "&end=" + getEnd() +
 | 
					                "&end=" + getEnd() +
 | 
				
			||||||
                "&prority=" + getPriority() +
 | 
					                "&priority=" + getPriority() +
 | 
				
			||||||
                "&isFullDay=" + isFullDay() +
 | 
					                "&isFullDay=" + isFullDay() +
 | 
				
			||||||
                "&isPrivate=" + isPrivate();
 | 
					                "&isPrivate=" + isPrivate();
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user