79 lines
2.8 KiB
Java
79 lines
2.8 KiB
Java
package com.kamco.cd.kamcoback.menu;
|
|
|
|
import com.kamco.cd.kamcoback.common.utils.UserUtil;
|
|
import com.kamco.cd.kamcoback.config.api.ApiResponseDto;
|
|
import com.kamco.cd.kamcoback.menu.dto.MyMenuDto;
|
|
import com.kamco.cd.kamcoback.menu.service.MyMenuService;
|
|
import io.swagger.v3.oas.annotations.Operation;
|
|
import io.swagger.v3.oas.annotations.media.Content;
|
|
import io.swagger.v3.oas.annotations.media.Schema;
|
|
import io.swagger.v3.oas.annotations.responses.ApiResponse;
|
|
import io.swagger.v3.oas.annotations.responses.ApiResponses;
|
|
import io.swagger.v3.oas.annotations.tags.Tag;
|
|
import java.util.List;
|
|
import lombok.RequiredArgsConstructor;
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
import org.springframework.web.bind.annotation.RequestParam;
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
@Tag(name = "메뉴 조회", description = "메뉴 조회 API")
|
|
@RestController
|
|
@RequiredArgsConstructor
|
|
@RequestMapping("/api/my/menus")
|
|
public class MyMenuApiController {
|
|
|
|
private final MyMenuService myMenuService;
|
|
|
|
@Operation(summary = "사용자별 메뉴 조회", description = "로그인 사용자별 권한 메뉴 목록")
|
|
@ApiResponses({
|
|
@ApiResponse(
|
|
responseCode = "200",
|
|
description = "조회 성공",
|
|
content =
|
|
@Content(
|
|
mediaType = "application/json",
|
|
schema =
|
|
@Schema(
|
|
type = "object",
|
|
example =
|
|
"""
|
|
{
|
|
"data": [
|
|
{
|
|
"id": "string",
|
|
"name": "string",
|
|
"menuUrl": null,
|
|
"order": 0,
|
|
"children": [
|
|
{
|
|
"id": "string",
|
|
"name": "string",
|
|
"menuUrl": "string",
|
|
"order": 0,
|
|
"children": []
|
|
},
|
|
{
|
|
"id": "string",
|
|
"name": "string",
|
|
"menuUrl": "string",
|
|
"order": 0,
|
|
"children": []
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|
|
"""))),
|
|
@ApiResponse(responseCode = "404", description = "코드를 찾을 수 없음", content = @Content),
|
|
@ApiResponse(responseCode = "500", description = "서버 오류", content = @Content)
|
|
})
|
|
@GetMapping
|
|
public ApiResponseDto<List<MyMenuDto.Basic>> getFindAllByRole(
|
|
@RequestParam(required = false) String locale) {
|
|
UserUtil userUtil = new UserUtil();
|
|
String role = userUtil.getRole();
|
|
return ApiResponseDto.ok(myMenuService.getFindByRole(role, locale));
|
|
}
|
|
}
|