Wiredly enforcing uniqe-users with an exception
authorKai Moritz <kai@juplo.de>
Sun, 25 Oct 2020 14:24:39 +0000 (15:24 +0100)
committerKai Moritz <kai@juplo.de>
Sat, 6 Feb 2021 15:41:18 +0000 (16:41 +0100)
src/main/java/de/juplo/boot/data/jdbc/User.java
src/main/java/de/juplo/boot/data/jdbc/UserController.java

index 16587c1..2cc62bd 100644 (file)
@@ -25,4 +25,10 @@ public class User {
         this.created = created;
         this.loggedIn = loggedIn;
     }
+
+
+    @Override
+    public String toString() {
+        return username;
+    }
 }
index 177b120..ac5ddbc 100644 (file)
@@ -3,6 +3,7 @@ package de.juplo.boot.data.jdbc;
 import org.slf4j.Logger;
 import org.slf4j.LoggerFactory;
 import org.springframework.context.ApplicationEventPublisher;
+import org.springframework.dao.IncorrectResultSizeDataAccessException;
 import org.springframework.http.ResponseEntity;
 import org.springframework.transaction.annotation.Transactional;
 import org.springframework.web.bind.annotation.*;
@@ -46,6 +47,9 @@ public class UserController {
             @RequestBody String username) {
         String sanitizedUsername = UserController.sanitize(username);
         User user = new User(sanitizedUsername, LocalDateTime.now(), false);
+
+        LOG.info("Request to create user: {}", user);
+
         repository.save(user);
         publisher.publishEvent(
             new UserEvent(
@@ -53,6 +57,10 @@ public class UserController {
                 sanitizedUsername,
                 CREATED,
                 ZonedDateTime.now(clock)));
+
+        // Triggers an IncorrectResultSizeDataAccessException, if the user already existed!
+        user = repository.findByUsername(sanitizedUsername);
+
         UriComponents uri =
             builder
                 .fromCurrentRequest()
@@ -101,4 +109,13 @@ public class UserController {
 
         return string.trim().toLowerCase();
     }
+
+    @ExceptionHandler
+    public ResponseEntity<?> incorrectResultSizeDataAccessException(
+        IncorrectResultSizeDataAccessException e
+        )
+    {
+      LOG.info("User already exists!");
+      return ResponseEntity.badRequest().build();
+    }
 }