mirror of
https://github.com/jxxghp/MoviePilot.git
synced 2026-03-20 03:57:30 +08:00
160 lines
4.7 KiB
Python
160 lines
4.7 KiB
Python
import pickle
|
||
import traceback
|
||
from pathlib import Path
|
||
from threading import RLock
|
||
|
||
from app.core.cache import TTLCache
|
||
from app.core.config import settings
|
||
from app.core.meta import MetaBase
|
||
from app.log import logger
|
||
from app.schemas.types import MediaType
|
||
from app.utils.singleton import WeakSingleton
|
||
|
||
lock = RLock()
|
||
|
||
|
||
class TmdbCache(metaclass=WeakSingleton):
|
||
"""
|
||
TMDB缓存数据
|
||
{
|
||
"id": '',
|
||
"title": '',
|
||
"year": '',
|
||
"type": MediaType
|
||
}
|
||
"""
|
||
# TMDB缓存过期
|
||
_tmdb_cache_expire: bool = True
|
||
|
||
def __init__(self):
|
||
self.maxsize = settings.CONF.douban
|
||
self.ttl = settings.CONF.meta
|
||
self.region = "__tmdb_cache__"
|
||
self._meta_filepath = settings.TEMP_PATH / self.region
|
||
# 初始化缓存
|
||
self._cache = TTLCache(region=self.region, maxsize=self.maxsize, ttl=self.ttl)
|
||
# 非Redis加载本地缓存数据
|
||
if not self._cache.is_redis():
|
||
for key, value in self.__load(self._meta_filepath).items():
|
||
self._cache.set(key, value)
|
||
|
||
def clear(self):
|
||
"""
|
||
清空所有TMDB缓存
|
||
"""
|
||
with lock:
|
||
self._cache.clear()
|
||
|
||
@staticmethod
|
||
def __get_key(meta: MetaBase) -> str:
|
||
"""
|
||
获取缓存KEY
|
||
"""
|
||
return f"[{meta.type.value if meta.type else '未知'}][{settings.TMDB_LOCALE}]{meta.tmdbid or meta.name}-{meta.year}-{meta.begin_season}"
|
||
|
||
def get(self, meta: MetaBase):
|
||
"""
|
||
根据KEY值获取缓存值
|
||
"""
|
||
key = self.__get_key(meta)
|
||
|
||
with lock:
|
||
return self._cache.get(key) or {}
|
||
|
||
def delete(self, key: str) -> dict:
|
||
"""
|
||
删除缓存信息
|
||
@param key: 缓存key
|
||
@return: 被删除的缓存内容
|
||
"""
|
||
with lock:
|
||
redis_data = self._cache.get(key)
|
||
if redis_data:
|
||
self._cache.delete(key)
|
||
return redis_data
|
||
return {}
|
||
|
||
def modify(self, key: str, title: str) -> dict:
|
||
"""
|
||
修改缓存信息
|
||
@param key: 缓存key
|
||
@param title: 标题
|
||
@return: 被修改后缓存内容
|
||
"""
|
||
with lock:
|
||
redis_data = self._cache.get(key)
|
||
if redis_data:
|
||
redis_data['title'] = title
|
||
self._cache.set(key, redis_data)
|
||
return redis_data
|
||
return {}
|
||
|
||
@staticmethod
|
||
def __load(path: Path) -> dict:
|
||
"""
|
||
从文件中加载缓存
|
||
"""
|
||
try:
|
||
if path.exists():
|
||
with open(path, 'rb') as f:
|
||
data = pickle.load(f)
|
||
return data
|
||
except Exception as e:
|
||
logger.error(f'加载缓存失败:{str(e)} - {traceback.format_exc()}')
|
||
return {}
|
||
|
||
def update(self, meta: MetaBase, info: dict) -> None:
|
||
"""
|
||
新增或更新缓存条目
|
||
"""
|
||
key = self.__get_key(meta)
|
||
if info:
|
||
# 缓存标题
|
||
cache_title = info.get("title") \
|
||
if info.get("media_type") == MediaType.MOVIE else info.get("name")
|
||
# 缓存年份
|
||
cache_year = info.get('release_date') \
|
||
if info.get("media_type") == MediaType.MOVIE else info.get('first_air_date')
|
||
if cache_year:
|
||
cache_year = cache_year[:4]
|
||
|
||
with lock:
|
||
# 缓存数据
|
||
cache_data = {
|
||
"id": info.get("id"),
|
||
"type": info.get("media_type"),
|
||
"year": cache_year,
|
||
"title": cache_title,
|
||
"poster_path": info.get("poster_path"),
|
||
"backdrop_path": info.get("backdrop_path")
|
||
}
|
||
self._cache.set(key, cache_data)
|
||
|
||
elif info is not None:
|
||
# None时不缓存,此时代表网络错误,允许重复请求
|
||
with lock:
|
||
self._cache.set(key, {"id": 0})
|
||
|
||
def save(self, force: bool = False) -> None:
|
||
"""
|
||
保存缓存数据到文件
|
||
"""
|
||
# Redis不需要保存到本地文件
|
||
if self._cache.is_redis():
|
||
return
|
||
|
||
# Redis不可用时,保存到本地文件
|
||
meta_data = self.__load(self._meta_filepath)
|
||
# 当前缓存,去除无法识别
|
||
new_meta_data = {k: v for k, v in self._cache.items() if v.get("id")}
|
||
|
||
if not force \
|
||
and meta_data.keys() == new_meta_data.keys():
|
||
return
|
||
|
||
with open(self._meta_filepath, 'wb') as f:
|
||
pickle.dump(new_meta_data, f, pickle.HIGHEST_PROTOCOL) # type: ignore
|
||
|
||
def __del__(self):
|
||
self.save()
|