yidun送检功能

This commit is contained in:
2026-05-15 10:28:17 +08:00
parent 51d26aeee7
commit c8cc19e8e7
29 changed files with 5133 additions and 121 deletions

View File

@@ -13,10 +13,10 @@ rate:
database:
default:
- type: "pgsql"
host: "localhost"
port: "5432"
host: "116.204.74.41"
port: "15432"
user: "postgres"
pass: "123456"
pass: "Bjang09@686^*^"
name: "cid"
role: "master"
maxIdle: "5"
@@ -29,6 +29,25 @@ database:
updatedAt: "updated_at"
deletedAt: "deleted_at"
timeMaintainDisabled: false
# data-engine 数据库配置(用于存放 tencent_image, tencent_video 等送检表)
dataEngine:
- type: "pgsql"
host: "116.204.74.41"
port: "15432"
user: "postgres"
pass: "Bjang09@686^*^"
name: "dataengine"
role: "master"
maxIdle: "5"
maxOpen: "20"
maxLifetime: "60s"
charset: "utf8mb4"
debug: true
dryRun: false
createdAt: "created_at"
updatedAt: "updated_at"
deletedAt: "deleted_at"
timeMaintainDisabled: false
redis:
# 集群模式配置方法
@@ -49,13 +68,20 @@ jaeger: #链路追踪
addr: 116.204.74.41:4318
yidun:
# 音视频检测配置
# 回调模式开关: true=使用回调模式(需要公网地址), false=使用轮询模式
callback_mode: false
# 视频检测配置
video:
business_id: "YD00256761935486"
secret_id: "f58a38341ca6227014df7c3bf0e6f16f"
secret_key: "526aa631ba5d518aedeb70b5a3b67371"
region: "cn-hangzhou"
protocol: "https"
max_retry_count: 3
# 易盾回调地址(用于接收检测结果推送)
# 替换为实际可访问的地址
callback_url: "http://your-domain.com:3001/yidun/callback/receiveVideo"
# 图片检测配置
image:
@@ -65,6 +91,9 @@ yidun:
region: "cn-hangzhou"
protocol: "https"
max_retry_count: 3
# 易盾回调地址(用于接收检测结果推送)
# 替换为实际可访问的地址
callback_url: "http://your-domain.com:3001/yidun/callback/receiveImage"
# 文本检测配置(如需要请补充)
text:
@@ -73,4 +102,20 @@ yidun:
secret_key: "YOUR_TEXT_SECRET_KEY"
region: "cn-hangzhou"
protocol: "https"
max_retry_count: 3
max_retry_count: 3
# 易盾回调地址(用于接收检测结果推送)
# 替换为实际可访问的地址
callback_url: "http://your-domain.com:3001/yidun/callback/receiveText"
# 内容送检定时任务配置
content_check:
# 是否启动定时送检任务true=启动定时任务自动送检false=不启动仅通过API手动送检
scheduler_enabled: false
# 每批处理数量
batch_size: 10
# 是否启用图片检测
image_enabled: false
# 是否启用视频检测
video_enabled: false
# 定时任务执行间隔(秒)
interval_seconds: 30