Files
CloudSearch/cloudsearch_transfer/adapter/cloud189/cleanup.py
admin 83cbfaf03f v0.2.7: 修复Redis连接 + 启动管理后台
- 修复Redis认证 (配置密码)
- 启动Python管理后台 (端口9531, 15个功能开关)
- 统一版本号 0.2.7
- 更新docker-compose.yml (镜像版本/Redis URL/Admin服务)
2026-05-17 02:22:18 +08:00

27 lines
797 B
Python

"""天翼云盘数据清理 v1.0.0"""
import logging
from typing import List
logger = logging.getLogger(__name__)
class Cloud189Cleanup:
API_BASE = "https://cloud.189.cn/api/open/file"
def delete_files(self, session, credential_mgr, file_ids: List[str]) -> bool:
try:
resp = session.post(
f"{self.API_BASE}/deleteFiles.action",
data={"fileIdList": ",".join(file_ids)},
timeout=30,
)
return resp.json().get("res_code") == 0
except Exception as e:
logger.error(f"189 delete failed: {e}")
return False
def filter_ad_ids(self, file_ids: List[str], file_names: List[str],
banned_keywords: List[str]) -> List[str]:
return file_ids