Skip to content

Commit

Permalink
fix: add username from token in voucher-read-method
Browse files Browse the repository at this point in the history
  • Loading branch information
정인희 authored and 정인희 committed Jul 27, 2023
1 parent 31d43c7 commit 5b6410a
Showing 1 changed file with 29 additions and 13 deletions.
Original file line number Diff line number Diff line change
@@ -1,19 +1,33 @@
package org.swmaestro.repl.gifthub.vouchers.controller;

import io.swagger.v3.oas.annotations.Operation;
import io.swagger.v3.oas.annotations.tags.Tag;
import jakarta.servlet.http.HttpServletRequest;
import lombok.RequiredArgsConstructor;
import java.io.IOException;
import java.util.List;

import org.springframework.beans.factory.annotation.Value;
import org.springframework.web.bind.annotation.*;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PatchMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestPart;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.multipart.MultipartFile;
import org.swmaestro.repl.gifthub.util.JwtProvider;
import org.swmaestro.repl.gifthub.vouchers.dto.*;
import org.swmaestro.repl.gifthub.vouchers.dto.S3FileDto;
import org.swmaestro.repl.gifthub.vouchers.dto.VoucherReadResponseDto;
import org.swmaestro.repl.gifthub.vouchers.dto.VoucherSaveRequestDto;
import org.swmaestro.repl.gifthub.vouchers.dto.VoucherSaveResponseDto;
import org.swmaestro.repl.gifthub.vouchers.dto.VoucherUpdateRequestDto;
import org.swmaestro.repl.gifthub.vouchers.dto.VoucherUseRequestDto;
import org.swmaestro.repl.gifthub.vouchers.dto.VoucherUseResponseDto;
import org.swmaestro.repl.gifthub.vouchers.service.StorageService;
import org.swmaestro.repl.gifthub.vouchers.service.VoucherService;

import java.io.IOException;
import java.util.List;
import io.swagger.v3.oas.annotations.Operation;
import io.swagger.v3.oas.annotations.tags.Tag;
import jakarta.servlet.http.HttpServletRequest;
import lombok.RequiredArgsConstructor;

@RestController
@RequestMapping("/vouchers")
Expand All @@ -35,16 +49,18 @@ public S3FileDto saveVoucherImage(@RequestPart("image_file") MultipartFile image
@PostMapping
@Operation(summary = "Voucher 등록 메서드", description = "클라이언트에서 요청한 기프티콘 정보를 저장하기 위한 메서드입니다.")
public VoucherSaveResponseDto saveVoucher(HttpServletRequest request,
@RequestBody VoucherSaveRequestDto voucherSaveRequestDto) throws
@RequestBody VoucherSaveRequestDto voucherSaveRequestDto) throws
IOException {
String username = jwtProvider.getUsername(jwtProvider.resolveToken(request).substring(7));
return voucherService.save(username, voucherSaveRequestDto);
}

@GetMapping("/{voucherId}")
@Operation(summary = "Voucher 상세 조회 메서드", description = "클라이언트에서 요청한 기프티콘 상세 정보를 조회하기 위한 메서드입니다.")
public VoucherReadResponseDto readVoucher(@PathVariable Long voucherId) throws IOException {
return voucherService.read(voucherId);
public VoucherReadResponseDto readVoucher(HttpServletRequest request, @PathVariable Long voucherId) throws
IOException {
String username = jwtProvider.getUsername(jwtProvider.resolveToken(request).substring(7));
return voucherService.read(voucherId, username);
}

@GetMapping
Expand All @@ -57,14 +73,14 @@ public List<VoucherReadResponseDto> listVoucher(HttpServletRequest request) {
@PatchMapping("/{voucherId}")
@Operation(summary = "Voucher 수정 메서드", description = "클라이언트에서 요청한 기프티콘 정보를 수정하기 위한 메서드입니다.")
public VoucherSaveResponseDto updateVoucher(@PathVariable Long voucherId,
@RequestBody VoucherUpdateRequestDto voucherUpdateRequestDto) throws IOException {
@RequestBody VoucherUpdateRequestDto voucherUpdateRequestDto) throws IOException {
return voucherService.update(voucherId, voucherUpdateRequestDto);
}

@PostMapping("/{voucherId}/usage")
@Operation(summary = "Voucher 사용 메서드", description = "클라이언트에서 요청한 기프티콘 사용 정보를 저장하기 위한 메서드입니다.")
public VoucherUseResponseDto useVoucher(HttpServletRequest request, @PathVariable Long voucherId,
@RequestBody VoucherUseRequestDto voucherUseRequestDto) throws IOException {
@RequestBody VoucherUseRequestDto voucherUseRequestDto) throws IOException {
String username = jwtProvider.getUsername(jwtProvider.resolveToken(request).substring(7));
return voucherService.use(username, voucherId, voucherUseRequestDto);
}
Expand Down

0 comments on commit 5b6410a

Please sign in to comment.