update Beets

This commit is contained in:
AdeHub
2024-08-24 16:44:41 +12:00
parent a63098a919
commit 046d4d82b4
116 changed files with 17353 additions and 9964 deletions
+20 -19
View File
@@ -17,38 +17,40 @@
import re
from beets import config
from beets.util import bytestring_path
from beets.plugins import BeetsPlugin
from beets.importer import SingletonImportTask
from beets.plugins import BeetsPlugin
from beets.util import bytestring_path
class FileFilterPlugin(BeetsPlugin):
def __init__(self):
super().__init__()
self.register_listener('import_task_created',
self.import_task_created_event)
self.config.add({
'path': '.*'
})
self.register_listener(
"import_task_created", self.import_task_created_event
)
self.config.add({"path": ".*"})
self.path_album_regex = \
self.path_singleton_regex = \
re.compile(bytestring_path(self.config['path'].get()))
self.path_album_regex = self.path_singleton_regex = re.compile(
bytestring_path(self.config["path"].get())
)
if 'album_path' in self.config:
if "album_path" in self.config:
self.path_album_regex = re.compile(
bytestring_path(self.config['album_path'].get()))
bytestring_path(self.config["album_path"].get())
)
if 'singleton_path' in self.config:
if "singleton_path" in self.config:
self.path_singleton_regex = re.compile(
bytestring_path(self.config['singleton_path'].get()))
bytestring_path(self.config["singleton_path"].get())
)
def import_task_created_event(self, session, task):
if task.items and len(task.items) > 0:
items_to_import = []
for item in task.items:
if self.file_filter(item['path']):
if self.file_filter(item["path"]):
items_to_import.append(item)
if len(items_to_import) > 0:
task.items = items_to_import
@@ -58,7 +60,7 @@ class FileFilterPlugin(BeetsPlugin):
return []
elif isinstance(task, SingletonImportTask):
if not self.file_filter(task.item['path']):
if not self.file_filter(task.item["path"]):
return []
# If not filtered, return the original task unchanged.
@@ -68,10 +70,9 @@ class FileFilterPlugin(BeetsPlugin):
"""Checks if the configured regular expressions allow the import
of the file given in full_path.
"""
import_config = dict(config['import'])
import_config = dict(config["import"])
full_path = bytestring_path(full_path)
if 'singletons' not in import_config or not import_config[
'singletons']:
if "singletons" not in import_config or not import_config["singletons"]:
# Album
return self.path_album_regex.match(full_path) is not None
else: