Skip to content

Commit 4b84406

Browse files
committed
Implement multi-tag genres field
1 parent d3c6296 commit 4b84406

File tree

3 files changed

+111
-115
lines changed

3 files changed

+111
-115
lines changed

beets/autotag/hooks.py

+6-6
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,7 @@ def __init__(
109109
country: Optional[str] = None,
110110
style: Optional[str] = None,
111111
genre: Optional[str] = None,
112+
genres: Optional[str] = None,
112113
albumstatus: Optional[str] = None,
113114
media: Optional[str] = None,
114115
albumdisambig: Optional[str] = None,
@@ -152,6 +153,7 @@ def __init__(
152153
self.country = country
153154
self.style = style
154155
self.genre = genre
156+
self.genres = genres
155157
self.albumstatus = albumstatus
156158
self.media = media
157159
self.albumdisambig = albumdisambig
@@ -221,6 +223,7 @@ def __init__(
221223
bpm: Optional[str] = None,
222224
initial_key: Optional[str] = None,
223225
genre: Optional[str] = None,
226+
genres: Optional[str] = None,
224227
album: Optional[str] = None,
225228
**kwargs,
226229
):
@@ -255,6 +258,7 @@ def __init__(
255258
self.bpm = bpm
256259
self.initial_key = initial_key
257260
self.genre = genre
261+
self.genres = genres
258262
self.album = album
259263
self.update(kwargs)
260264

@@ -684,15 +688,11 @@ def album_candidates(
684688
if config["musicbrainz"]["enabled"]:
685689
# Base candidates if we have album and artist to match.
686690
if artist and album:
687-
yield from invoke_mb(
688-
mb.match_album, artist, album, len(items), extra_tags
689-
)
691+
yield from invoke_mb(mb.match_album, artist, album, len(items), extra_tags)
690692

691693
# Also add VA matches from MusicBrainz where appropriate.
692694
if va_likely and album:
693-
yield from invoke_mb(
694-
mb.match_album, None, album, len(items), extra_tags
695-
)
695+
yield from invoke_mb(mb.match_album, None, album, len(items), extra_tags)
696696

697697
# Candidates from plugins.
698698
yield from plugins.candidates(items, artist, album, va_likely, extra_tags)

beets/library.py

+13-30
Original file line numberDiff line numberDiff line change
@@ -125,9 +125,7 @@ def is_path_query(cls, query_part):
125125

126126
# Test both `sep` and `altsep` (i.e., both slash and backslash on
127127
# Windows).
128-
if not (
129-
os.sep in query_part or (os.altsep and os.altsep in query_part)
130-
):
128+
if not (os.sep in query_part or (os.altsep and os.altsep in query_part)):
131129
return False
132130

133131
if cls.force_implicit_query_detection:
@@ -450,10 +448,7 @@ def album_keys(self):
450448
if self.included_keys == self.ALL_KEYS:
451449
# Performance note: this triggers a database query.
452450
for key in self.album.keys(computed=True):
453-
if (
454-
key in Album.item_keys
455-
or key not in self.item._fields.keys()
456-
):
451+
if key in Album.item_keys or key not in self.item._fields.keys():
457452
album_keys.append(key)
458453
else:
459454
album_keys = self.included_keys
@@ -531,6 +526,7 @@ class Item(LibModel):
531526
"albumartist_credit": types.STRING,
532527
"albumartists_credit": types.MULTI_VALUE_DSV,
533528
"genre": types.STRING,
529+
"genres": types.MULTI_VALUE_DSV,
534530
"style": types.STRING,
535531
"discogs_albumid": types.INTEGER,
536532
"discogs_artistid": types.INTEGER,
@@ -622,9 +618,7 @@ class Item(LibModel):
622618
# Any kind of field (fixed, flexible, and computed) may be a media
623619
# field. Only these fields are read from disk in `read` and written in
624620
# `write`.
625-
_media_fields = set(MediaFile.readable_fields()).intersection(
626-
_fields.keys()
627-
)
621+
_media_fields = set(MediaFile.readable_fields()).intersection(_fields.keys())
628622

629623
# Set of item fields that are backed by *writable* `MediaFile` tag
630624
# fields.
@@ -736,8 +730,7 @@ def __repr__(self):
736730
return "{}({})".format(
737731
type(self).__name__,
738732
", ".join(
739-
"{}={!r}".format(k, self[k])
740-
for k in self.keys(with_album=False)
733+
"{}={!r}".format(k, self[k]) for k in self.keys(with_album=False)
741734
),
742735
)
743736

@@ -931,19 +924,13 @@ def move_file(self, dest, operation=MoveOperation.MOVE):
931924
destination=dest,
932925
)
933926
util.move(self.path, dest)
934-
plugins.send(
935-
"item_moved", item=self, source=self.path, destination=dest
936-
)
927+
plugins.send("item_moved", item=self, source=self.path, destination=dest)
937928
elif operation == MoveOperation.COPY:
938929
util.copy(self.path, dest)
939-
plugins.send(
940-
"item_copied", item=self, source=self.path, destination=dest
941-
)
930+
plugins.send("item_copied", item=self, source=self.path, destination=dest)
942931
elif operation == MoveOperation.LINK:
943932
util.link(self.path, dest)
944-
plugins.send(
945-
"item_linked", item=self, source=self.path, destination=dest
946-
)
933+
plugins.send("item_linked", item=self, source=self.path, destination=dest)
947934
elif operation == MoveOperation.HARDLINK:
948935
util.hardlink(self.path, dest)
949936
plugins.send(
@@ -1173,6 +1160,7 @@ class Album(LibModel):
11731160
"albumartists_credit": types.MULTI_VALUE_DSV,
11741161
"album": types.STRING,
11751162
"genre": types.STRING,
1163+
"genres": types.MULTI_VALUE_DSV,
11761164
"style": types.STRING,
11771165
"discogs_albumid": types.INTEGER,
11781166
"discogs_artistid": types.INTEGER,
@@ -1229,6 +1217,7 @@ class Album(LibModel):
12291217
"albumartists_credit",
12301218
"album",
12311219
"genre",
1220+
"genres",
12321221
"style",
12331222
"discogs_albumid",
12341223
"discogs_artistid",
@@ -1451,9 +1440,7 @@ def art_destination(self, image, item_dir=None):
14511440
subpath = util.asciify_path(
14521441
subpath, beets.config["path_sep_replace"].as_str()
14531442
)
1454-
subpath = util.sanitize_path(
1455-
subpath, replacements=self._db.replacements
1456-
)
1443+
subpath = util.sanitize_path(subpath, replacements=self._db.replacements)
14571444
subpath = bytestring_path(subpath)
14581445

14591446
_, ext = os.path.splitext(image)
@@ -1681,16 +1668,12 @@ def _fetch(self, model_cls, query, sort=None):
16811668
@staticmethod
16821669
def get_default_album_sort():
16831670
"""Get a :class:`Sort` object for albums from the config option."""
1684-
return dbcore.sort_from_strings(
1685-
Album, beets.config["sort_album"].as_str_seq()
1686-
)
1671+
return dbcore.sort_from_strings(Album, beets.config["sort_album"].as_str_seq())
16871672

16881673
@staticmethod
16891674
def get_default_item_sort():
16901675
"""Get a :class:`Sort` object for items from the config option."""
1691-
return dbcore.sort_from_strings(
1692-
Item, beets.config["sort_item"].as_str_seq()
1693-
)
1676+
return dbcore.sort_from_strings(Item, beets.config["sort_item"].as_str_seq())
16941677

16951678
def albums(self, query=None, sort=None) -> Results[Album]:
16961679
"""Get :class:`Album` objects matching the query."""

0 commit comments

Comments
 (0)