mirror of
https://github.com/beetbox/beets.git
synced 2025-12-06 16:42:42 +01:00
This lets us use `self.config`. The previous version, which checked `beets.config['auto']`, was looking in the wrong scope.
71 lines
2.2 KiB
Python
71 lines
2.2 KiB
Python
# This file is part of beets.
|
|
# Copyright 2014, Matt Lichtenberg.
|
|
#
|
|
# Permission is hereby granted, free of charge, to any person obtaining
|
|
# a copy of this software and associated documentation files (the
|
|
# "Software"), to deal in the Software without restriction, including
|
|
# without limitation the rights to use, copy, modify, merge, publish,
|
|
# distribute, sublicense, and/or sell copies of the Software, and to
|
|
# permit persons to whom the Software is furnished to do so, subject to
|
|
# the following conditions:
|
|
#
|
|
# The above copyright notice and this permission notice shall be
|
|
# included in all copies or substantial portions of the Software.
|
|
|
|
"""Creates freedesktop.org-compliant .directory files on an album level.
|
|
"""
|
|
|
|
from beets.plugins import BeetsPlugin
|
|
from beets.ui import Subcommand
|
|
from beets.ui import decargs
|
|
|
|
import os
|
|
import logging
|
|
|
|
log = logging.getLogger('beets.freedesktop')
|
|
|
|
|
|
def process_query(lib, opts, args):
|
|
for album in lib.albums(decargs(args)):
|
|
process_album(album)
|
|
|
|
|
|
def process_album(album):
|
|
albumpath = album.item_dir()
|
|
if album.artpath:
|
|
fullartpath = album.artpath
|
|
artfile = os.path.split(fullartpath)[1]
|
|
create_file(albumpath, artfile)
|
|
else:
|
|
log.debug(u'freedesktop: album has no art')
|
|
|
|
|
|
def create_file(albumpath, artfile):
|
|
file_contents = "[Desktop Entry]\nIcon=./" + artfile
|
|
outfilename = os.path.join(albumpath, ".directory")
|
|
|
|
if not os.path.exists(outfilename):
|
|
file = open(outfilename, 'w')
|
|
file.write(file_contents)
|
|
file.close()
|
|
|
|
|
|
class FreedesktopPlugin(BeetsPlugin):
|
|
def __init__(self):
|
|
super(FreedesktopPlugin, self).__init__()
|
|
self.config.add({
|
|
'auto': False
|
|
})
|
|
self.register_listener('album_imported', self.imported)
|
|
|
|
def commands(self):
|
|
freedesktop_command = Subcommand("freedesktop",
|
|
help="Create .directory files")
|
|
freedesktop_command.func = process_query
|
|
return [freedesktop_command]
|
|
|
|
def imported(self, lib, album):
|
|
automatic = self.config['auto'].get(bool)
|
|
if not automatic:
|
|
return
|
|
process_album(album)
|