Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[refactor] 결제 및 배송 정보 수정 회원 인증 과정 추가 #34

Merged
merged 2 commits into from
Sep 10, 2024

Conversation

jw427
Copy link
Owner

@jw427 jw427 commented Sep 10, 2024

Issue

PR 타입(하나 이상의 PR 타입을 선택해주세요)

  • 기능 추가
  • 기능 삭제
  • 버그 수정
  • 의존성, 환경 변수, 빌드 관련 코드 업데이트

반영 브랜치

refactor/modify_payment_delivery -> dev

변경 사항

  • 로그인한 회원만 접근 가능
  • 결제 정보 수정 시 회원 본인의 결제 정보만 수정 가능
  • 배송 정보 수정 시 회원 본인의 배송 정보만 수정 가능

테스트 결과

1. 결제 정보 수정

Request

HTTP : PATCH
URL: /api/payments/:paymentId
  • Request Header
Authorization: “Bearer XXXXXXXXX”
  • Request Body
{
    "bankName": "여의은행",
    "bankAccount": "123456-12-123456"
}

Response : 성공시

  • 회원 본인의 결제 정보를 수정
    200 OK
결제 정보 수정을 완료했습니다.

Response : 실패시

  • 만료된 액세스 토큰인 경우
    401 Unauthorized
{
    "timestamp": "2024-09-10T16:37:43.496+00:00",
    "status": 401,
    "error": "Unauthorized",
    "trace": "org.springframework.web.server.ResponseStatusException: 401 UNAUTHORIZED \"세션이 만료되었습니다. 다시 로그인해주세요.\"\r\n\tat .....(생략)
    "message": "세션이 만료되었습니다. 다시 로그인해주세요.",
    "path": "/api/payments/8"
}
  • 헤더가 빈 값일 경우
    401 Unauthorized
{
    "status": 401,
    "message": "유효하지 않은 접근입니다."
}
  • 다른 회원의 결제 정보를 수정하려는 경우
    403 Forbidden
{
    "status": 403,
    "message": "접근 권한이 없습니다."
}

2. 배송 정보 수정

Request

HTTP : PATCH
URL: /api/deliveries/:deliveryId
  • Request Header
Authorization: “Bearer XXXXXXXXX”
  • Request Body
{
    "address": "서울시 동작구 노량진로",
    "recipientName": "이지삼",
    "recipientPhone": "01033334444"
}

Response : 성공시

  • 회원 본인의 배송 정보를 수정
    200 OK
배송 정보 수정을 완료했습니다.

Response : 실패시

  • 만료된 액세스 토큰인 경우
    401 Unauthorized
{
    "timestamp": "2024-09-10T16:50:37.364+00:00",
    "status": 401,
    "error": "Unauthorized",
    "trace": "org.springframework.web.server.ResponseStatusException: 401 UNAUTHORIZED \"세션이 만료되었습니다. 다시 로그인해주세요.\"\r\n\tat .....(생략)
    "message": "세션이 만료되었습니다. 다시 로그인해주세요.",
    "path": "/api/deliveries/7"
}
  • 헤더가 빈 값일 경우
    401 Unauthorized
{
    "status": 401,
    "message": "유효하지 않은 접근입니다."
}
  • 다른 회원의 배송 정보를 수정하려는 경우
    403 Forbidden
{
    "status": 403,
    "message": "접근 권한이 없습니다."
}

- 회원 본인의 결제 정보만 수정 가능
- 회원 본인의 배송 정보만 수정 가능
@jw427 jw427 added the refactor label Sep 10, 2024
@jw427 jw427 self-assigned this Sep 10, 2024
@jw427 jw427 linked an issue Sep 10, 2024 that may be closed by this pull request
4 tasks
@jw427 jw427 merged commit 06e3985 into dev Sep 10, 2024
@jw427 jw427 deleted the refactor/modify_payment_delivery branch September 10, 2024 17:06
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

결제 및 배송 정보 수정 회원 인증 과정 추가
1 participant