- 修复Redis认证 (配置密码) - 启动Python管理后台 (端口9531, 15个功能开关) - 统一版本号 0.2.7 - 更新docker-compose.yml (镜像版本/Redis URL/Admin服务)
27 lines
797 B
Python
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
|