mirror of
https://github.com/beetbox/beets.git
synced 2025-12-06 08:39:17 +01:00
66 lines
1.8 KiB
Python
66 lines
1.8 KiB
Python
"""Fixes file permissions after the file gets written on import. Put something
|
|
like the following in your config.yaml to configure:
|
|
|
|
permissions:
|
|
file: 644
|
|
"""
|
|
import os
|
|
from beets import config, util
|
|
from beets.plugins import BeetsPlugin
|
|
|
|
|
|
def convert_perm(perm):
|
|
"""If the perm is a int it will first convert it to a string and back
|
|
to an oct int. Else it just converts it to oct.
|
|
"""
|
|
if isinstance(perm, int):
|
|
return int(str(perm), 8)
|
|
else:
|
|
return int(perm, 8)
|
|
|
|
|
|
def check_permissions(path, permission):
|
|
"""Checks the permissions of a path.
|
|
"""
|
|
return oct(os.stat(path).st_mode & 0o777) == oct(permission)
|
|
|
|
|
|
class Permissions(BeetsPlugin):
|
|
def __init__(self):
|
|
super(Permissions, self).__init__()
|
|
|
|
# Adding defaults.
|
|
self.config.add({
|
|
u'file': 644
|
|
})
|
|
|
|
|
|
@Permissions.listen('item_imported')
|
|
@Permissions.listen('album_imported')
|
|
def permissions(lib, item=None, album=None):
|
|
"""Running the permission fixer.
|
|
"""
|
|
# Getting the config.
|
|
file_perm = config['permissions']['file'].get()
|
|
|
|
# Converts file permissions to oct.
|
|
file_perm = convert_perm(file_perm)
|
|
|
|
# Create chmod_queue.
|
|
chmod_queue = []
|
|
if item:
|
|
chmod_queue.append(item.path)
|
|
elif album:
|
|
for album_item in album.items():
|
|
chmod_queue.append(album_item.path)
|
|
|
|
# Setting permissions for every path in the queue.
|
|
for path in chmod_queue:
|
|
# Changing permissions on the destination path.
|
|
os.chmod(util.bytestring_path(path), file_perm)
|
|
|
|
# Checks if the destination path has the permissions configured.
|
|
if not check_permissions(util.bytestring_path(path), file_perm):
|
|
message = 'There was a problem setting permission on {}'.format(
|
|
path)
|
|
print(message)
|