mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-02 22:14:55 -04:00
Support multiple login flows when deciding how to login. Updated cmdclient and spec. Webclient doesn't need updating for this.
This commit is contained in:
parent
52cfdfd5f1
commit
8d7d251c35
3 changed files with 23 additions and 16 deletions
|
@ -225,8 +225,13 @@ class SynapseCmd(cmd.Cmd):
|
|||
json_res = yield self.http_client.do_request("GET", url)
|
||||
print json_res
|
||||
|
||||
if ("type" not in json_res or "m.login.password" != json_res["type"] or
|
||||
"stages" in json_res):
|
||||
if "flows" not in json_res:
|
||||
print "Failed to find any login flows."
|
||||
defer.returnValue(False)
|
||||
|
||||
flow = json_res["flows"][0] # assume first is the one we want.
|
||||
if ("type" not in flow or "m.login.password" != flow["type"] or
|
||||
"stages" in flow):
|
||||
fallback_url = self._url() + "/login/fallback"
|
||||
print ("Unable to login via the command line client. Please visit "
|
||||
"%s to login." % fallback_url)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue