X-Git-Url: https://git.distorted.org.uk/~mdw/disorder/blobdiff_plain/f0feb22e80bfe438c16d212a7cc8be6d2282b6ac..012c707d5c03631b365886904089d98f3747d308:/python/disorder.py.in diff --git a/python/disorder.py.in b/python/disorder.py.in index 6478981..36157a0 100644 --- a/python/disorder.py.in +++ b/python/disorder.py.in @@ -375,7 +375,11 @@ class client: s.connect(self.who) self.w = s.makefile("wb") self.r = s.makefile("rb") - (res, challenge) = self._simple() + (res, details) = self._simple() + (protocol, algo, challenge) = _split(details) + if protocol != '2': + raise communicationError(self.who, + "unknown protocol version %s" % protocol) if cookie is None: if self.user is None: user = self.config['username'] @@ -385,6 +389,7 @@ class client: password = self.config['password'] else: password = self.password + # TODO support algorithms other than SHA-1 h = sha.sha() h.update(password) h.update(binascii.unhexlify(challenge)) @@ -411,16 +416,6 @@ class client: ######################################################################## # Operations - def become(self, who): - """Become another user. - - Arguments: - who -- the user to become. - - Only trusted users can perform this operation. - """ - self._simple("become", who) - def play(self, track): """Play a track. @@ -496,7 +491,7 @@ class client: def version(self): """Return the server's version number.""" - return self._simple("version")[1] + return _split(self._simple("version")[1])[0] def playing(self): """Return the currently playing track. @@ -627,7 +622,7 @@ class client: if ret == 555: return None else: - return details + return _split(details)[0] def prefs(self, track): """Get all the preferences for a track. @@ -818,7 +813,7 @@ class client: The return value is the preference """ ret, details = self._simple("part", track, context, part) - return details + return _split(details)[0] def setglobal(self, key, value): """Set a global preference value. @@ -849,12 +844,12 @@ class client: if ret == 555: return None else: - return details + return _split(details)[0] def make_cookie(self): """Create a login cookie""" ret, details = self._simple("make-cookie") - return details + return _split(details)[0] def revoke(self): """Revoke a login cookie""" @@ -868,6 +863,33 @@ class client: """Delete a user""" self._simple("deluser", user) + def userinfo(self, user, key): + """Get user information""" + res, details = self._simple("userinfo", user, key) + if res == 555: + return None + return _split(details)[0] + + def edituser(self, user, key, value): + """Set user information""" + self._simple("edituser", user, key, value) + + def users(self): + """List all users + + The return value is a list of all users.""" + self._simple("users") + return self._body() + + def register(self, username, password, email): + """Register a user""" + res, details = self._simple("register", username, password, email) + return _split(details)[0] + + def confirm(self, confirmation): + """Confirm a user registration""" + res, details = self._simple("confirm", confirmation) + ######################################################################## # I/O infrastructure