16 Commits

Author SHA1 Message Date
litianxiang
5f2825af80 Merge remote-tracking branch 'origin/prod/release_1.0' into dev/dev-ltx
All checks were successful
git commit 控制 连卡佛 back-java prod 分支构建部署 / build_and_deploy (push) Has been skipped
2026-02-05 10:16:30 +08:00
litianxiang
01d1e69e17 提示词修改 2026-02-05 10:15:46 +08:00
8bc8bc08da TASK:修改设计师名称
All checks were successful
git commit 控制 连卡佛 back-java prod 分支构建部署 / build_and_deploy (push) Has been skipped
2026-01-13 14:49:45 +08:00
413e4cb7fb TASK:新增设计师类型
All checks were successful
git commit 控制 连卡佛 back-java prod 分支构建部署 / build_and_deploy (push) Has been skipped
2026-01-13 14:12:49 +08:00
c376acfb2c TASK:新增状态continue
All checks were successful
git commit 控制 连卡佛 back-java prod 分支构建部署 / build_and_deploy (push) Has been skipped
2026-01-07 13:25:29 +08:00
d7d0fc53fd TASK:新增状态ALMOST_DONE
Some checks failed
git commit 控制 连卡佛 back-java prod 分支构建部署 / build_and_deploy (push) Has been skipped
定时 连卡佛 back-java prod 分支构建部署 / build_and_deploy (push) Failing after 7m14s
2025-12-31 09:59:41 +08:00
litianxiang
655f434cf0 文件上传校验;部分演示代码废弃 2025-12-30 13:47:19 +08:00
fd61c6b588 TASK:从历史再次生成outfit,添加checkInId
All checks were successful
git commit 控制 连卡佛 back-java prod 分支构建部署 / build_and_deploy (push) Has been skipped
2025-12-30 11:33:53 +08:00
595c1eeaa8 BUGFIX: 添加retry_failed状态,不处理failed状态
All checks were successful
git commit 控制 连卡佛 back-java prod 分支构建部署 / build_and_deploy (push) Has been skipped
2025-12-30 10:56:22 +08:00
f74685c4d1 BUGFIX: 创建超过3分钟的搭配请求设置为失败
All checks were successful
git commit 控制 连卡佛 back-java prod 分支构建部署 / build_and_deploy (push) Has been skipped
2025-12-29 16:19:42 +08:00
litianxiang
318309c770 Merge remote-tracking branch 'origin/dev/dev-ltx' into prod/release_1.0
All checks were successful
git commit 控制 连卡佛 back-java prod 分支构建部署 / build_and_deploy (push) Has been skipped
2025-12-24 11:50:59 +08:00
litianxiang
4f149263a5 修改用户信息 2025-12-24 11:49:39 +08:00
fecf9bcb61 更新 docker-compose.yml
All checks were successful
git commit 控制 连卡佛 back-java prod 分支构建部署 / build_and_deploy (push) Has been skipped
2025-12-24 10:46:35 +08:00
litianxiang
190a57c855 Merge branch 'dev/dev' into prod/release_1.0
All checks were successful
git commit 控制 连卡佛 back-java prod 分支构建部署 / build_and_deploy (push) Has been skipped
2025-12-23 14:58:19 +08:00
278510aa21 Merge branch 'dev/dev-xp' into prod/release_1.0
All checks were successful
git commit 控制 连卡佛 back-java prod 分支构建部署 / build_and_deploy (push) Has been skipped
2025-12-23 14:31:19 +08:00
91eb21aa84 BUGFIX:token过期都返回401 2025-12-23 14:30:24 +08:00
19 changed files with 271 additions and 78 deletions

View File

@@ -4,6 +4,9 @@ services:
build: .
volumes:
# 日志目录映射
- ./log:/log
- ./log:/app/log
ports:
- '10095:8080'
networks:
back_default:
driver: bridge

View File

