<aside> ▪️ 2024. 2. 6 (화) 오후 15시 00분~오후 15시 30분 - 권태관 멘토님

</aside>

1️⃣ 프로젝트 현황 공유

<aside> 💡 프로젝트 매니징을 위해 사용 언어, 역할 분담, 프로젝트 진행 현황 등을 우선적으로 공유해주세요

✔️ 원활한 멘토링을 위해 미리 작성해주시면 감사드리겠습니다❗ ✔️ 필요시 이미지/링크/파일 등을 활용해도 좋습니다. ✔️ 멘토링 종료 후, 해당 템플릿을 수정/삭제 하지 말아주세요. 🚫

</aside>

<aside> ▪️ 프로젝트 깃허브 링크 https://github.com/Kernel360/f1-Orury-Backend (백엔드) https://github.com/Kernel360/f1-Orury-Client (프론트엔드_Client) https://github.com/Kernel360/f1-Orury-Admin (프론트엔드_Admin)

</aside>

2️⃣ 멘토링 요청사항

<aside> 💡 ✔️ 질문 내용이나 갯수에는 제한이 없습니다:) ✔️ 효과적인 멘토링을 위해 히스토리, 요청사항 등을 최대한 상세하게 작성해주세요.

</aside>





public record UserPrincipal(
        Long id,
        String email,
        String password,
        String username,
        Boolean isAdmin,
        Collection<? extends GrantedAuthority> authorities,
        Map<String, Object> oAuthAttributes
) implements UserDetails, OAuth2User {

    public static UserPrincipal of(
            Long id,
            String email,
            String password,
            String username,
            Boolean isAdmin
    ) {
        return UserPrincipal.of(
                id,
                email,
                password,
                username,
                isAdmin,
                Map.of()
        );
    }

    public static UserPrincipal of(
            Long id,
            String email,
            String password,
            String username,
            Boolean adminCheck,
            Map<String, Object> oAuthAttributes
    ) {
        Set<RoleType> roleTypes = new HashSet<>();
        if (adminCheck) roleTypes.add(RoleType.ADMIN);
        roleTypes.add(RoleType.USER);
        return new UserPrincipal(
                id,
                email,
                password,
                username,
                adminCheck,
                roleTypes.stream().map(RoleType::getName).map(SimpleGrantedAuthority::new).collect(Collectors.toUnmodifiableSet()),
                oAuthAttributes
        );
    }

    public static UserPrincipal from(UserInfoDto dto) {
        return UserPrincipal.of(
                dto.id(),
                dto.email(),
                dto.password(),
                dto.name(),
                dto.adminCheck()
        );
    }

object LinkInfoMapper {
    fun responseLinkInfoToLinkInfo(data: ResponseLinkInfo): LinkInfo {
        return LinkInfo(
            data.user,
            data.title,
            data.originalUrl,
            data.thumbUrl,
            data.slackCreatedAt
        )
    }
}

object UserInfoMapper {
    fun responseToUserInfo(data: ResponseUserInfo): UserInfo {
        return UserInfo(
            data.id,
            data.name,
            data.admin,
            data.createdAt,
            data.updatedAt
        )
    }
}

Entity -> DTO -> Response

Request -> DTO -> Entity

메서드 오버로딩을 통해 구현하는 것과 Mapper의 역할이 겹친다고 생각합니다. 메서드 오버로딩 방식의 구현과 별도의 Mapper를 구현한 방식의 차이점? Mapper를 써야만 하는 상황이 있을까요?