feat(project): Delete project (SCRUM-35) (!29)
All checks were successful
Quality Check / Tests (push) Successful in 59s
Quality Check / Checkstyle Main (push) Successful in 44s
Build / Build and analyze (push) Successful in 1m56s
Release / Release (push) Successful in 41s

Reviewed-on: #29
Reviewed-by: Phan Huy Tran <ptran@noreply.localhost>
Co-authored-by: Jan Klattenhoff <jan@kjan.de>
Co-committed-by: Jan Klattenhoff <jan@kjan.de>
This commit is contained in:
Jan K9f 2024-10-02 09:43:10 +00:00 committed by Jan Gleytenhoover
commit b2ef8ce2ab
3 changed files with 91 additions and 0 deletions

View file

@ -30,4 +30,8 @@ public class ProjectService {
return project;
}
public void delete(Long id) {
this.projectRepository.deleteById(id);
}
}

View file

@ -0,0 +1,40 @@
package de.szut.lf8_starter.project.action;
import de.szut.lf8_starter.project.ProjectEntity;
import de.szut.lf8_starter.project.ProjectService;
import de.szut.lf8_starter.project.dto.GetProjectDto;
import io.swagger.v3.oas.annotations.Operation;
import io.swagger.v3.oas.annotations.media.Content;
import io.swagger.v3.oas.annotations.responses.ApiResponse;
import io.swagger.v3.oas.annotations.responses.ApiResponses;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.*;
import java.util.Optional;
@RestController
@RequestMapping(value = "projects")
public class RemoveProjectAction {
private final ProjectService projectService;
public RemoveProjectAction(ProjectService projectService) {
this.projectService = projectService;
}
@Operation(summary = "Remove project by ID")
@ApiResponses(value = {
@ApiResponse(responseCode = "204", description = "Project deleted", content = {}),
@ApiResponse(responseCode = "404", description = "Project not found", content = @Content)
})
@DeleteMapping("/{id}")
public ResponseEntity<GetProjectDto> findArticleById(@PathVariable Long id) {
Optional<ProjectEntity> project = this.projectService.findById(id);
if (project.isEmpty()) {
return new ResponseEntity<>(HttpStatus.NOT_FOUND);
}
this.projectService.delete(id);
return new ResponseEntity<>(HttpStatus.NO_CONTENT);
}
}