@@ -21,7 +21,13 @@ public enum StatusEnum {
FAILED(2),
@Schema(description = "运行中")
RUNNING(3);
RUNNING(3),
@Schema(description = "重试中")
RETRYING(4),
@Schema(description = "生成即将结束")
ALMOST_DONE(5);
private int code;

View File

@@ -11,7 +11,11 @@ public enum StylistPathEnum {
STYLIST_ONE("crystal", "lanecarford/stylist_guide/latest/crystal_en.md"),
STYLIST_TWO("mini", "lanecarford/stylist_guide/latest/mini_en.md");
STYLIST_TWO("mini", "lanecarford/stylist_guide/latest/mini_en.md"),
STYLIST_THREE("vera", "lanecarford/stylist_guide/latest/mini_en.md"),
STYLIST_FOUR("edi", "lanecarford/stylist_guide/latest/mini_en.md");
private String name;

View File

@@ -2,7 +2,6 @@ package com.aida.lanecarford.common.security;
import com.aida.lanecarford.common.security.config.JwtProperties;
import com.aida.lanecarford.common.security.context.UserContext;
import com.aida.lanecarford.exception.BusinessException;
import com.aida.lanecarford.util.CacheUtil;
import com.aida.lanecarford.vo.AuthPrincipalVO;
import com.alibaba.fastjson.JSONObject;
@@ -25,7 +24,7 @@ public class JwtInterceptor implements HandlerInterceptor {
private final JwtProperties jwtProperties;
@Override
public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) throws Exception {
public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) {
if ("OPTIONS".equalsIgnoreCase(request.getMethod())) {
return true;
}
@@ -41,7 +40,8 @@ public class JwtInterceptor implements HandlerInterceptor {
String extracted = jwtUtil.extractUserinfo(jwtToken);
if (StringUtil.isNullOrEmpty(extracted)) {
log.warn("TOKEN已过期请重新登录(token without userInfo)");
throw new BusinessException("Token has expired, please log in again.");
response.setStatus(HttpServletResponse.SC_UNAUTHORIZED);
// throw new BusinessException("Token has expired, please log in again.");
}
AuthPrincipalVO authPrincipalVO = JSONObject.parseObject(extracted, AuthPrincipalVO.class);
@@ -54,10 +54,12 @@ public class JwtInterceptor implements HandlerInterceptor {
if (Objects.isNull(token)) {
log.warn("TOKEN已过期请重新登录(local cache empty)");
throw new BusinessException("Token has expired, please log in again.");
response.setStatus(HttpServletResponse.SC_UNAUTHORIZED);
// throw new BusinessException("Token has expired, please log in again.");
} else if (!token.toString().equals(jwtToken)) {
log.warn("TOKEN已过期请重新登录(token not match local cache)");
throw new BusinessException("Token has expired, please log in again.");
response.setStatus(HttpServletResponse.SC_UNAUTHORIZED);
// throw new BusinessException("Token has expired, please log in again.");
}
return true;
}

View File

@@ -4,6 +4,7 @@ import com.aida.lanecarford.common.ApiResponse;
import com.aida.lanecarford.dto.CustomerPhotoDto;
import com.aida.lanecarford.entity.CustomerPhoto;
import com.aida.lanecarford.service.CustomerPhotoService;
import jakarta.validation.Valid;
import lombok.RequiredArgsConstructor;
import org.springframework.web.bind.annotation.ModelAttribute;
import org.springframework.web.bind.annotation.PostMapping;
@@ -24,7 +25,7 @@ public class CustomerPhotoController {
private final CustomerPhotoService customerPhotoService;
@PostMapping("/upload")
public ApiResponse<CustomerPhoto> upload(@ModelAttribute CustomerPhotoDto customerPhotoDto) {
public ApiResponse<CustomerPhoto> upload(@Valid @ModelAttribute CustomerPhotoDto customerPhotoDto) {
CustomerPhoto customerPhoto = customerPhotoService.upload(customerPhotoDto);
return ApiResponse.success(customerPhoto);
}

View File

@@ -121,4 +121,12 @@ public class LoginController {
return ApiResponse.success(loginService.parseGoogleAccessToken(accessToken));
}
//修改用户信息
@Operation(summary = "修改用户信息",
description = "传usernameemailpassword三个值password要加密")
@PostMapping("/updateUserInfo")
public ApiResponse<String> updateUserInfo(@RequestBody User user) {
return ApiResponse.success(loginService.updateUserInfo(user));
}
}

View File

@@ -109,8 +109,10 @@ public class StyleController {
@GetMapping("/retrieveAndRegenerate")
public ApiResponse<List<String>> retrieveAndRegenerate(
@Parameter(description = "tryOn后的图片id", required = true, example = "1369")
@RequestParam Long tryOnEffectsId) {
return ApiResponse.success(styleService.retrieveAndRegenerate(tryOnEffectsId));
@RequestParam Long tryOnEffectsId,
@Parameter(description = "用户进店记录", required = true, example = "3")
@RequestParam Long checkInId ) {
return ApiResponse.success(styleService.retrieveAndRegenerate(tryOnEffectsId, checkInId));
}
}

View File

@@ -92,28 +92,28 @@ public class TryOnEffectController {
return ApiResponse.success();
}
/**
* 首页默认图换脸演示
*/
@Operation(summary = "首页点击换脸", description = "传入上传顾客照片后得到的ID")
@PostMapping("/reFace")
public ApiResponse<String> reFace(@Nullable @RequestParam Long customerPhotoId,
@Nullable @RequestParam String prompt,
@Nullable @RequestParam String tryonUrl) {
if (customerPhotoId == null&& StringUtil.isNullOrEmpty(prompt)&& StringUtil.isNullOrEmpty(tryonUrl)){
return ApiResponse.error("system error:Parameter null");
}
String result = "";
if (StringUtil.isNullOrEmpty(prompt)){
//换脸
result = tryOnEffectService.reFace(customerPhotoId);
}else {
if (StringUtil.isNullOrEmpty(tryonUrl)){
return ApiResponse.error("system error:Parameter null");
}
//根据提示词修改图像
result = tryOnEffectService.generateUrl(prompt,tryonUrl);
}
return ApiResponse.success("操作成功",result);
}
// /**
// * 首页默认图换脸演示
// */
// @Operation(summary = "首页点击换脸", description = "传入上传顾客照片后得到的ID")
// @PostMapping("/reFace")
// public ApiResponse<String> reFace(@Nullable @RequestParam Long customerPhotoId,
// @Nullable @RequestParam String prompt,
// @Nullable @RequestParam String tryonUrl) {
// if (customerPhotoId == null&& StringUtil.isNullOrEmpty(prompt)&& StringUtil.isNullOrEmpty(tryonUrl)){
// return ApiResponse.error("system error:Parameter null");
// }
// String result = "";
// if (StringUtil.isNullOrEmpty(prompt)){
// //换脸
// result = tryOnEffectService.reFace(customerPhotoId);
// }else {
// if (StringUtil.isNullOrEmpty(tryonUrl)){
// return ApiResponse.error("system error:Parameter null");
// }
// //根据提示词修改图像
// result = tryOnEffectService.generateUrl(prompt,tryonUrl);
// }
// return ApiResponse.success("操作成功",result);
// }
}

View File

@@ -10,7 +10,7 @@ public class OutfitCallbackDTO {
private String outfit_id;
// 取值范围ok || failed || stop
// 取值范围ok || failed || stop || retrying || retry_failed
private String status;
private String path;

View File

@@ -88,6 +88,12 @@ public class GlobalExceptionHandler {
logger.error("MinIO异常: {}", e.getMessage(), e);
// 如果是文件为空等参数错误,返回参数错误码
String message = e.getMessage();
if (message != null && (message.contains("文件不能为空") || message.contains("不能为空"))) {
return ApiResponse.error(ResultEnum.PARAMETER_ERROR.getCode(), "File cannot be empty");
}
return ApiResponse.error(ResultEnum.ERROR.getCode(), "File storage service error");
}

View File

@@ -36,4 +36,6 @@ public interface LoginService extends IService<User> {
LoginVO parseGoogleCredential(String credential) throws ParseException, JOSEException, IOException;
LoginVO parseGoogleAccessToken(String accessToken);
String updateUserInfo(User user);
}

View File

@@ -31,6 +31,6 @@ public interface StyleService extends IService<Style> {
*/
void cancelFavoriteStyle(Long styleId);
List<String> retrieveAndRegenerate(Long tryOnEffectsId);
List<String> retrieveAndRegenerate(Long tryOnEffectsId, Long checkInId);
}

View File

@@ -44,8 +44,8 @@ public interface TryOnEffectService extends IService<TryOnEffect> {
*/
boolean addComment(Suggestion suggestion);
//已废弃
String reFace(Long customerPhotoId);
String generateUrl(String prompt, String tryonUrl);
PageResult<TryOnResultVO> getTryOnHistoricals(HistoricalDTO historicalDTO);

View File

@@ -1,9 +1,11 @@
package com.aida.lanecarford.service.impl;
import com.aida.lanecarford.common.constant.MinioFileConstants;
import com.aida.lanecarford.common.response.ResultEnum;
import com.aida.lanecarford.config.MinioConfig;
import com.aida.lanecarford.dto.CustomerPhotoDto;
import com.aida.lanecarford.entity.CustomerPhoto;
import com.aida.lanecarford.exception.BusinessException;
import com.aida.lanecarford.mapper.CustomerPhotoMapper;
import com.aida.lanecarford.service.CustomerPhotoService;
import com.aida.lanecarford.util.CopyUtil;
@@ -11,6 +13,7 @@ import com.aida.lanecarford.util.MinioUtil;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import lombok.RequiredArgsConstructor;
import org.springframework.stereotype.Service;
import org.springframework.web.multipart.MultipartFile;
/**
* 顾客照片服务实现类
@@ -26,9 +29,14 @@ public class CustomerPhotoServiceImpl extends ServiceImpl<CustomerPhotoMapper, C
@Override
public CustomerPhoto upload(CustomerPhotoDto customerPhotoDto) {
// 验证文件是否为空
MultipartFile file = customerPhotoDto.getFile();
if (file == null || file.isEmpty()) {
throw new BusinessException(ResultEnum.PARAMETER_ERROR, "File cannot be empty", "文件不能为空");
}
String logicalUrl = minioUtil.uploadFile(
customerPhotoDto.getFile(),
file,
MinioFileConstants.FileType.CUSTOMER_PHOTO,
minioConfig.getBucketName()
);

View File

@@ -108,6 +108,8 @@ public class CustomerServiceImpl extends ServiceImpl<CustomerMapper, Customer> i
customer.setCreatedTime(LocalDateTime.now());
save(customer);
} else {
throw new BusinessException("VIP ID'" + vipId + "' already exists.Please proceed directly to check-in.");
}
return customer;

View File

@@ -353,6 +353,66 @@ public class LoginServiceImpl extends ServiceImpl<UserMapper, User> implements L
}
}
@Override
public String updateUserInfo(User user) {
// 1. 获取当前登录用户ID
AuthPrincipalVO userHolder = UserContext.getUserHolder();
if (Objects.isNull(userHolder)) {
throw new BusinessException("User not logged in", "用户未登录", ResultEnum.ERROR.getCode());
}
Long userId = userHolder.getId();
// 2. 验证用户是否存在
User existingUser = getById(userId);
if (Objects.isNull(existingUser)) {
throw new BusinessException("User not found", "用户不存在", ResultEnum.ERROR.getCode());
}
// 3. 构建更新条件,只更新有值的字段
UpdateWrapper<User> updateWrapper = new UpdateWrapper<>();
updateWrapper.lambda().eq(User::getId, userId);
boolean hasUpdate = false;
// 如果username有值则更新
if (!StringUtil.isNullOrEmpty(user.getUsername())) {
updateWrapper.lambda().set(User::getUsername, user.getUsername());
hasUpdate = true;
}
// 如果email有值则更新
if (!StringUtil.isNullOrEmpty(user.getEmail())) {
updateWrapper.lambda().set(User::getEmail, user.getEmail());
hasUpdate = true;
}
// 如果password有值则更新
if (!StringUtil.isNullOrEmpty(user.getPassword())) {
updateWrapper.lambda().set(User::getPassword, user.getPassword());
hasUpdate = true;
}
// 4. 如果没有需要更新的字段,返回提示信息
if (!hasUpdate) {
return "No fields to update";
}
// 5. 执行更新
boolean updated = update(updateWrapper);
if (updated) {
log.info("用户信息更新成功 userId={}, updatedFields=username:{}, email:{}, password:{}",
userId,
!StringUtil.isNullOrEmpty(user.getUsername()),
!StringUtil.isNullOrEmpty(user.getEmail()),
!StringUtil.isNullOrEmpty(user.getPassword()));
return "User information updated successfully";
} else {
throw new BusinessException("Failed to update user information", "更新用户信息失败", ResultEnum.ERROR.getCode());
}
}
private static final String TOKEN_URL = "https://oauth2.googleapis.com/token";
public GoogleUser getGoogleUserFromCode(String code) {

View File

@@ -27,7 +27,6 @@ import com.alibaba.fastjson2.JSON;
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import io.netty.util.internal.StringUtil;
import lombok.RequiredArgsConstructor;
import lombok.extern.slf4j.Slf4j;
import org.apache.commons.lang3.StringUtils;
@@ -62,6 +61,10 @@ public class StyleServiceImpl extends ServiceImpl<StyleMapper, Style> implements
// 请求需要顾客id, 生成的数量,风格
StylistPathEnum stylistPathEnum = StylistPathEnum.of(requestOutfitDTO.getStylist());
if (Objects.isNull(stylistPathEnum)) {
log.error("未知设计师: {}",requestOutfitDTO.getStylist() );
stylistPathEnum = StylistPathEnum.STYLIST_ONE;
}
Map<String, Object> params = setRequestOutfitParams(requestOutfitDTO, stylistPathEnum);
SessionRecord sessionRecord = saveOrUpdateSession(requestOutfitDTO.getSessionId(), requestOutfitDTO.getCheckInId(), null, null);
@@ -101,6 +104,7 @@ public class StyleServiceImpl extends ServiceImpl<StyleMapper, Style> implements
String key = RedisURIConstants.outfitResultCache + requestId;
OutfitResultVO outfitResultVO = new OutfitResultVO(style.getId(), requestId, StatusEnum.PENDING.name());
outfitResultVO.setCreateTimeStamp(System.currentTimeMillis());
cacheUtil.setCache(key, outfitResultVO, RedisURIConstants.verifyCodeTimeout);
}
return requestIds;
@@ -129,17 +133,21 @@ public class StyleServiceImpl extends ServiceImpl<StyleMapper, Style> implements
// 搭配完成后的回调通知处理
public void callback(OutfitCallbackDTO callbackDTO) {
if (Objects.isNull(callbackDTO.getStatus())) {
if (Objects.isNull(callbackDTO.getStatus())
|| callbackDTO.getStatus().equals("failed")
|| callbackDTO.getStatus().equals("continue")) {
return;
}
if ("ok".equals(callbackDTO.getStatus()) || "stop".equals(callbackDTO.getStatus())) {
// 1. 判断path是否为空是 -> 不做任何处理
if (StringUtil.isNullOrEmpty(callbackDTO.getPath())) {
if (("ok".equals(callbackDTO.getStatus())
|| "stop".equals(callbackDTO.getStatus()))
&& StringUtils.isBlank(callbackDTO.getPath())) {
log.error("状态为ok || stop时path为空");
return;
}
if (StringUtil.isNullOrEmpty(callbackDTO.getOutfit_id())) {
if (StringUtils.isBlank(callbackDTO.getOutfit_id())) {
log.error("回调参数中outfit_id为空");
return;
}
@@ -157,16 +165,42 @@ public class StyleServiceImpl extends ServiceImpl<StyleMapper, Style> implements
// 3.更新path, items, 状态
// 由于数据变化较频繁考虑存到redis
if (outfitResult instanceof OutfitResultVO) {
String status;
switch(callbackDTO.getStatus()) {
case "ok":
status = StatusEnum.RUNNING.name();
((OutfitResultVO) outfitResult).setPath(minioUtil.getPresignedUrl(callbackDTO.getPath(), CommonConstants.MINIO_PATH_TIMEOUT));
String status = "ok".equals(callbackDTO.getStatus()) ? StatusEnum.RUNNING.name() : StatusEnum.SUCCEEDED.name();
break;
case "stop":
status = StatusEnum.SUCCEEDED.name();
((OutfitResultVO) outfitResult).setPath(minioUtil.getPresignedUrl(callbackDTO.getPath(), CommonConstants.MINIO_PATH_TIMEOUT));
break;
case "retrying":
status = StatusEnum.PENDING.name();
((OutfitResultVO) outfitResult).setCreateTimeStamp(System.currentTimeMillis());
((OutfitResultVO) outfitResult).setPath(null);
break;
case "almost_done":
// 此时是没有更新path的
status = StatusEnum.ALMOST_DONE.name();
break;
case /*"failed",*/ "retry_failed":
status = StatusEnum.FAILED.name();
break;
default:
log.error("outfit_id为{},回调状态未知{}", requestId, callbackDTO.getStatus());
status = StatusEnum.FAILED.name();
}
((OutfitResultVO) outfitResult).setStatus(status);
cacheUtil.setCache(key, outfitResult, RedisURIConstants.outfitResultTimeout);
}
}
// 生成结束或失败时更新数据库
if ("stop".equals(callbackDTO.getStatus()) || "failed".equals(callbackDTO.getStatus())) {
String requestId = callbackDTO.getOutfit_id();
if ("stop".equals(callbackDTO.getStatus())
/*|| "failed".equals(callbackDTO.getStatus())*/
|| "retry_failed".equals(callbackDTO.getStatus())) {
// String requestId = callbackDTO.getOutfit_id();
LambdaQueryWrapper<Style> queryWrapper = new LambdaQueryWrapper<>();
queryWrapper.eq(Style::getPythonRequestId, requestId);
@@ -198,6 +232,7 @@ public class StyleServiceImpl extends ServiceImpl<StyleMapper, Style> implements
public List<OutfitResultVO> getOutfitResult(List<String> requestIDs) {
ArrayList<OutfitResultVO> resultVOS = new ArrayList<>();
ArrayList<String> reQueryIds = new ArrayList<>();
List<String> expiredIds = new ArrayList<>();
// 优先从redis中获取结果没有再从数据库中查询
for (String requestID : requestIDs) {
String key = RedisURIConstants.outfitResultCache + requestID;
@@ -207,8 +242,26 @@ public class StyleServiceImpl extends ServiceImpl<StyleMapper, Style> implements
reQueryIds.add(requestID);
continue;
}
// 判断这条记录的状态是否为成功或者失败判断这条记录的创建时间是否超过3分钟继续往后设置为失败并更新数据库
if (outfit instanceof OutfitResultVO) {
if ((((OutfitResultVO) outfit).getStatus().equals(StatusEnum.PENDING.name())
|| ((OutfitResultVO) outfit).getStatus().equals(StatusEnum.RUNNING.name())
|| ((OutfitResultVO) outfit).getStatus().equals(StatusEnum.ALMOST_DONE.name()))
&& isExpired(((OutfitResultVO) outfit).getCreateTimeStamp())) {
// 设置状态为失败
((OutfitResultVO) outfit).setStatus(StatusEnum.FAILED.name());
// 更新redis和数据库状态
expiredIds.add(requestID);
cacheUtil.setCache(key, outfit, RedisURIConstants.outfitResultTimeout);
}
resultVOS.add((OutfitResultVO) outfit);
}
}
if (!expiredIds.isEmpty()) {
batchUpdateExpiredRecords(expiredIds);
}
if (!reQueryIds.isEmpty()) {
LambdaQueryWrapper<Style> queryWrapper = new LambdaQueryWrapper<>();
@@ -216,12 +269,13 @@ public class StyleServiceImpl extends ServiceImpl<StyleMapper, Style> implements
List<Style> list = list(queryWrapper);
if (!list.isEmpty()) {
// 在数据库中的数据,都是处于成功或失败的状态
for (Style style : list) {
OutfitResultVO outfitResultVO = new OutfitResultVO();
outfitResultVO.setId(style.getId());
outfitResultVO.setRequestId(style.getPythonRequestId());
outfitResultVO.setStatus(StatusEnum.of(style.getGenerationStatus()).name());
if (!StringUtil.isNullOrEmpty(style.getStyleImageUrl())) {
if (!StringUtils.isBlank(style.getStyleImageUrl())) {
outfitResultVO.setPath(minioUtil.getPresignedUrl(style.getStyleImageUrl(), CommonConstants.MINIO_PATH_TIMEOUT));
}
resultVOS.add(outfitResultVO);
@@ -232,6 +286,34 @@ public class StyleServiceImpl extends ServiceImpl<StyleMapper, Style> implements
return resultVOS;
}
// 3分钟的毫秒数
private static final long THREE_MINUTES_IN_MILLIS = 3 * 60 * 1000;
private boolean isExpired(long createTimeMillis) {
long currentTimeMillis = System.currentTimeMillis();
return (currentTimeMillis - createTimeMillis) >= THREE_MINUTES_IN_MILLIS;
}
private void batchUpdateExpiredRecords(List<String> expiredIds) {
try {
if (CollectionUtils.isEmpty(expiredIds)) {
return;
}
// 批量更新,减少数据库压力
lambdaUpdate()
.in(Style::getPythonRequestId, expiredIds)
.set(Style::getGenerationStatus, StatusEnum.FAILED.getCode())
.set(Style::getUpdatedTime, LocalDateTime.now())
.update();
log.info("批量更新过期记录为失败状态,数量:{}", expiredIds.size());
} catch (Exception e) {
log.error("批量更新过期记录失败", e);
}
}
@Override
public void setFavoriteStyle(Long styleId) {
if (styleId == null) {
@@ -291,7 +373,7 @@ public class StyleServiceImpl extends ServiceImpl<StyleMapper, Style> implements
return sessionRecord;
}
public List<String> retrieveAndRegenerate(Long tryOnEffectsId) {
public List<String> retrieveAndRegenerate(Long tryOnEffectsId, Long checkInId) {
// 1. 判断id是否有效
TryOnEffect tryOnEffect = tryOnEffectMapper.selectById(tryOnEffectsId);
if (Objects.isNull(tryOnEffect)) {
@@ -302,6 +384,10 @@ public class StyleServiceImpl extends ServiceImpl<StyleMapper, Style> implements
log.error("Id 为:{} 的tryOnEffects记录,没有style_id", tryOnEffectsId);
throw new BusinessException("Cannot recreate outfit from past data.");
}
if (Objects.isNull(checkInId)) {
log.error("checkInId 为空");
throw new BusinessException("'checkInId' cannot be empty");
}
// 2. 组装参数
Style style = baseMapper.selectById(tryOnEffect.getStyleId());
@@ -316,7 +402,7 @@ public class StyleServiceImpl extends ServiceImpl<StyleMapper, Style> implements
log.error("找不到Id 为:{} 的SessionRecord记录", outfitRequest.getSessionRecordId());
throw new BusinessException("Cannot recreate outfit from past data.");
}
RequestOutfitDTO requestOutfitDTO = getRequestOutfitDTO(outfitRequest, sessionRecord);
RequestOutfitDTO requestOutfitDTO = getRequestOutfitDTO(outfitRequest, sessionRecord, checkInId);
return requestOutfit(requestOutfitDTO);
} else {
@@ -326,10 +412,10 @@ public class StyleServiceImpl extends ServiceImpl<StyleMapper, Style> implements
}
@NotNull
private static RequestOutfitDTO getRequestOutfitDTO(OutfitRequest outfitRequest, SessionRecord sessionRecord) {
private static RequestOutfitDTO getRequestOutfitDTO(OutfitRequest outfitRequest, SessionRecord sessionRecord, Long checkInId) {
RequestOutfitDTO requestOutfitDTO = new RequestOutfitDTO();
requestOutfitDTO.setCustomerId(outfitRequest.getCustomerId());
requestOutfitDTO.setCheckInId(outfitRequest.getVisitRecordId());
requestOutfitDTO.setCheckInId(checkInId);
requestOutfitDTO.setStylist(outfitRequest.getStylist());
requestOutfitDTO.setGender(outfitRequest.getGender());
requestOutfitDTO.setNum(1);

View File

@@ -131,7 +131,7 @@ public class TryOnEffectServiceImpl extends ServiceImpl<TryOnEffectMapper, TryOn
"\n" +
"**Placement Detail:** Outerwear must be worn on the outside, and if a bag is present, it must be visible.\n" +
"**Quality:** Ultra-high resolution, The figure should fill the frame as much as possible,studio photography quality. Emphasize **realistic fabric textures and sharp print fidelity**.\n" +
"**Negative Constraints (Exclude):** **NO text, NO borders, NO tables, NO multiple models, NO extra items.** **CRITICAL: NO cropping of the head or face.**";
"**Negative Constraints (Exclude):** **NO text, NO borders, NO tables, NO multiple models, All items must be worn on the person; they must not be displayed anywhere else except on the model.** **CRITICAL: NO cropping of the head or face.**";
aiRreultlogicalUrl = AITryOnEffect(prompt, imageUrls);
} else if (tryOnEffectDto.getIsRegenerated() == 1 && imageUrls.size() == 1) {
@@ -213,6 +213,7 @@ public class TryOnEffectServiceImpl extends ServiceImpl<TryOnEffectMapper, TryOn
}
}
//已废弃
@Override
public String reFace(Long customerPhotoId) {

View File

@@ -26,6 +26,8 @@ public class OutfitResultVO {
)
private String status;
private Long createTimeStamp;
public OutfitResultVO(Long id, String requestId, String status) {
this.id = id;
this.requestId = requestId;