|
| 1 | +package com.comssa.api.question.controller.rest.common; |
| 2 | + |
| 3 | + |
| 4 | +import com.comssa.api.question.service.rest.common.implement.QuestionUpdateService; |
| 5 | +import com.comssa.persistence.question.common.dto.request.RequestChangeContentDto; |
| 6 | +import com.comssa.persistence.question.common.dto.response.ResponseMultipleChoiceQuestionDto; |
| 7 | +import io.swagger.annotations.Api; |
| 8 | +import io.swagger.annotations.ApiOperation; |
| 9 | +import lombok.RequiredArgsConstructor; |
| 10 | +import org.springframework.http.ResponseEntity; |
| 11 | +import org.springframework.web.bind.annotation.DeleteMapping; |
| 12 | +import org.springframework.web.bind.annotation.PatchMapping; |
| 13 | +import org.springframework.web.bind.annotation.PathVariable; |
| 14 | +import org.springframework.web.bind.annotation.RequestBody; |
| 15 | +import org.springframework.web.bind.annotation.RequestMapping; |
| 16 | +import org.springframework.web.bind.annotation.RequestPart; |
| 17 | +import org.springframework.web.bind.annotation.RestController; |
| 18 | +import org.springframework.web.multipart.MultipartFile; |
| 19 | + |
| 20 | +@RestController |
| 21 | +@RequiredArgsConstructor |
| 22 | +@Api(tags = {"문제 수정"}) |
| 23 | +@RequestMapping("/admin") |
| 24 | +public class QuestionUpdateController { |
| 25 | + private final QuestionUpdateService questionUpdateService; |
| 26 | + |
| 27 | + @ApiOperation("문제 개시 허용") |
| 28 | + @PatchMapping(value = "/question/common/{id}/toggle-approve") |
| 29 | + public ResponseEntity<ResponseMultipleChoiceQuestionDto> toggleApproveNormalQuestion( |
| 30 | + @PathVariable("id") Long questionId |
| 31 | + ) { |
| 32 | + questionUpdateService.toggleApprove(questionId); |
| 33 | + return ResponseEntity.ok().build(); |
| 34 | + } |
| 35 | + |
| 36 | + @ApiOperation("문제 본문 업데이트") |
| 37 | + @PatchMapping(value = "/question/common/{id}/content") |
| 38 | + public ResponseEntity<ResponseMultipleChoiceQuestionDto> changeQuestion( |
| 39 | + @PathVariable("id") Long questionId, |
| 40 | + @RequestBody RequestChangeContentDto requestChangeContentDto) { |
| 41 | + questionUpdateService.changeContent(questionId, requestChangeContentDto); |
| 42 | + return ResponseEntity.ok().build(); |
| 43 | + } |
| 44 | + |
| 45 | + @ApiOperation("해설 업데이트") |
| 46 | + @PatchMapping(value = "/question/common/{id}/description") |
| 47 | + public ResponseEntity<ResponseMultipleChoiceQuestionDto> changeDescription( |
| 48 | + @PathVariable("id") Long questionId, |
| 49 | + @RequestBody RequestChangeContentDto requestChangeContentDto |
| 50 | + ) { |
| 51 | + questionUpdateService.changeDescription(questionId, requestChangeContentDto); |
| 52 | + return ResponseEntity.ok().build(); |
| 53 | + } |
| 54 | + |
| 55 | + @ApiOperation("이미지 업로드") |
| 56 | + @PatchMapping("/question/common/{id}/image") |
| 57 | + public ResponseEntity<String> updateLicenseQuestionWithImage( |
| 58 | + @PathVariable("id") Long licenseQuestionId, |
| 59 | + @RequestPart(value = "image") MultipartFile file) { |
| 60 | + return ResponseEntity.ok(questionUpdateService.updateImage(licenseQuestionId, file)); |
| 61 | + } |
| 62 | + |
| 63 | + @ApiOperation(" 문제 삭제") |
| 64 | + @DeleteMapping(value = "/question/common/{id}") |
| 65 | + public ResponseEntity<Void> changeDescription( |
| 66 | + @PathVariable("id") Long questionId) { |
| 67 | + questionUpdateService.deleteQuestion(questionId); |
| 68 | + return ResponseEntity.noContent().build(); |
| 69 | + } |
| 70 | +} |
0 commit comments