Files
aida_back/src/main/java/com/ai/da/controller/GenerateController.java

78 lines
3.1 KiB
Java
Raw Normal View History

2023-08-17 11:59:19 +08:00
package com.ai.da.controller;
import com.ai.da.common.response.Response;
import com.ai.da.model.dto.GenerateLikeDTO;
2023-08-17 11:59:19 +08:00
import com.ai.da.model.dto.GenerateThroughImageTextDTO;
import com.ai.da.model.vo.GenerateCaptionVO;
import com.ai.da.model.vo.GenerateCollectionVO;
import com.ai.da.model.vo.GenerateLikeVO;
2023-08-17 11:59:19 +08:00
import com.ai.da.service.GenerateService;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
2023-09-19 15:39:21 +08:00
import io.swagger.annotations.ApiParam;
2023-08-17 11:59:19 +08:00
import lombok.extern.slf4j.Slf4j;
import org.springframework.web.bind.annotation.*;
import javax.annotation.Resource;
import javax.validation.Valid;
/**
* @author XP
*/
@Api(tags = "Generate模块")
@Slf4j
@RestController
@RequestMapping("/api/generate")
public class GenerateController {
@Resource
private GenerateService generateService;
2024-01-02 11:53:09 +08:00
@ApiOperation("自动识别sketch的caption 暂时未上")
2023-08-17 11:59:19 +08:00
@PostMapping("/caption")
2023-10-20 14:47:18 +08:00
public Response<GenerateCaptionVO> generateCaption(@RequestParam Long sketchElementId) {
2023-08-17 11:59:19 +08:00
return Response.success(generateService.generateCaption(sketchElementId));
}
@ApiOperation("通过文字、图片生成图片")
@PostMapping("/sketchAndPrint")
2023-10-20 14:47:18 +08:00
public Response<GenerateCollectionVO> generateThroughImageText(@Valid @RequestBody GenerateThroughImageTextDTO generateThroughImageTextDTO) {
return Response.success(generateService.generateThroughImageText(generateThroughImageTextDTO));
2023-08-17 11:59:19 +08:00
}
@ApiOperation("喜欢生成的图片")
@PostMapping("/like")
2023-10-20 14:47:18 +08:00
public Response<GenerateLikeVO> like(@Valid @RequestBody GenerateLikeDTO generateLikeDTO) {
return Response.success(generateService.generateLike(generateLikeDTO));
}
2023-08-17 11:59:19 +08:00
@ApiOperation(value = "取消喜欢")
2023-09-19 15:39:21 +08:00
@GetMapping("/dislike")
public Response<Boolean> dislike(@ApiParam("generateDetailId") @RequestParam Long generateDetailId,
@ApiParam("timeZone") @RequestParam String timeZone) {
2023-10-20 14:47:18 +08:00
return Response.success(generateService.generateDislike(generateDetailId, timeZone));
}
2024-01-22 14:00:05 +08:00
@ApiOperation(value = "发起生成请求,异步获取结果")
@PostMapping("/prepare")
public Response<String> prepareForGenerate(@Valid @RequestBody GenerateThroughImageTextDTO generateThroughImageTextDTO) {
return Response.success(generateService.prepareForGenerate(generateThroughImageTextDTO));
}
@ApiOperation(value = "取消继续生成")
@GetMapping("/stopWaiting")
2024-01-26 13:12:04 +08:00
public Response<String> stopWaiting(@RequestParam("userId") Long userId,
@RequestParam("uniqueId") String uniqueId,
@RequestParam("timeZone") String timeZone) {
generateService.cancelGenerate(userId, uniqueId, timeZone);
return Response.success("stop waiting successfully");
}
@ApiOperation(value = "获取生成结果")
2024-01-22 14:00:05 +08:00
@GetMapping("/result")
public Response<GenerateCollectionVO> getGenerateResult(@RequestParam("uniqueId") String uniqueId) {
GenerateCollectionVO generateResult = generateService.getGenerateResult(uniqueId);
return Response.success(generateResult);
}
2023-08-17 11:59:19 +08:00
}