This commit is contained in:
Leo
2026-01-03 12:20:09 +08:00
parent 4ba1f6a572
commit e9747e6af2
4 changed files with 292 additions and 2 deletions

View File

@@ -3,14 +3,17 @@ package com.ruoyi.web.controller.publicapi;
import com.ruoyi.common.annotation.Anonymous;
import com.ruoyi.common.core.controller.BaseController;
import com.ruoyi.common.core.domain.AjaxResult;
import com.ruoyi.common.core.page.TableDataInfo;
import com.alibaba.fastjson2.JSON;
import com.alibaba.fastjson2.JSONObject;
import com.ruoyi.common.utils.http.HttpUtils;
import com.ruoyi.jarvis.domain.dto.CommentCallHistory;
import com.ruoyi.jarvis.service.ICommentService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.web.bind.annotation.*;
import javax.servlet.http.HttpServletRequest;
import java.util.*;
/**
@@ -66,9 +69,10 @@ public class CommentPublicController extends BaseController {
* 入参productType型号/类型)
*/
@PostMapping("/generate")
public AjaxResult generate(@RequestBody Map<String, String> body) {
public AjaxResult generate(@RequestBody Map<String, String> body, HttpServletRequest request) {
boolean success = false;
String productType = null;
String clientIp = getClientIp(request);
try {
String url = getJdBase() + "/comment/generate";
JSONObject param = new JSONObject();
@@ -84,13 +88,110 @@ public class CommentPublicController extends BaseController {
} catch (Exception e) {
return AjaxResult.error("generate failed: " + e.getMessage());
} finally {
// 记录接口调用统计
// 记录接口调用统计和历史
if (commentService != null && productType != null) {
commentService.recordApiCall("jd", productType, success);
commentService.recordApiCallHistory(productType, clientIp);
}
}
}
/**
* 获取当前IP地址
*/
@GetMapping("/ip")
public AjaxResult getIp(HttpServletRequest request) {
try {
String ip = getClientIp(request);
Map<String, String> result = new HashMap<>();
result.put("ip", ip);
return AjaxResult.success(result);
} catch (Exception e) {
return AjaxResult.error("获取IP失败: " + e.getMessage());
}
}
/**
* 获取使用统计(今天/7天/30天/累计)
*/
@GetMapping("/usage-statistics")
public AjaxResult getUsageStatistics() {
try {
if (commentService != null) {
Map<String, Long> statistics = commentService.getUsageStatistics();
return AjaxResult.success(statistics);
} else {
Map<String, Long> statistics = new HashMap<>();
statistics.put("today", 0L);
statistics.put("last7Days", 0L);
statistics.put("last30Days", 0L);
statistics.put("total", 0L);
return AjaxResult.success(statistics);
}
} catch (Exception e) {
return AjaxResult.error("获取使用统计失败: " + e.getMessage());
}
}
/**
* 获取历史记录
*/
@GetMapping("/history")
public TableDataInfo getHistory(@RequestParam(value = "pageNum", defaultValue = "1") Integer pageNum,
@RequestParam(value = "pageSize", defaultValue = "20") Integer pageSize) {
try {
if (commentService != null) {
List<CommentCallHistory> historyList = commentService.getApiCallHistory(pageNum, pageSize);
TableDataInfo dataTable = new TableDataInfo();
dataTable.setCode(200);
dataTable.setMsg("查询成功");
dataTable.setRows(historyList);
dataTable.setTotal(historyList.size()); // 注意:这里返回的是当前页的数量,实际总数可能需要单独查询
return dataTable;
} else {
TableDataInfo dataTable = new TableDataInfo();
dataTable.setCode(200);
dataTable.setMsg("查询成功");
dataTable.setRows(new ArrayList<>());
dataTable.setTotal(0);
return dataTable;
}
} catch (Exception e) {
TableDataInfo dataTable = new TableDataInfo();
dataTable.setCode(500);
dataTable.setMsg("获取历史记录失败: " + e.getMessage());
return dataTable;
}
}
/**
* 获取客户端真实IP地址
* 考虑代理和负载均衡的情况
*/
private String getClientIp(HttpServletRequest request) {
String ip = request.getHeader("X-Forwarded-For");
if (ip == null || ip.isEmpty() || "unknown".equalsIgnoreCase(ip)) {
ip = request.getHeader("Proxy-Client-IP");
}
if (ip == null || ip.isEmpty() || "unknown".equalsIgnoreCase(ip)) {
ip = request.getHeader("WL-Proxy-Client-IP");
}
if (ip == null || ip.isEmpty() || "unknown".equalsIgnoreCase(ip)) {
ip = request.getHeader("HTTP_CLIENT_IP");
}
if (ip == null || ip.isEmpty() || "unknown".equalsIgnoreCase(ip)) {
ip = request.getHeader("HTTP_X_FORWARDED_FOR");
}
if (ip == null || ip.isEmpty() || "unknown".equalsIgnoreCase(ip)) {
ip = request.getRemoteAddr();
}
// 对于通过多个代理的情况第一个IP为客户端真实IP
if (ip != null && ip.contains(",")) {
ip = ip.substring(0, ip.indexOf(",")).trim();
}
return ip;
}
}