Skip to content

Commit

Permalink
fix: admin token fix (#234)
Browse files Browse the repository at this point in the history
* feat: 회원의 랭킹 redis에 추가 및 삭제, 업데이트 기능 추가

* test: 회원 정보 변경 및 삭제 추가에 따른 랭킹 참여, 제외 테스트 코드 추가

* feat: 랭킹시스템 API 추가 및 랭킹 조회 기능 추가

* feat: 랭킹 조회 테스트 코드 추가 및 랭킹 업데이트 로직 각 업데이트 -> 스케쥴러

* style: checkstyle 에러 fix

* refactor: 응답 객체명 변경 TopRankingInfoResponse -> TopRankingInfo

* fix: 랭킹 업데이트 시간 15분 매초마다 동작하는 방식 -> 15분에 한 번만 실행되도록 변경

* refactor: 랭킹 응답 반환 객체 변수면 s 제거

Co-authored-by: Kim Heebin <blowhuiee@gmail.com>

* refactor: ToprankingResponses 응답 객체 반환명 TopRankingResponse로 변경

* fix: ObjectMapper에러 수정

* fix: objectMapper 삭제 추가

* feat: 어드민 서비스 로그인 기능 추가

* refactor: 어드민 config 업데이트

* fix: test application.yml 수정

* test: stub에서의 타입 오류 해결

* style: 변수면 변경

* feat: 어드민과 일반 유저간 토큰 생성, 검증 분리 및 로그인 분리

* feat: 회원 인증시 뱃지 생성기능 추가

* refactor: config 수정

* refactor: 코딩 스타일 재적용

* fix: 도메인 변경

---------

Co-authored-by: Kim Heebin <blowhuiee@gmail.com>
  • Loading branch information
parksey and kmebin authored Dec 3, 2023
1 parent dab0c58 commit afab121
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,8 @@ public void issueServiceToken(HttpServletResponse response, PublicClaim publicCl
String domain = getDomain(publicClaim.role());

response.addCookie(CookieUtils.typeCookie("Bearer", tokenConfig.getRefreshExpire(), domain));
response.addCookie(
CookieUtils.typeCookie("Test_be_erase", tokenConfig.getRefreshExpire(), publicClaim.role().name()));
response.addCookie(
CookieUtils.tokenCookie("access_token", accessToken, tokenConfig.getRefreshExpire(), domain));
response.addCookie(
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/com/moabam/global/common/util/CookieUtils.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ public static Cookie tokenCookie(String name, String value, long expireTime, Str
Cookie cookie = new Cookie(name, value);
cookie.setSecure(true);
cookie.setHttpOnly(true);
cookie.setDomain(domain);
cookie.setDomain("moabam.com");
cookie.setPath("/");
cookie.setMaxAge((int)expireTime);
cookie.setAttribute("SameSite", "Lax");
Expand All @@ -23,7 +23,7 @@ public static Cookie typeCookie(String value, long expireTime, String domain) {
Cookie cookie = new Cookie("token_type", value);
cookie.setSecure(true);
cookie.setHttpOnly(true);
cookie.setDomain(domain);
cookie.setDomain("moabam.com");
cookie.setPath("/");
cookie.setMaxAge((int)expireTime);
cookie.setAttribute("SameSite", "Lax");
Expand Down

0 comments on commit afab121

Please sign in to comment.