mirror of
https://github.com/jxxghp/MoviePilot.git
synced 2026-08-12 01:04:35 +08:00
fix(download): restore classification for configured roots (#6135)
This commit is contained in:
@@ -137,9 +137,23 @@ class DownloadChain(ChainBase):
|
||||
logger.warn(str(err))
|
||||
return None, None, str(err)
|
||||
if re.match(r"^[A-Za-z]:/", validated_save_path):
|
||||
return storage, Path(validated_save_path), ""
|
||||
file_uri = FileURI.from_uri(validated_save_path)
|
||||
return file_uri.storage or storage, Path(file_uri.path), ""
|
||||
target_dir = Path(validated_save_path)
|
||||
else:
|
||||
file_uri = FileURI.from_uri(validated_save_path)
|
||||
storage = file_uri.storage or storage
|
||||
target_dir = Path(file_uri.path)
|
||||
|
||||
dir_info = DirectoryHelper().get_download_dir_by_save_path(
|
||||
media=media_info,
|
||||
save_path=validated_save_path,
|
||||
)
|
||||
if dir_info:
|
||||
target_dir = DownloadChain._append_download_classification(
|
||||
root_path=target_dir,
|
||||
dir_info=dir_info,
|
||||
media_info=media_info,
|
||||
)
|
||||
return storage, target_dir, ""
|
||||
|
||||
dir_info = DirectoryHelper().get_dir(media_info, include_unsorted=True)
|
||||
storage = dir_info.storage if dir_info else storage
|
||||
@@ -147,15 +161,33 @@ class DownloadChain(ChainBase):
|
||||
logger.error(f"未找到下载目录:{media_info.type.value} {media_info.title_year}")
|
||||
return None, None, "未找到下载目录"
|
||||
|
||||
if not dir_info.media_type and dir_info.download_type_folder:
|
||||
download_dir = Path(dir_info.download_path) / media_info.type.value
|
||||
else:
|
||||
download_dir = Path(dir_info.download_path)
|
||||
download_dir = DownloadChain._append_download_classification(
|
||||
root_path=Path(dir_info.download_path),
|
||||
dir_info=dir_info,
|
||||
media_info=media_info,
|
||||
)
|
||||
return storage, download_dir, ""
|
||||
|
||||
@staticmethod
|
||||
def _append_download_classification(
|
||||
root_path: Path,
|
||||
dir_info: schemas.TransferDirectoryConf,
|
||||
media_info: MediaInfo,
|
||||
) -> Path:
|
||||
"""
|
||||
按下载目录配置拼装媒体类型和类别子目录。
|
||||
|
||||
:param root_path: 下载根目录
|
||||
:param dir_info: 下载目录配置
|
||||
:param media_info: 媒体信息
|
||||
:return: 应传给存储或下载器的媒体下载目录
|
||||
"""
|
||||
download_dir = root_path
|
||||
if not dir_info.media_type and dir_info.download_type_folder:
|
||||
download_dir = download_dir / media_info.type.value
|
||||
if not dir_info.media_category and dir_info.download_category_folder and media_info.category:
|
||||
download_dir = download_dir / media_info.category
|
||||
|
||||
return storage, download_dir, ""
|
||||
return download_dir
|
||||
|
||||
@staticmethod
|
||||
def _upload_subtitle_file(
|
||||
@@ -785,36 +817,17 @@ class DownloadChain(ChainBase):
|
||||
# 获取种子文件的文件夹名和文件清单
|
||||
_folder_name, _file_list = TorrentHelper().get_fileinfo_from_torrent_content(torrent_content)
|
||||
|
||||
storage = 'local'
|
||||
# 下载目录
|
||||
if save_path is not None:
|
||||
download_dir = Path(save_path)
|
||||
else:
|
||||
# 根据媒体信息查询下载目录配置
|
||||
dir_info = DirectoryHelper().get_dir(_media, include_unsorted=True)
|
||||
storage = dir_info.storage if dir_info else storage
|
||||
# 拼装子目录
|
||||
if dir_info:
|
||||
# 一级目录
|
||||
if not dir_info.media_type and dir_info.download_type_folder:
|
||||
# 一级自动分类
|
||||
download_dir = Path(dir_info.download_path) / _media.type.value
|
||||
else:
|
||||
# 一级不分类
|
||||
download_dir = Path(dir_info.download_path)
|
||||
|
||||
# 二级目录
|
||||
if not dir_info.media_category and dir_info.download_category_folder and _media and _media.category:
|
||||
# 二级自动分类
|
||||
download_dir = download_dir / _media.category
|
||||
else:
|
||||
# 未找到下载目录,且没有自定义下载目录
|
||||
logger.error(f"未找到下载目录:{_media.type.value} {_media.title_year}")
|
||||
storage, download_dir, error_msg = self._resolve_media_download_dir(
|
||||
media_info=_media,
|
||||
save_path=save_path,
|
||||
)
|
||||
if not download_dir:
|
||||
if error_msg == "未找到下载目录":
|
||||
self.messagehelper.put(f"{_media.type.value} {_media.title_year} 未找到下载目录!",
|
||||
title="下载失败", role="system")
|
||||
return (None, "未找到下载目录") if return_detail else None
|
||||
fileURI = FileURI(storage=storage, path=download_dir.as_posix())
|
||||
download_dir = Path(fileURI.uri)
|
||||
return (None, error_msg or "未找到下载目录") if return_detail else None
|
||||
file_uri = FileURI(storage=storage, path=download_dir.as_posix())
|
||||
download_dir = Path(file_uri.uri)
|
||||
|
||||
# 添加下载
|
||||
result: Optional[tuple] = self.download(content=torrent_content,
|
||||
|
||||
@@ -41,6 +41,43 @@ class DirectoryHelper:
|
||||
"""
|
||||
return [d for d in self.get_download_dirs() if d.storage == "local"]
|
||||
|
||||
def get_download_dir_by_save_path(
|
||||
self,
|
||||
media: Optional[MediaInfo],
|
||||
save_path: str,
|
||||
) -> Optional[schemas.TransferDirectoryConf]:
|
||||
"""
|
||||
按媒体信息和精确保存根路径匹配下载目录配置。
|
||||
|
||||
仅配置根目录本身继承自动分类规则;根目录下的自定义子目录保持调用方指定的完整路径。
|
||||
|
||||
:param media: 媒体信息
|
||||
:param save_path: 已选择的下载保存目录,支持本地路径或远端 FileURI
|
||||
:return: 匹配的下载目录配置
|
||||
"""
|
||||
value = str(save_path or "").strip()
|
||||
try:
|
||||
storage, raw_path = _split_file_uri(value)
|
||||
target_style, target_path = _normalize_download_path(raw_path, storage)
|
||||
except ValueError:
|
||||
return None
|
||||
|
||||
media_type = media.type.value if media else None
|
||||
for dir_info in self.get_download_dirs():
|
||||
root = _normalize_download_root(dir_info)
|
||||
if not root:
|
||||
continue
|
||||
root_storage, root_style, root_path = root
|
||||
if storage != root_storage or target_style != root_style or target_path != root_path:
|
||||
continue
|
||||
if not media_type or not dir_info.media_type:
|
||||
return dir_info
|
||||
if dir_info.media_type == media_type and not dir_info.media_category:
|
||||
return dir_info
|
||||
if dir_info.media_type == media_type and dir_info.media_category == media.category:
|
||||
return dir_info
|
||||
return None
|
||||
|
||||
def get_library_dirs(self) -> List[schemas.TransferDirectoryConf]:
|
||||
"""
|
||||
获取所有媒体库目录
|
||||
|
||||
Reference in New Issue
Block a user