|
@@ -0,0 +1,72 @@
|
|
|
+package cn.iocoder.yudao.module.ai.controller.admin.model;
|
|
|
+
|
|
|
+import cn.iocoder.yudao.framework.common.pojo.CommonResult;
|
|
|
+import cn.iocoder.yudao.framework.common.pojo.PageResult;
|
|
|
+import cn.iocoder.yudao.framework.common.util.object.BeanUtils;
|
|
|
+import cn.iocoder.yudao.module.ai.controller.admin.model.vo.apikey.AiApiKeyPageReqVO;
|
|
|
+import cn.iocoder.yudao.module.ai.controller.admin.model.vo.apikey.AiApiKeyRespVO;
|
|
|
+import cn.iocoder.yudao.module.ai.controller.admin.model.vo.apikey.AiApiKeySaveReqVO;
|
|
|
+import cn.iocoder.yudao.module.ai.dal.dataobject.model.AiApiKeyDO;
|
|
|
+import cn.iocoder.yudao.module.ai.service.model.AiApiKeyService;
|
|
|
+import io.swagger.v3.oas.annotations.Operation;
|
|
|
+import io.swagger.v3.oas.annotations.Parameter;
|
|
|
+import io.swagger.v3.oas.annotations.tags.Tag;
|
|
|
+import jakarta.annotation.Resource;
|
|
|
+import jakarta.validation.Valid;
|
|
|
+import org.springframework.security.access.prepost.PreAuthorize;
|
|
|
+import org.springframework.validation.annotation.Validated;
|
|
|
+import org.springframework.web.bind.annotation.*;
|
|
|
+
|
|
|
+import static cn.iocoder.yudao.framework.common.pojo.CommonResult.success;
|
|
|
+
|
|
|
+@Tag(name = "管理后台 - AI API 密钥")
|
|
|
+@RestController
|
|
|
+@RequestMapping("/ai/api-key")
|
|
|
+@Validated
|
|
|
+public class AiApiKeyController {
|
|
|
+
|
|
|
+ @Resource
|
|
|
+ private AiApiKeyService apiKeyService;
|
|
|
+
|
|
|
+ @PostMapping("/create")
|
|
|
+ @Operation(summary = "创建AI API 密钥")
|
|
|
+ @PreAuthorize("@ss.hasPermission('ai:api-key:create')")
|
|
|
+ public CommonResult<Long> createApiKey(@Valid @RequestBody AiApiKeySaveReqVO createReqVO) {
|
|
|
+ return success(apiKeyService.createApiKey(createReqVO));
|
|
|
+ }
|
|
|
+
|
|
|
+ @PutMapping("/update")
|
|
|
+ @Operation(summary = "更新AI API 密钥")
|
|
|
+ @PreAuthorize("@ss.hasPermission('ai:api-key:update')")
|
|
|
+ public CommonResult<Boolean> updateApiKey(@Valid @RequestBody AiApiKeySaveReqVO updateReqVO) {
|
|
|
+ apiKeyService.updateApiKey(updateReqVO);
|
|
|
+ return success(true);
|
|
|
+ }
|
|
|
+
|
|
|
+ @DeleteMapping("/delete")
|
|
|
+ @Operation(summary = "删除AI API 密钥")
|
|
|
+ @Parameter(name = "id", description = "编号", required = true)
|
|
|
+ @PreAuthorize("@ss.hasPermission('ai:api-key:delete')")
|
|
|
+ public CommonResult<Boolean> deleteApiKey(@RequestParam("id") Long id) {
|
|
|
+ apiKeyService.deleteApiKey(id);
|
|
|
+ return success(true);
|
|
|
+ }
|
|
|
+
|
|
|
+ @GetMapping("/get")
|
|
|
+ @Operation(summary = "获得AI API 密钥")
|
|
|
+ @Parameter(name = "id", description = "编号", required = true, example = "1024")
|
|
|
+ @PreAuthorize("@ss.hasPermission('ai:api-key:query')")
|
|
|
+ public CommonResult<AiApiKeyRespVO> getApiKey(@RequestParam("id") Long id) {
|
|
|
+ AiApiKeyDO apiKey = apiKeyService.getApiKey(id);
|
|
|
+ return success(BeanUtils.toBean(apiKey, AiApiKeyRespVO.class));
|
|
|
+ }
|
|
|
+
|
|
|
+ @GetMapping("/page")
|
|
|
+ @Operation(summary = "获得AI API 密钥分页")
|
|
|
+ @PreAuthorize("@ss.hasPermission('ai:api-key:query')")
|
|
|
+ public CommonResult<PageResult<AiApiKeyRespVO>> getApiKeyPage(@Valid AiApiKeyPageReqVO pageReqVO) {
|
|
|
+ PageResult<AiApiKeyDO> pageResult = apiKeyService.getApiKeyPage(pageReqVO);
|
|
|
+ return success(BeanUtils.toBean(pageResult, AiApiKeyRespVO.class));
|
|
|
+ }
|
|
|
+
|
|
|
+}
|