53 lines
1.2 KiB
Python
53 lines
1.2 KiB
Python
from mopidy import settings
|
|
from mopidy.frontends.mpd.protocol import handle_request
|
|
from mopidy.frontends.mpd.exceptions import (MpdPasswordError,
|
|
MpdPermissionError)
|
|
|
|
@handle_request(r'^close$', auth_required=False)
|
|
def close(context):
|
|
"""
|
|
*musicpd.org, connection section:*
|
|
|
|
``close``
|
|
|
|
Closes the connection to MPD.
|
|
"""
|
|
context.session.close()
|
|
|
|
@handle_request(r'^kill$')
|
|
def kill(context):
|
|
"""
|
|
*musicpd.org, connection section:*
|
|
|
|
``kill``
|
|
|
|
Kills MPD.
|
|
"""
|
|
raise MpdPermissionError(command=u'kill')
|
|
|
|
@handle_request(r'^password "(?P<password>[^"]+)"$', auth_required=False)
|
|
def password_(context, password):
|
|
"""
|
|
*musicpd.org, connection section:*
|
|
|
|
``password {PASSWORD}``
|
|
|
|
This is used for authentication with the server. ``PASSWORD`` is
|
|
simply the plaintext password.
|
|
"""
|
|
if password == settings.MPD_SERVER_PASSWORD:
|
|
context.dispatcher.authenticated = True
|
|
else:
|
|
raise MpdPasswordError(u'incorrect password', command=u'password')
|
|
|
|
@handle_request(r'^ping$', auth_required=False)
|
|
def ping(context):
|
|
"""
|
|
*musicpd.org, connection section:*
|
|
|
|
``ping``
|
|
|
|
Does nothing but return ``OK``.
|
|
"""
|
|
pass
|