mirror of
https://github.com/beetbox/beets.git
synced 2026-01-19 14:45:17 +01:00
Refactored token generation and updated comments based on suggestions.
Also updated documentation to note the password options.
This commit is contained in:
parent
1690c08e77
commit
5a38e1b35c
2 changed files with 35 additions and 51 deletions
|
|
@ -37,51 +37,42 @@ from beets.plugins import BeetsPlugin
|
|||
__author__ = 'https://github.com/maffo999'
|
||||
|
||||
|
||||
def build_payload():
|
||||
""" To avoid sending plaintext passwords, authentication will be
|
||||
performed via username, a token, and a 6 random
|
||||
letters/numbers sequence.
|
||||
The token is the concatenation of your password and the 6 random
|
||||
letters/numbers (the salt) which is hashed with MD5.
|
||||
"""
|
||||
def create_token():
|
||||
""" Creates salt and token from given password.
|
||||
|
||||
user = config['subsonic']['user'].as_str()
|
||||
:return: The generated salt and hashed token
|
||||
"""
|
||||
password = config['subsonic']['pass'].as_str()
|
||||
|
||||
# Pick the random sequence and salt the password
|
||||
r = string.ascii_letters + string.digits
|
||||
salt = "".join([random.choice(r) for n in range(6)])
|
||||
t = password + salt
|
||||
token = hashlib.md5()
|
||||
token.update(t.encode('utf-8'))
|
||||
salt = "".join([random.choice(r) for _ in range(6)])
|
||||
salted_password = password + salt
|
||||
token = hashlib.md5().update(salted_password.encode('utf-8')).hexdigest()
|
||||
|
||||
# Put together the payload of the request to the server and the URL
|
||||
return {
|
||||
'u': user,
|
||||
't': token.hexdigest(),
|
||||
's': salt,
|
||||
'v': '1.15.0', # Subsonic 6.1 and newer.
|
||||
'c': 'beets'
|
||||
}
|
||||
return salt, token
|
||||
|
||||
|
||||
def formal_url():
|
||||
""" Formats URL to send request to Subsonic
|
||||
DEPRECATED schema, host, port, contextpath; use ${url}
|
||||
def format_url():
|
||||
""" Get the Subsonic URL to trigger a scan. Uses either the url
|
||||
config option or the deprecated host, port, and context_path config
|
||||
options together.
|
||||
|
||||
:return: Endpoint for updating Subsonic
|
||||
"""
|
||||
|
||||
host = config['subsonic']['host'].as_str()
|
||||
port = config['subsonic']['port'].get(int)
|
||||
|
||||
context_path = config['subsonic']['contextpath'].as_str()
|
||||
if context_path == '/':
|
||||
context_path = ''
|
||||
|
||||
url = config['subsonic']['url'].as_str()
|
||||
if url and url.endsWith('/'):
|
||||
url = url[:-1]
|
||||
|
||||
# @deprecated("Use url config option instead")
|
||||
if not url:
|
||||
host = config['subsonic']['host'].as_str()
|
||||
port = config['subsonic']['port'].get(int)
|
||||
context_path = config['subsonic']['contextpath'].as_str()
|
||||
if context_path == '/':
|
||||
context_path = ''
|
||||
url = "http://{}:{}{}".format(host, port, context_path)
|
||||
|
||||
return url + '/rest/startScan'
|
||||
|
|
@ -105,8 +96,17 @@ class SubsonicUpdate(BeetsPlugin):
|
|||
self.register_listener('import', self.start_scan)
|
||||
|
||||
def start_scan(self):
|
||||
url = formal_url()
|
||||
payload = build_payload()
|
||||
user = config['subsonic']['user'].as_str()
|
||||
url = format_url()
|
||||
salt, token = create_token()
|
||||
|
||||
payload = {
|
||||
'u': user,
|
||||
't': token,
|
||||
's': salt,
|
||||
'v': '1.15.0', # Subsonic 6.1 and newer.
|
||||
'c': 'beets'
|
||||
}
|
||||
|
||||
response = requests.post(url, params=payload)
|
||||
|
||||
|
|
@ -117,4 +117,4 @@ class SubsonicUpdate(BeetsPlugin):
|
|||
else:
|
||||
self._log.error(
|
||||
u'Generic error, please try again later [Status Code: {}]'
|
||||
.format(response.status_code))
|
||||
.format(response.status_code))
|
||||
|
|
|
|||
|
|
@ -13,17 +13,11 @@ You can do that using a ``subsonic:`` section in your ``config.yaml``,
|
|||
which looks like this::
|
||||
|
||||
subsonic:
|
||||
url: https://mydomain.com:443/subsonic
|
||||
url: https://example.com:443/subsonic
|
||||
user: username
|
||||
pass: password
|
||||
|
||||
# DEPRECATED
|
||||
subsonic:
|
||||
host: X.X.X.X
|
||||
port: 4040
|
||||
user: username
|
||||
pass: password
|
||||
contextpath: /subsonic
|
||||
\* NOTE: The pass config option can either be clear text or hex-encoded with a "enc:" prefix.
|
||||
|
||||
With that all in place, beets will send a Rest API to your Subsonic
|
||||
server every time you import new music.
|
||||
|
|
@ -38,14 +32,4 @@ The available options under the ``subsonic:`` section are:
|
|||
|
||||
- **url**: The Subsonic server resource. Default: ``http://localhost:4040``
|
||||
|
||||
Example: ``https://mydomain.com:443/subsonic``
|
||||
|
||||
\* Note: context path is optional
|
||||
|
||||
DEPRECATED:
|
||||
|
||||
- **host**: The Subsonic server name/IP. Default: ``localhost``
|
||||
- **port**: The Subsonic server port. Default: ``4040``
|
||||
- **user**: The Subsonic user. Default: ``admin``
|
||||
- **pass**: The Subsonic user password. Default: ``admin``
|
||||
- **contextpath**: The Subsonic context path. Default: ``/``
|
||||
Example: ``https://mydomain.com:443/subsonic``
|
||||
Loading…
Reference in a new issue