mirror of
https://github.com/beetbox/beets.git
synced 2025-12-06 08:39:17 +01:00
48 lines
1.3 KiB
Python
48 lines
1.3 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 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('after_write')
|
|
def permissions(path):
|
|
"""Running the permission fixer.
|
|
"""
|
|
# Getting the config
|
|
file_perm = config['permissions']['file'].get()
|
|
|
|
# If the config 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(file_perm, int):
|
|
file_perm = int(str(file_perm), 8)
|
|
else:
|
|
file_perm = int(file_perm, 8)
|
|
|
|
# Changing permissions on the path.
|
|
os.chmod(util.bytestring_path(path), file_perm)
|
|
|
|
# Checks if the 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)
|