mirror of
https://github.com/jxxghp/MoviePilot.git
synced 2026-03-20 03:57:30 +08:00
89 lines
3.0 KiB
Python
89 lines
3.0 KiB
Python
from app.workflow.actions import BaseAction
|
||
from app.chain.subscribe import SubscribeChain
|
||
from app.core.config import settings, global_vars
|
||
from app.core.context import MediaInfo
|
||
from app.db.subscribe_oper import SubscribeOper
|
||
from app.log import logger
|
||
from app.schemas import ActionParams, ActionContext
|
||
|
||
|
||
class AddSubscribeParams(ActionParams):
|
||
"""
|
||
添加订阅参数
|
||
"""
|
||
pass
|
||
|
||
|
||
class AddSubscribeAction(BaseAction):
|
||
"""
|
||
添加订阅
|
||
"""
|
||
|
||
def __init__(self, action_id: str):
|
||
super().__init__(action_id)
|
||
self._added_subscribes = []
|
||
self._has_error = False
|
||
|
||
@classmethod
|
||
@property
|
||
def name(cls) -> str: # noqa
|
||
return "添加订阅"
|
||
|
||
@classmethod
|
||
@property
|
||
def description(cls) -> str: # noqa
|
||
return "根据媒体列表添加订阅"
|
||
|
||
@classmethod
|
||
@property
|
||
def data(cls) -> dict: # noqa
|
||
return AddSubscribeParams().model_dump()
|
||
|
||
@property
|
||
def success(self) -> bool:
|
||
return not self._has_error
|
||
|
||
def execute(self, workflow_id: int, params: dict, context: ActionContext) -> ActionContext:
|
||
"""
|
||
将medias中的信息添加订阅,如果订阅不存在的话
|
||
"""
|
||
_started = False
|
||
for media in context.medias:
|
||
if global_vars.is_workflow_stopped(workflow_id):
|
||
break
|
||
# 检查缓存
|
||
cache_key = f"{media.type}-{media.title}-{media.year}-{media.season}"
|
||
if self.check_cache(workflow_id, cache_key):
|
||
logger.info(f"{media.title} {media.year} 已添加过订阅,跳过")
|
||
continue
|
||
mediainfo = MediaInfo()
|
||
mediainfo.from_dict(media.model_dump())
|
||
subscribechain = SubscribeChain()
|
||
if subscribechain.exists(mediainfo):
|
||
logger.info(f"{media.title} 已存在订阅")
|
||
continue
|
||
# 添加订阅
|
||
_started = True
|
||
sid, message = subscribechain.add(mtype=mediainfo.type,
|
||
title=mediainfo.title,
|
||
year=mediainfo.year,
|
||
tmdbid=mediainfo.tmdb_id,
|
||
season=mediainfo.season,
|
||
doubanid=mediainfo.douban_id,
|
||
bangumiid=mediainfo.bangumi_id,
|
||
username=settings.SUPERUSER)
|
||
if sid:
|
||
self._added_subscribes.append(sid)
|
||
# 保存缓存
|
||
self.save_cache(workflow_id, cache_key)
|
||
|
||
if self._added_subscribes:
|
||
logger.info(f"已添加 {len(self._added_subscribes)} 个订阅")
|
||
for sid in self._added_subscribes:
|
||
context.subscribes.append(SubscribeOper().get(sid))
|
||
elif _started:
|
||
self._has_error = True
|
||
|
||
self.job_done(f"已添加 {len(self._added_subscribes)} 个订阅")
|
||
return context
|