2025-12-22 14:07:44 +07:00
|
|
|
package ru.soune.nocopy.handler;
|
|
|
|
|
|
|
|
|
|
import com.fasterxml.jackson.databind.ObjectMapper;
|
|
|
|
|
import lombok.RequiredArgsConstructor;
|
|
|
|
|
import lombok.extern.slf4j.Slf4j;
|
|
|
|
|
import org.springframework.stereotype.Component;
|
|
|
|
|
import ru.soune.nocopy.dto.BaseRequest;
|
|
|
|
|
import ru.soune.nocopy.dto.BaseResponse;
|
|
|
|
|
import ru.soune.nocopy.dto.MessageCode;
|
|
|
|
|
import ru.soune.nocopy.dto.file.ImageSearchRequest;
|
2026-02-11 17:41:48 +07:00
|
|
|
import ru.soune.nocopy.dto.file.YandexSearchResponse;
|
2026-01-28 23:25:16 +07:00
|
|
|
import ru.soune.nocopy.entity.file.FileEntity;
|
|
|
|
|
import ru.soune.nocopy.exception.NotValidFieldException;
|
|
|
|
|
import ru.soune.nocopy.repository.FileEntityRepository;
|
|
|
|
|
import ru.soune.nocopy.service.file.CheckCounterService;
|
2026-02-05 00:37:59 +07:00
|
|
|
import ru.soune.nocopy.service.search.SearchApiToYandexResponseMapper;
|
2026-02-11 17:41:48 +07:00
|
|
|
import ru.soune.nocopy.service.search.SearchImageService;
|
2026-01-27 08:09:54 +07:00
|
|
|
import ru.soune.nocopy.service.search.GoogleVisionSearchService;
|
2026-02-05 17:25:50 +07:00
|
|
|
import ru.soune.nocopy.service.tariff.TariffConstants;
|
|
|
|
|
import ru.soune.nocopy.service.tariff.TariffInfoService;
|
2025-12-22 14:07:44 +07:00
|
|
|
|
2026-02-10 13:26:44 +07:00
|
|
|
import java.io.IOException;
|
|
|
|
|
import java.util.List;
|
2026-01-28 23:25:16 +07:00
|
|
|
import java.util.Map;
|
2026-02-10 13:26:44 +07:00
|
|
|
import java.util.concurrent.TimeoutException;
|
2026-01-28 23:25:16 +07:00
|
|
|
|
2025-12-22 14:07:44 +07:00
|
|
|
@Slf4j
|
|
|
|
|
@Component
|
|
|
|
|
@RequiredArgsConstructor
|
|
|
|
|
public class ImageFoundRequestHandler implements RequestHandler {
|
|
|
|
|
|
|
|
|
|
private final ObjectMapper objectMapper;
|
|
|
|
|
|
2026-02-11 17:41:48 +07:00
|
|
|
private final SearchImageService searchImageService;
|
2025-12-22 14:07:44 +07:00
|
|
|
|
2026-01-27 05:41:47 +07:00
|
|
|
private final GoogleVisionSearchService googleVisionSearchService;
|
|
|
|
|
|
2026-01-28 23:25:16 +07:00
|
|
|
private final CheckCounterService checkCounterService;
|
|
|
|
|
|
|
|
|
|
private final FileEntityRepository fileEntityRepository;
|
|
|
|
|
|
2026-02-05 17:25:50 +07:00
|
|
|
private final TariffInfoService tariffInfoService;
|
|
|
|
|
|
2026-02-05 00:37:59 +07:00
|
|
|
private final SearchApiToYandexResponseMapper mapper = new SearchApiToYandexResponseMapper();
|
|
|
|
|
|
2025-12-22 14:07:44 +07:00
|
|
|
@Override
|
|
|
|
|
public BaseResponse handle(BaseRequest request) throws Exception {
|
2025-12-22 14:42:27 +07:00
|
|
|
ImageSearchRequest imageSearchRequest = objectMapper.convertValue(request.getMessageBody(),
|
|
|
|
|
ImageSearchRequest.class);
|
2025-12-22 14:07:44 +07:00
|
|
|
|
|
|
|
|
String fileId = imageSearchRequest.getFileId();
|
|
|
|
|
|
2026-01-28 23:25:16 +07:00
|
|
|
FileEntity fileEntity = fileEntityRepository.findById(fileId)
|
|
|
|
|
.orElseThrow(() -> {
|
|
|
|
|
throw new NotValidFieldException("File not found", new BaseResponse(20007,
|
|
|
|
|
MessageCode.FILE_NOT_FOUND.getCode(), MessageCode.FILE_NOT_FOUND.getDescription(),
|
|
|
|
|
Map.of("fileId",fileId)));
|
|
|
|
|
});
|
|
|
|
|
|
2026-02-05 00:37:59 +07:00
|
|
|
// YandexSearchResponse response = yandexSearchService.searchByFileEntity(fileEntity);
|
2025-12-22 14:07:44 +07:00
|
|
|
|
2026-01-27 05:41:47 +07:00
|
|
|
//TODO uncommited when add billing
|
|
|
|
|
// GoogleVisionSearchResponse googleVisionSearchResponse = googleVisionSearchService.searchByFileEntity(fileId);
|
|
|
|
|
|
2026-02-11 17:41:48 +07:00
|
|
|
String searchResponseYandex;
|
|
|
|
|
String searchResponseGoogle;
|
2026-02-10 13:26:44 +07:00
|
|
|
try {
|
2026-02-11 17:53:02 +07:00
|
|
|
searchResponseYandex = searchImageService.searchReverseByPublicUrl(fileEntity, "yandex_reverse_image",
|
|
|
|
|
"visual_matches");
|
|
|
|
|
searchResponseGoogle = searchImageService.searchReverseByPublicUrl(fileEntity, "google_lens",
|
|
|
|
|
"exact_matches");
|
2026-02-10 13:26:44 +07:00
|
|
|
} catch (TimeoutException e) {
|
|
|
|
|
log.warn("Search timeout for file {}, returning empty results", fileId);
|
|
|
|
|
return new BaseResponse(request.getMsgId(), MessageCode.SUCCESS.getCode(),
|
|
|
|
|
"Search completed (partial)", Map.of(
|
|
|
|
|
"results", List.of(),
|
|
|
|
|
"total", 0,
|
|
|
|
|
"searchStatus", "timeout"
|
|
|
|
|
));
|
|
|
|
|
} catch (IOException e) {
|
|
|
|
|
log.error("Search failed for file {}", fileId, e);
|
|
|
|
|
return new BaseResponse(request.getMsgId(), 20007,
|
|
|
|
|
"Search service temporarily unavailable",
|
|
|
|
|
Map.of("fileId", fileId));
|
|
|
|
|
}
|
|
|
|
|
|
2026-02-05 17:25:50 +07:00
|
|
|
tariffInfoService.writeOffTokens(fileEntity.getUserId(), TariffConstants.TOKEN_VALUE_FOR_SEARCH);
|
|
|
|
|
|
2026-02-05 18:55:54 +07:00
|
|
|
checkCounterService.incrementCheckCount(fileEntity.getUserId(), fileEntity.getMimeType());
|
|
|
|
|
|
2026-02-10 16:23:49 +07:00
|
|
|
int page = imageSearchRequest.getPage() != null ? imageSearchRequest.getPage() : 1;
|
|
|
|
|
|
2026-02-11 17:41:48 +07:00
|
|
|
YandexSearchResponse yandexSearchResponse = mapper.mapToYandexResponse(searchResponseYandex, page, 5);
|
|
|
|
|
YandexSearchResponse googleSearchResponse = mapper.mapToYandexResponse(searchResponseGoogle, page, 5);
|
|
|
|
|
|
|
|
|
|
List<YandexSearchResponse.ImageResult> results = yandexSearchResponse.getImages();
|
|
|
|
|
results.addAll(googleSearchResponse.getImages());
|
|
|
|
|
yandexSearchResponse.setImages(results);
|
|
|
|
|
|
2025-12-22 14:07:44 +07:00
|
|
|
return new BaseResponse(request.getMsgId(), MessageCode.SUCCESS.getCode(),
|
2026-02-11 17:41:48 +07:00
|
|
|
MessageCode.SUCCESS.getDescription(), yandexSearchResponse);
|
2025-12-22 14:07:44 +07:00
|
|
|
}
|
|
|
|
|
}
|