This commit is contained in:
truettwo 2025-02-19 15:42:51 +03:00
parent eefdf4a072
commit a4e6862c3b
2 changed files with 28 additions and 12 deletions

15
pom.xml
View File

@ -56,6 +56,21 @@
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-security</artifactId>
</dependency>
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-boot-starter</artifactId>
<version>3.0.0</version>
</dependency>
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-boot-starter</artifactId>
<version>3.0.0</version>
</dependency>
<dependency>
<groupId>io.springfox</groupId>
<artifactId>springfox-swagger-ui</artifactId>
<version>3.0.0</version>
</dependency>
</dependencies>
</project>

View File

@ -22,7 +22,9 @@ public class EmployeeController {
@GetMapping("/auth") // Проверка аутентификации
public ResponseEntity<?> authenticate() {
return ResponseEntity.ok("Authenticated successfully");
}
@GetMapping("/{login}/info") // Получение информации о сотруднике
@ -39,19 +41,18 @@ public class EmployeeController {
public ResponseEntity<?> openDoor(@PathVariable String login, @RequestBody Map<String, Long> payload) {
Long code = payload.get("value");
if (code == null) {
return ResponseEntity.status(HttpStatus.BAD_REQUEST).body("Invalid payload");
}
Optional<Employee> employee = employeeService.findByLogin(login);
if (employee.isEmpty()) {
return ResponseEntity.status(HttpStatus.BAD_REQUEST).body("Invalid login");
}
if (employeeService.validateCode(login, code)) {
return ResponseEntity.ok("Door opened");
if (code != null) {
Optional<Employee> employee = employeeService.findByLogin(login);
if (!employee.isPresent()) {
return ResponseEntity.status(HttpStatus.BAD_REQUEST).body("Invalid login");
}
if (employeeService.validateCode(login, code)) {
return ResponseEntity.ok("Door opened");
} else {
return ResponseEntity.status(HttpStatus.BAD_REQUEST).body("Invalid code");
}
} else {
return ResponseEntity.status(HttpStatus.BAD_REQUEST).body("Invalid code");
return ResponseEntity.status(HttpStatus.BAD_REQUEST).body("Invalid payload");
}
}