2014-08-12 22:32:18 -04:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
2016-01-06 23:26:29 -05:00
|
|
|
# Copyright 2014-2016 OpenMarket Ltd
|
2014-08-12 22:32:18 -04:00
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
""" Starts a synapse client console. """
|
|
|
|
import argparse
|
2022-06-01 07:32:35 -04:00
|
|
|
import binascii
|
2014-08-12 10:10:52 -04:00
|
|
|
import cmd
|
|
|
|
import getpass
|
|
|
|
import json
|
|
|
|
import shlex
|
|
|
|
import sys
|
|
|
|
import time
|
|
|
|
import urllib
|
2020-07-20 16:43:49 -04:00
|
|
|
from http import TwistedHttpClient
|
2021-04-08 17:38:54 -04:00
|
|
|
from typing import Optional
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2020-07-20 16:43:49 -04:00
|
|
|
import urlparse
|
2022-06-01 07:32:35 -04:00
|
|
|
from signedjson.key import NACL_ED25519, decode_verify_key_bytes
|
2020-07-20 16:43:49 -04:00
|
|
|
from signedjson.sign import SignatureVerifyException, verify_signed_json
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2020-07-20 16:43:49 -04:00
|
|
|
from twisted.internet import defer, reactor, threads
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
CONFIG_JSON = "cmdclient_config.json"
|
|
|
|
|
2019-09-06 06:35:28 -04:00
|
|
|
# TODO: The concept of trusted identity servers has been deprecated. This option and checks
|
|
|
|
# should be removed
|
2014-08-12 10:10:52 -04:00
|
|
|
TRUSTED_ID_SERVERS = ["localhost:8001"]
|
2019-06-20 05:32:02 -04:00
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
class SynapseCmd(cmd.Cmd):
|
|
|
|
"""Basic synapse command-line processor.
|
|
|
|
|
|
|
|
This processes commands from the user and calls the relevant HTTP methods.
|
|
|
|
"""
|
|
|
|
|
|
|
|
def __init__(self, http_client, server_url, identity_server_url, username, token):
|
|
|
|
cmd.Cmd.__init__(self)
|
|
|
|
self.http_client = http_client
|
|
|
|
self.http_client.verbose = True
|
|
|
|
self.config = {
|
|
|
|
"url": server_url,
|
|
|
|
"identityServerUrl": identity_server_url,
|
|
|
|
"user": username,
|
|
|
|
"token": token,
|
|
|
|
"verbose": "on",
|
|
|
|
"complete_usernames": "on",
|
|
|
|
"send_delivery_receipts": "on",
|
|
|
|
}
|
2014-08-31 09:51:37 -04:00
|
|
|
self.path_prefix = "/_matrix/client/api/v1"
|
2014-08-26 05:33:32 -04:00
|
|
|
self.event_stream_token = "END"
|
2014-08-12 10:10:52 -04:00
|
|
|
self.prompt = ">>> "
|
|
|
|
|
|
|
|
def do_EOF(self, line): # allows CTRL+D quitting
|
|
|
|
return True
|
|
|
|
|
|
|
|
def emptyline(self):
|
|
|
|
pass # else it repeats the previous command
|
|
|
|
|
|
|
|
def _usr(self):
|
|
|
|
return self.config["user"]
|
|
|
|
|
|
|
|
def _tok(self):
|
|
|
|
return self.config["token"]
|
|
|
|
|
|
|
|
def _url(self):
|
|
|
|
return self.config["url"] + self.path_prefix
|
|
|
|
|
|
|
|
def _identityServerUrl(self):
|
|
|
|
return self.config["identityServerUrl"]
|
|
|
|
|
|
|
|
def _is_on(self, config_name):
|
|
|
|
if config_name in self.config:
|
|
|
|
return self.config[config_name] == "on"
|
|
|
|
return False
|
|
|
|
|
|
|
|
def _domain(self):
|
2014-09-03 04:53:09 -04:00
|
|
|
if "user" not in self.config or not self.config["user"]:
|
|
|
|
return None
|
2014-08-12 10:10:52 -04:00
|
|
|
return self.config["user"].split(":")[1]
|
|
|
|
|
|
|
|
def do_config(self, line):
|
|
|
|
"""Show the config for this client: "config"
|
|
|
|
Edit a key value mapping: "config key value" e.g. "config token 1234"
|
|
|
|
Config variables:
|
|
|
|
user: The username to auth with.
|
|
|
|
token: The access token to auth with.
|
|
|
|
url: The url of the server.
|
|
|
|
verbose: [on|off] The verbosity of requests/responses.
|
|
|
|
complete_usernames: [on|off] Auto complete partial usernames by
|
|
|
|
assuming they are on the same homeserver as you.
|
|
|
|
E.g. name >> @name:yourhost
|
|
|
|
send_delivery_receipts: [on|off] Automatically send receipts to
|
|
|
|
messages when performing a 'stream' command.
|
|
|
|
Additional key/values can be added and can be substituted into requests
|
|
|
|
by using $. E.g. 'config roomid room1' then 'raw get /rooms/$roomid'.
|
|
|
|
"""
|
|
|
|
if len(line) == 0:
|
2019-06-17 13:21:30 -04:00
|
|
|
print(json.dumps(self.config, indent=4))
|
2014-08-12 10:10:52 -04:00
|
|
|
return
|
|
|
|
|
|
|
|
try:
|
|
|
|
args = self._parse(line, ["key", "val"], force_keys=True)
|
|
|
|
|
|
|
|
# make sure restricted config values are checked
|
|
|
|
config_rules = [ # key, valid_values
|
|
|
|
("verbose", ["on", "off"]),
|
|
|
|
("complete_usernames", ["on", "off"]),
|
|
|
|
("send_delivery_receipts", ["on", "off"]),
|
|
|
|
]
|
|
|
|
for key, valid_vals in config_rules:
|
|
|
|
if key == args["key"] and args["val"] not in valid_vals:
|
2019-06-17 13:21:30 -04:00
|
|
|
print("%s value must be one of %s" % (args["key"], valid_vals))
|
2014-08-12 10:10:52 -04:00
|
|
|
return
|
|
|
|
|
|
|
|
# toggle the http client verbosity
|
|
|
|
if args["key"] == "verbose":
|
|
|
|
self.http_client.verbose = "on" == args["val"]
|
|
|
|
|
|
|
|
# assign the new config
|
|
|
|
self.config[args["key"]] = args["val"]
|
2019-06-17 13:21:30 -04:00
|
|
|
print(json.dumps(self.config, indent=4))
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
save_config(self.config)
|
|
|
|
except Exception as e:
|
2019-06-17 13:21:30 -04:00
|
|
|
print(e)
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
def do_register(self, line):
|
|
|
|
"""Registers for a new account: "register <userid> <noupdate>"
|
|
|
|
<userid> : The desired user ID
|
|
|
|
<noupdate> : Do not automatically clobber config values.
|
|
|
|
"""
|
|
|
|
args = self._parse(line, ["userid", "noupdate"])
|
|
|
|
|
|
|
|
password = None
|
|
|
|
pwd = None
|
|
|
|
pwd2 = "_"
|
|
|
|
while pwd != pwd2:
|
2014-09-15 10:09:21 -04:00
|
|
|
pwd = getpass.getpass("Type a password for this user: ")
|
2014-08-12 10:10:52 -04:00
|
|
|
pwd2 = getpass.getpass("Retype the password: ")
|
2014-09-15 10:09:21 -04:00
|
|
|
if pwd != pwd2 or len(pwd) == 0:
|
2019-06-17 13:21:30 -04:00
|
|
|
print("Password mismatch.")
|
2014-09-15 10:09:21 -04:00
|
|
|
pwd = None
|
2014-08-12 10:10:52 -04:00
|
|
|
else:
|
|
|
|
password = pwd
|
|
|
|
|
2014-09-15 10:09:21 -04:00
|
|
|
body = {"type": "m.login.password"}
|
2014-08-12 10:10:52 -04:00
|
|
|
if "userid" in args:
|
2014-09-15 10:38:29 -04:00
|
|
|
body["user"] = args["userid"]
|
2014-08-12 10:10:52 -04:00
|
|
|
if password:
|
|
|
|
body["password"] = password
|
|
|
|
|
2014-09-15 10:09:21 -04:00
|
|
|
reactor.callFromThread(self._do_register, body, "noupdate" not in args)
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
2014-09-15 10:09:21 -04:00
|
|
|
def _do_register(self, data, update_config):
|
|
|
|
# check the registration flows
|
|
|
|
url = self._url() + "/register"
|
|
|
|
json_res = yield self.http_client.do_request("GET", url)
|
2019-06-17 13:21:30 -04:00
|
|
|
print(json.dumps(json_res, indent=4))
|
2014-09-15 10:09:21 -04:00
|
|
|
|
|
|
|
passwordFlow = None
|
|
|
|
for flow in json_res["flows"]:
|
|
|
|
if flow["type"] == "m.login.recaptcha" or (
|
|
|
|
"stages" in flow and "m.login.recaptcha" in flow["stages"]
|
|
|
|
):
|
2019-06-17 13:21:30 -04:00
|
|
|
print("Unable to register: Home server requires captcha.")
|
2014-09-15 10:09:21 -04:00
|
|
|
return
|
|
|
|
if flow["type"] == "m.login.password" and "stages" not in flow:
|
|
|
|
passwordFlow = flow
|
|
|
|
break
|
|
|
|
|
|
|
|
if not passwordFlow:
|
|
|
|
return
|
|
|
|
|
|
|
|
json_res = yield self.http_client.do_request("POST", url, data=data)
|
2019-06-17 13:21:30 -04:00
|
|
|
print(json.dumps(json_res, indent=4))
|
2014-08-12 10:10:52 -04:00
|
|
|
if update_config and "user_id" in json_res:
|
|
|
|
self.config["user"] = json_res["user_id"]
|
|
|
|
self.config["token"] = json_res["access_token"]
|
|
|
|
save_config(self.config)
|
|
|
|
|
|
|
|
def do_login(self, line):
|
|
|
|
"""Login as a specific user: "login @bob:localhost"
|
|
|
|
You MAY be prompted for a password, or instructed to visit a URL.
|
|
|
|
"""
|
|
|
|
try:
|
|
|
|
args = self._parse(line, ["user_id"], force_keys=True)
|
|
|
|
can_login = threads.blockingCallFromThread(reactor, self._check_can_login)
|
|
|
|
if can_login:
|
|
|
|
p = getpass.getpass("Enter your password: ")
|
|
|
|
user = args["user_id"]
|
|
|
|
if self._is_on("complete_usernames") and not user.startswith("@"):
|
2014-09-03 04:53:09 -04:00
|
|
|
domain = self._domain()
|
|
|
|
if domain:
|
|
|
|
user = "@" + user + ":" + domain
|
2019-06-20 05:32:02 -04:00
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
reactor.callFromThread(self._do_login, user, p)
|
2014-09-02 19:02:29 -04:00
|
|
|
# print " got %s " % p
|
2014-08-12 10:10:52 -04:00
|
|
|
except Exception as e:
|
2019-06-17 13:21:30 -04:00
|
|
|
print(e)
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
|
|
|
def _do_login(self, user, password):
|
|
|
|
path = "/login"
|
|
|
|
data = {"user": user, "password": password, "type": "m.login.password"}
|
|
|
|
url = self._url() + path
|
|
|
|
json_res = yield self.http_client.do_request("POST", url, data=data)
|
2019-06-17 13:21:30 -04:00
|
|
|
print(json_res)
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
if "access_token" in json_res:
|
|
|
|
self.config["user"] = user
|
|
|
|
self.config["token"] = json_res["access_token"]
|
|
|
|
save_config(self.config)
|
2019-06-17 13:21:30 -04:00
|
|
|
print("Login successful.")
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
|
|
|
def _check_can_login(self):
|
|
|
|
path = "/login"
|
|
|
|
# ALWAYS check that the home server can handle the login request before
|
|
|
|
# submitting!
|
|
|
|
url = self._url() + path
|
|
|
|
json_res = yield self.http_client.do_request("GET", url)
|
2019-06-17 13:21:30 -04:00
|
|
|
print(json_res)
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2014-08-28 09:56:55 -04:00
|
|
|
if "flows" not in json_res:
|
2019-06-17 13:21:30 -04:00
|
|
|
print("Failed to find any login flows.")
|
2014-08-28 09:56:55 -04:00
|
|
|
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:
|
2014-08-12 10:10:52 -04:00
|
|
|
fallback_url = self._url() + "/login/fallback"
|
|
|
|
print(
|
|
|
|
"Unable to login via the command line client. Please visit "
|
|
|
|
"%s to login." % fallback_url
|
|
|
|
)
|
|
|
|
defer.returnValue(False)
|
|
|
|
defer.returnValue(True)
|
|
|
|
|
2014-08-22 05:55:37 -04:00
|
|
|
def do_emailrequest(self, line):
|
2014-08-12 10:10:52 -04:00
|
|
|
"""Requests the association of a third party identifier
|
2014-08-22 05:55:37 -04:00
|
|
|
<address> The email address)
|
|
|
|
<clientSecret> A string of characters generated when requesting an email that you'll supply in subsequent calls to identify yourself
|
|
|
|
<sendAttempt> The number of times the user has requested an email. Leave this the same between requests to retry the request at the transport level. Increment it to request that the email be sent again.
|
2014-08-12 10:10:52 -04:00
|
|
|
"""
|
2014-08-22 05:55:37 -04:00
|
|
|
args = self._parse(line, ["address", "clientSecret", "sendAttempt"])
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2014-08-22 05:55:37 -04:00
|
|
|
postArgs = {
|
|
|
|
"email": args["address"],
|
|
|
|
"clientSecret": args["clientSecret"],
|
|
|
|
"sendAttempt": args["sendAttempt"],
|
|
|
|
}
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2014-08-22 05:55:37 -04:00
|
|
|
reactor.callFromThread(self._do_emailrequest, postArgs)
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
2014-08-22 05:55:37 -04:00
|
|
|
def _do_emailrequest(self, args):
|
2019-09-05 09:31:22 -04:00
|
|
|
# TODO: Update to use v2 Identity Service API endpoint
|
2014-08-31 09:51:37 -04:00
|
|
|
url = (
|
|
|
|
self._identityServerUrl()
|
|
|
|
+ "/_matrix/identity/api/v1/validate/email/requestToken"
|
2019-06-20 05:32:02 -04:00
|
|
|
)
|
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
json_res = yield self.http_client.do_request(
|
|
|
|
"POST",
|
|
|
|
url,
|
|
|
|
data=urllib.urlencode(args),
|
|
|
|
jsonreq=False,
|
|
|
|
headers={"Content-Type": ["application/x-www-form-urlencoded"]},
|
|
|
|
)
|
2019-06-17 13:21:30 -04:00
|
|
|
print(json_res)
|
2014-08-22 05:55:37 -04:00
|
|
|
if "sid" in json_res:
|
2019-06-17 13:21:30 -04:00
|
|
|
print("Token sent. Your session ID is %s" % (json_res["sid"]))
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2014-08-22 05:55:37 -04:00
|
|
|
def do_emailvalidate(self, line):
|
2014-08-12 10:10:52 -04:00
|
|
|
"""Validate and associate a third party ID
|
2014-08-22 05:55:37 -04:00
|
|
|
<sid> The session ID (sid) given to you in the response to requestToken
|
2014-08-12 10:10:52 -04:00
|
|
|
<token> The token sent to your third party identifier address
|
2014-08-22 05:55:37 -04:00
|
|
|
<clientSecret> The same clientSecret you supplied in requestToken
|
2014-08-12 10:10:52 -04:00
|
|
|
"""
|
2014-08-22 05:55:37 -04:00
|
|
|
args = self._parse(line, ["sid", "token", "clientSecret"])
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2014-08-22 05:55:37 -04:00
|
|
|
postArgs = {
|
|
|
|
"sid": args["sid"],
|
|
|
|
"token": args["token"],
|
|
|
|
"clientSecret": args["clientSecret"],
|
|
|
|
}
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2014-08-22 05:55:37 -04:00
|
|
|
reactor.callFromThread(self._do_emailvalidate, postArgs)
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
2014-08-22 05:55:37 -04:00
|
|
|
def _do_emailvalidate(self, args):
|
2019-09-05 09:31:22 -04:00
|
|
|
# TODO: Update to use v2 Identity Service API endpoint
|
2014-08-31 09:51:37 -04:00
|
|
|
url = (
|
|
|
|
self._identityServerUrl()
|
|
|
|
+ "/_matrix/identity/api/v1/validate/email/submitToken"
|
2019-06-20 05:32:02 -04:00
|
|
|
)
|
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
json_res = yield self.http_client.do_request(
|
|
|
|
"POST",
|
|
|
|
url,
|
|
|
|
data=urllib.urlencode(args),
|
|
|
|
jsonreq=False,
|
|
|
|
headers={"Content-Type": ["application/x-www-form-urlencoded"]},
|
|
|
|
)
|
2019-06-17 13:21:30 -04:00
|
|
|
print(json_res)
|
2014-08-12 10:10:52 -04:00
|
|
|
|
2014-08-22 05:55:37 -04:00
|
|
|
def do_3pidbind(self, line):
|
|
|
|
"""Validate and associate a third party ID
|
|
|
|
<sid> The session ID (sid) given to you in the response to requestToken
|
|
|
|
<clientSecret> The same clientSecret you supplied in requestToken
|
|
|
|
"""
|
|
|
|
args = self._parse(line, ["sid", "clientSecret"])
|
|
|
|
|
|
|
|
postArgs = {"sid": args["sid"], "clientSecret": args["clientSecret"]}
|
|
|
|
postArgs["mxid"] = self.config["user"]
|
|
|
|
|
|
|
|
reactor.callFromThread(self._do_3pidbind, postArgs)
|
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
|
|
|
def _do_3pidbind(self, args):
|
2019-09-05 09:31:22 -04:00
|
|
|
# TODO: Update to use v2 Identity Service API endpoint
|
2014-08-31 09:51:37 -04:00
|
|
|
url = self._identityServerUrl() + "/_matrix/identity/api/v1/3pid/bind"
|
2019-06-20 05:32:02 -04:00
|
|
|
|
2014-08-22 05:55:37 -04:00
|
|
|
json_res = yield self.http_client.do_request(
|
|
|
|
"POST",
|
|
|
|
url,
|
|
|
|
data=urllib.urlencode(args),
|
|
|
|
jsonreq=False,
|
|
|
|
headers={"Content-Type": ["application/x-www-form-urlencoded"]},
|
|
|
|
)
|
2019-06-17 13:21:30 -04:00
|
|
|
print(json_res)
|
2014-08-22 05:55:37 -04:00
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
def do_join(self, line):
|
|
|
|
"""Joins a room: "join <roomid>" """
|
|
|
|
try:
|
|
|
|
args = self._parse(line, ["roomid"], force_keys=True)
|
|
|
|
self._do_membership_change(args["roomid"], "join", self._usr())
|
|
|
|
except Exception as e:
|
2019-06-17 13:21:30 -04:00
|
|
|
print(e)
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
def do_joinalias(self, line):
|
|
|
|
try:
|
|
|
|
args = self._parse(line, ["roomname"], force_keys=True)
|
|
|
|
path = "/join/%s" % urllib.quote(args["roomname"])
|
2014-09-03 05:27:04 -04:00
|
|
|
reactor.callFromThread(self._run_and_pprint, "POST", path, {})
|
2014-08-12 10:10:52 -04:00
|
|
|
except Exception as e:
|
2019-06-17 13:21:30 -04:00
|
|
|
print(e)
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
def do_topic(self, line):
|
|
|
|
""" "topic [set|get] <roomid> [<newtopic>]"
|
|
|
|
Set the topic for a room: topic set <roomid> <newtopic>
|
|
|
|
Get the topic for a room: topic get <roomid>
|
|
|
|
"""
|
|
|
|
try:
|
|
|
|
args = self._parse(line, ["action", "roomid", "topic"])
|
|
|
|
if "action" not in args or "roomid" not in args:
|
2019-06-17 13:21:30 -04:00
|
|
|
print("Must specify set|get and a room ID.")
|
2014-08-12 10:10:52 -04:00
|
|
|
return
|
|
|
|
if args["action"].lower() not in ["set", "get"]:
|
2019-06-17 13:21:30 -04:00
|
|
|
print("Must specify set|get, not %s" % args["action"])
|
2014-08-12 10:10:52 -04:00
|
|
|
return
|
|
|
|
|
|
|
|
path = "/rooms/%s/topic" % urllib.quote(args["roomid"])
|
|
|
|
|
|
|
|
if args["action"].lower() == "set":
|
|
|
|
if "topic" not in args:
|
2019-06-17 13:21:30 -04:00
|
|
|
print("Must specify a new topic.")
|
2014-08-12 10:10:52 -04:00
|
|
|
return
|
|
|
|
body = {"topic": args["topic"]}
|
|
|
|
reactor.callFromThread(self._run_and_pprint, "PUT", path, body)
|
|
|
|
elif args["action"].lower() == "get":
|
|
|
|
reactor.callFromThread(self._run_and_pprint, "GET", path)
|
|
|
|
except Exception as e:
|
2019-06-17 13:21:30 -04:00
|
|
|
print(e)
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
def do_invite(self, line):
|
|
|
|
"""Invite a user to a room: "invite <userid> <roomid>" """
|
|
|
|
try:
|
|
|
|
args = self._parse(line, ["userid", "roomid"], force_keys=True)
|
|
|
|
|
|
|
|
user_id = args["userid"]
|
|
|
|
|
|
|
|
reactor.callFromThread(self._do_invite, args["roomid"], user_id)
|
|
|
|
except Exception as e:
|
2019-06-17 13:21:30 -04:00
|
|
|
print(e)
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
|
|
|
def _do_invite(self, roomid, userstring):
|
|
|
|
if not userstring.startswith("@") and self._is_on("complete_usernames"):
|
2019-09-05 09:31:22 -04:00
|
|
|
# TODO: Update to use v2 Identity Service API endpoint
|
2014-08-31 09:51:37 -04:00
|
|
|
url = self._identityServerUrl() + "/_matrix/identity/api/v1/lookup"
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
json_res = yield self.http_client.do_request(
|
|
|
|
"GET", url, qparams={"medium": "email", "address": userstring}
|
|
|
|
)
|
|
|
|
|
|
|
|
mxid = None
|
|
|
|
|
|
|
|
if "mxid" in json_res and "signatures" in json_res:
|
2019-09-05 09:31:22 -04:00
|
|
|
# TODO: Update to use v2 Identity Service API endpoint
|
2014-08-31 09:51:37 -04:00
|
|
|
url = (
|
|
|
|
self._identityServerUrl()
|
|
|
|
+ "/_matrix/identity/api/v1/pubkey/ed25519"
|
2019-06-20 05:32:02 -04:00
|
|
|
)
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
pubKey = None
|
|
|
|
pubKeyObj = yield self.http_client.do_request("GET", url)
|
|
|
|
if "public_key" in pubKeyObj:
|
2022-06-01 07:32:35 -04:00
|
|
|
pubKey = decode_verify_key_bytes(
|
|
|
|
NACL_ED25519, binascii.unhexlify(pubKeyObj["public_key"])
|
2014-08-12 10:10:52 -04:00
|
|
|
)
|
|
|
|
else:
|
2019-06-17 13:21:30 -04:00
|
|
|
print("No public key found in pubkey response!")
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
sigValid = False
|
|
|
|
|
|
|
|
if pubKey:
|
|
|
|
for signame in json_res["signatures"]:
|
|
|
|
if signame not in TRUSTED_ID_SERVERS:
|
2019-06-17 13:21:30 -04:00
|
|
|
print(
|
|
|
|
"Ignoring signature from untrusted server %s"
|
|
|
|
% (signame)
|
2019-06-20 05:32:02 -04:00
|
|
|
)
|
2014-08-12 10:10:52 -04:00
|
|
|
else:
|
|
|
|
try:
|
|
|
|
verify_signed_json(json_res, signame, pubKey)
|
|
|
|
sigValid = True
|
2019-06-17 13:21:30 -04:00
|
|
|
print(
|
|
|
|
"Mapping %s -> %s correctly signed by %s"
|
|
|
|
% (userstring, json_res["mxid"], signame)
|
2019-06-20 05:32:02 -04:00
|
|
|
)
|
2014-08-12 10:10:52 -04:00
|
|
|
break
|
|
|
|
except SignatureVerifyException as e:
|
2019-06-17 13:21:30 -04:00
|
|
|
print("Invalid signature from %s" % (signame))
|
|
|
|
print(e)
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
if sigValid:
|
2019-06-17 13:21:30 -04:00
|
|
|
print("Resolved 3pid %s to %s" % (userstring, json_res["mxid"]))
|
2014-08-12 10:10:52 -04:00
|
|
|
mxid = json_res["mxid"]
|
|
|
|
else:
|
2019-06-17 13:21:30 -04:00
|
|
|
print(
|
|
|
|
"Got association for %s but couldn't verify signature"
|
|
|
|
% (userstring)
|
2019-06-20 05:32:02 -04:00
|
|
|
)
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
if not mxid:
|
|
|
|
mxid = "@" + userstring + ":" + self._domain()
|
|
|
|
|
|
|
|
self._do_membership_change(roomid, "invite", mxid)
|
|
|
|
|
|
|
|
def do_leave(self, line):
|
|
|
|
"""Leaves a room: "leave <roomid>" """
|
|
|
|
try:
|
|
|
|
args = self._parse(line, ["roomid"], force_keys=True)
|
2014-08-26 05:33:32 -04:00
|
|
|
self._do_membership_change(args["roomid"], "leave", self._usr())
|
2014-08-12 10:10:52 -04:00
|
|
|
except Exception as e:
|
2019-06-17 13:21:30 -04:00
|
|
|
print(e)
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
def do_send(self, line):
|
|
|
|
"""Sends a message. "send <roomid> <body>" """
|
|
|
|
args = self._parse(line, ["roomid", "body"])
|
2014-08-26 12:21:48 -04:00
|
|
|
txn_id = "txn%s" % int(time.time())
|
|
|
|
path = "/rooms/%s/send/m.room.message/%s" % (
|
|
|
|
urllib.quote(args["roomid"]),
|
|
|
|
txn_id,
|
|
|
|
)
|
2014-08-12 10:10:52 -04:00
|
|
|
body_json = {"msgtype": "m.text", "body": args["body"]}
|
|
|
|
reactor.callFromThread(self._run_and_pprint, "PUT", path, body_json)
|
|
|
|
|
|
|
|
def do_list(self, line):
|
|
|
|
"""List data about a room.
|
|
|
|
"list members <roomid> [query]" - List all the members in this room.
|
|
|
|
"list messages <roomid> [query]" - List all the messages in this room.
|
|
|
|
|
|
|
|
Where [query] will be directly applied as query parameters, allowing
|
|
|
|
you to use the pagination API. E.g. the last 3 messages in this room:
|
|
|
|
"list messages <roomid> from=END&to=START&limit=3"
|
|
|
|
"""
|
|
|
|
args = self._parse(line, ["type", "roomid", "qp"])
|
2020-07-20 16:43:49 -04:00
|
|
|
if "type" not in args or "roomid" not in args:
|
2019-06-17 13:21:30 -04:00
|
|
|
print("Must specify type and room ID.")
|
2014-08-12 10:10:52 -04:00
|
|
|
return
|
|
|
|
if args["type"] not in ["members", "messages"]:
|
2019-06-17 13:21:30 -04:00
|
|
|
print("Unrecognised type: %s" % args["type"])
|
2014-08-12 10:10:52 -04:00
|
|
|
return
|
|
|
|
room_id = args["roomid"]
|
2014-08-26 11:19:17 -04:00
|
|
|
path = "/rooms/%s/%s" % (urllib.quote(room_id), args["type"])
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
qp = {"access_token": self._tok()}
|
|
|
|
if "qp" in args:
|
|
|
|
for key_value_str in args["qp"].split("&"):
|
|
|
|
try:
|
|
|
|
key_value = key_value_str.split("=")
|
|
|
|
qp[key_value[0]] = key_value[1]
|
2020-07-20 16:43:49 -04:00
|
|
|
except Exception:
|
2019-06-17 13:21:30 -04:00
|
|
|
print("Bad query param: %s" % key_value)
|
2014-08-12 10:10:52 -04:00
|
|
|
return
|
|
|
|
|
|
|
|
reactor.callFromThread(self._run_and_pprint, "GET", path, query_params=qp)
|
|
|
|
|
|
|
|
def do_create(self, line):
|
|
|
|
"""Creates a room.
|
|
|
|
"create [public|private] <roomname>" - Create a room <roomname> with the
|
|
|
|
specified visibility.
|
|
|
|
"create <roomname>" - Create a room <roomname> with default visibility.
|
|
|
|
"create [public|private]" - Create a room with specified visibility.
|
|
|
|
"create" - Create a room with default visibility.
|
|
|
|
"""
|
|
|
|
args = self._parse(line, ["vis", "roomname"])
|
|
|
|
# fixup args depending on which were set
|
|
|
|
body = {}
|
|
|
|
if "vis" in args and args["vis"] in ["public", "private"]:
|
|
|
|
body["visibility"] = args["vis"]
|
|
|
|
|
|
|
|
if "roomname" in args:
|
|
|
|
room_name = args["roomname"]
|
|
|
|
body["room_alias_name"] = room_name
|
|
|
|
elif "vis" in args and args["vis"] not in ["public", "private"]:
|
|
|
|
room_name = args["vis"]
|
|
|
|
body["room_alias_name"] = room_name
|
|
|
|
|
2014-08-27 06:33:56 -04:00
|
|
|
reactor.callFromThread(self._run_and_pprint, "POST", "/createRoom", body)
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
def do_raw(self, line):
|
|
|
|
"""Directly send a JSON object: "raw <method> <path> <data> <notoken>"
|
|
|
|
<method>: Required. One of "PUT", "GET", "POST", "xPUT", "xGET",
|
|
|
|
"xPOST". Methods with 'x' prefixed will not automatically append the
|
|
|
|
access token.
|
|
|
|
<path>: Required. E.g. "/events"
|
|
|
|
<data>: Optional. E.g. "{ "msgtype":"custom.text", "body":"abc123"}"
|
|
|
|
"""
|
|
|
|
args = self._parse(line, ["method", "path", "data"])
|
|
|
|
# sanity check
|
|
|
|
if "method" not in args or "path" not in args:
|
2019-06-17 13:21:30 -04:00
|
|
|
print("Must specify path and method.")
|
2014-08-12 10:10:52 -04:00
|
|
|
return
|
|
|
|
|
|
|
|
args["method"] = args["method"].upper()
|
|
|
|
valid_methods = [
|
|
|
|
"PUT",
|
|
|
|
"GET",
|
|
|
|
"POST",
|
|
|
|
"DELETE",
|
|
|
|
"XPUT",
|
|
|
|
"XGET",
|
|
|
|
"XPOST",
|
|
|
|
"XDELETE",
|
|
|
|
]
|
|
|
|
if args["method"] not in valid_methods:
|
2019-06-17 13:21:30 -04:00
|
|
|
print("Unsupported method: %s" % args["method"])
|
2014-08-12 10:10:52 -04:00
|
|
|
return
|
|
|
|
|
|
|
|
if "data" not in args:
|
|
|
|
args["data"] = None
|
|
|
|
else:
|
|
|
|
try:
|
|
|
|
args["data"] = json.loads(args["data"])
|
|
|
|
except Exception as e:
|
2019-06-17 13:21:30 -04:00
|
|
|
print("Data is not valid JSON. %s" % e)
|
2014-08-12 10:10:52 -04:00
|
|
|
return
|
|
|
|
|
|
|
|
qp = {"access_token": self._tok()}
|
|
|
|
if args["method"].startswith("X"):
|
|
|
|
qp = {} # remove access token
|
|
|
|
args["method"] = args["method"][1:] # snip the X
|
|
|
|
else:
|
|
|
|
# append any query params the user has set
|
|
|
|
try:
|
|
|
|
parsed_url = urlparse.urlparse(args["path"])
|
|
|
|
qp.update(urlparse.parse_qs(parsed_url.query))
|
|
|
|
args["path"] = parsed_url.path
|
2020-07-20 16:43:49 -04:00
|
|
|
except Exception:
|
2014-08-12 10:10:52 -04:00
|
|
|
pass
|
|
|
|
|
|
|
|
reactor.callFromThread(
|
|
|
|
self._run_and_pprint,
|
|
|
|
args["method"],
|
|
|
|
args["path"],
|
|
|
|
args["data"],
|
|
|
|
query_params=qp,
|
|
|
|
)
|
|
|
|
|
|
|
|
def do_stream(self, line):
|
|
|
|
"""Stream data from the server: "stream <longpoll timeout ms>" """
|
|
|
|
args = self._parse(line, ["timeout"])
|
|
|
|
timeout = 5000
|
|
|
|
if "timeout" in args:
|
|
|
|
try:
|
|
|
|
timeout = int(args["timeout"])
|
|
|
|
except ValueError:
|
2019-06-17 13:21:30 -04:00
|
|
|
print("Timeout must be in milliseconds.")
|
2014-08-12 10:10:52 -04:00
|
|
|
return
|
|
|
|
reactor.callFromThread(self._do_event_stream, timeout)
|
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
|
|
|
def _do_event_stream(self, timeout):
|
2020-07-30 08:01:33 -04:00
|
|
|
res = yield defer.ensureDeferred(
|
|
|
|
self.http_client.get_json(
|
|
|
|
self._url() + "/events",
|
|
|
|
{
|
|
|
|
"access_token": self._tok(),
|
|
|
|
"timeout": str(timeout),
|
|
|
|
"from": self.event_stream_token,
|
|
|
|
},
|
|
|
|
)
|
2014-08-12 10:10:52 -04:00
|
|
|
)
|
2019-06-17 13:21:30 -04:00
|
|
|
print(json.dumps(res, indent=4))
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
if "chunk" in res:
|
|
|
|
for event in res["chunk"]:
|
|
|
|
if (
|
|
|
|
event["type"] == "m.room.message"
|
|
|
|
and self._is_on("send_delivery_receipts")
|
|
|
|
and event["user_id"] != self._usr()
|
|
|
|
): # not sent by us
|
|
|
|
self._send_receipt(event, "d")
|
|
|
|
|
|
|
|
# update the position in the stram
|
|
|
|
if "end" in res:
|
|
|
|
self.event_stream_token = res["end"]
|
|
|
|
|
|
|
|
def _send_receipt(self, event, feedback_type):
|
|
|
|
path = "/rooms/%s/messages/%s/%s/feedback/%s/%s" % (
|
|
|
|
urllib.quote(event["room_id"]),
|
|
|
|
event["user_id"],
|
|
|
|
event["msg_id"],
|
|
|
|
self._usr(),
|
|
|
|
feedback_type,
|
|
|
|
)
|
|
|
|
data = {}
|
|
|
|
reactor.callFromThread(
|
|
|
|
self._run_and_pprint,
|
|
|
|
"PUT",
|
|
|
|
path,
|
|
|
|
data=data,
|
|
|
|
alt_text="Sent receipt for %s" % event["msg_id"],
|
|
|
|
)
|
|
|
|
|
|
|
|
def _do_membership_change(self, roomid, membership, userid):
|
2014-08-26 04:26:07 -04:00
|
|
|
path = "/rooms/%s/state/m.room.member/%s" % (
|
|
|
|
urllib.quote(roomid),
|
|
|
|
urllib.quote(userid),
|
|
|
|
)
|
2014-08-12 10:10:52 -04:00
|
|
|
data = {"membership": membership}
|
|
|
|
reactor.callFromThread(self._run_and_pprint, "PUT", path, data=data)
|
|
|
|
|
|
|
|
def do_displayname(self, line):
|
|
|
|
"""Get or set my displayname: "displayname [new_name]" """
|
|
|
|
args = self._parse(line, ["name"])
|
|
|
|
path = "/profile/%s/displayname" % (self.config["user"])
|
|
|
|
|
|
|
|
if "name" in args:
|
|
|
|
data = {"displayname": args["name"]}
|
|
|
|
reactor.callFromThread(self._run_and_pprint, "PUT", path, data=data)
|
|
|
|
else:
|
|
|
|
reactor.callFromThread(self._run_and_pprint, "GET", path)
|
|
|
|
|
|
|
|
def _do_presence_state(self, state, line):
|
|
|
|
args = self._parse(line, ["msgstring"])
|
|
|
|
path = "/presence/%s/status" % (self.config["user"])
|
|
|
|
data = {"state": state}
|
|
|
|
if "msgstring" in args:
|
|
|
|
data["status_msg"] = args["msgstring"]
|
|
|
|
|
|
|
|
reactor.callFromThread(self._run_and_pprint, "PUT", path, data=data)
|
|
|
|
|
|
|
|
def do_offline(self, line):
|
|
|
|
"""Set my presence state to OFFLINE"""
|
|
|
|
self._do_presence_state(0, line)
|
|
|
|
|
|
|
|
def do_away(self, line):
|
|
|
|
"""Set my presence state to AWAY"""
|
|
|
|
self._do_presence_state(1, line)
|
|
|
|
|
|
|
|
def do_online(self, line):
|
|
|
|
"""Set my presence state to ONLINE"""
|
|
|
|
self._do_presence_state(2, line)
|
|
|
|
|
|
|
|
def _parse(self, line, keys, force_keys=False):
|
|
|
|
"""Parses the given line.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
line : The line to parse
|
|
|
|
keys : A list of keys to map onto the args
|
|
|
|
force_keys : True to enforce that the line has a value for every key
|
|
|
|
Returns:
|
|
|
|
A dict of key:arg
|
|
|
|
"""
|
|
|
|
line_args = shlex.split(line)
|
|
|
|
if force_keys and len(line_args) != len(keys):
|
|
|
|
raise IndexError("Must specify all args: %s" % keys)
|
|
|
|
|
|
|
|
# do $ substitutions
|
|
|
|
for i, arg in enumerate(line_args):
|
|
|
|
for config_key in self.config:
|
|
|
|
if ("$" + config_key) in arg:
|
|
|
|
arg = arg.replace("$" + config_key, self.config[config_key])
|
|
|
|
line_args[i] = arg
|
|
|
|
|
|
|
|
return dict(zip(keys, line_args))
|
|
|
|
|
|
|
|
@defer.inlineCallbacks
|
|
|
|
def _run_and_pprint(
|
|
|
|
self,
|
|
|
|
method,
|
|
|
|
path,
|
|
|
|
data=None,
|
2021-04-08 17:38:54 -04:00
|
|
|
query_params: Optional[dict] = None,
|
2014-08-12 10:10:52 -04:00
|
|
|
alt_text=None,
|
|
|
|
):
|
|
|
|
"""Runs an HTTP request and pretty prints the output.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
method: HTTP method
|
|
|
|
path: Relative path
|
|
|
|
data: Raw JSON data if any
|
|
|
|
query_params: dict of query parameters to add to the url
|
|
|
|
"""
|
2021-04-08 17:38:54 -04:00
|
|
|
query_params = query_params or {"access_token": None}
|
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
url = self._url() + path
|
|
|
|
if "access_token" in query_params:
|
|
|
|
query_params["access_token"] = self._tok()
|
|
|
|
|
|
|
|
json_res = yield self.http_client.do_request(
|
|
|
|
method, url, data=data, qparams=query_params
|
|
|
|
)
|
|
|
|
if alt_text:
|
2019-06-17 13:21:30 -04:00
|
|
|
print(alt_text)
|
2014-08-12 10:10:52 -04:00
|
|
|
else:
|
2019-06-17 13:21:30 -04:00
|
|
|
print(json.dumps(json_res, indent=4))
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
|
|
|
|
def save_config(config):
|
|
|
|
with open(CONFIG_JSON, "w") as out:
|
|
|
|
json.dump(config, out)
|
|
|
|
|
|
|
|
|
|
|
|
def main(server_url, identity_server_url, username, token, config_path):
|
2019-06-17 13:21:30 -04:00
|
|
|
print("Synapse command line client")
|
|
|
|
print("===========================")
|
|
|
|
print("Server: %s" % server_url)
|
|
|
|
print("Type 'help' to get started.")
|
|
|
|
print("Close this console with CTRL+C then CTRL+D.")
|
2014-08-12 10:10:52 -04:00
|
|
|
if not username or not token:
|
2019-06-17 13:21:30 -04:00
|
|
|
print("- 'register <username>' - Register an account")
|
|
|
|
print("- 'stream' - Connect to the event stream")
|
|
|
|
print("- 'create <roomid>' - Create a room")
|
|
|
|
print("- 'send <roomid> <message>' - Send a message")
|
2014-08-12 10:10:52 -04:00
|
|
|
http_client = TwistedHttpClient()
|
|
|
|
|
|
|
|
# the command line client
|
|
|
|
syn_cmd = SynapseCmd(http_client, server_url, identity_server_url, username, token)
|
|
|
|
|
|
|
|
# load synapse.json config from a previous session
|
|
|
|
global CONFIG_JSON
|
|
|
|
CONFIG_JSON = config_path # bit cheeky, but just overwrite the global
|
|
|
|
try:
|
|
|
|
with open(config_path, "r") as config:
|
|
|
|
syn_cmd.config = json.load(config)
|
|
|
|
try:
|
|
|
|
http_client.verbose = "on" == syn_cmd.config["verbose"]
|
2020-07-20 16:43:49 -04:00
|
|
|
except Exception:
|
2014-08-12 10:10:52 -04:00
|
|
|
pass
|
2019-06-17 13:21:30 -04:00
|
|
|
print("Loaded config from %s" % config_path)
|
2020-07-20 16:43:49 -04:00
|
|
|
except Exception:
|
2014-08-12 10:10:52 -04:00
|
|
|
pass
|
|
|
|
|
|
|
|
# Twisted-specific: Runs the command processor in Twisted's event loop
|
|
|
|
# to maintain a single thread for both commands and event processing.
|
|
|
|
# If using another HTTP client, just call syn_cmd.cmdloop()
|
|
|
|
reactor.callInThread(syn_cmd.cmdloop)
|
|
|
|
reactor.run()
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
parser = argparse.ArgumentParser("Starts a synapse client.")
|
|
|
|
parser.add_argument(
|
2014-09-03 04:53:09 -04:00
|
|
|
"-s",
|
|
|
|
"--server",
|
|
|
|
dest="server",
|
|
|
|
default="http://localhost:8008",
|
2014-08-12 10:10:52 -04:00
|
|
|
help="The URL of the home server to talk to.",
|
|
|
|
)
|
|
|
|
parser.add_argument(
|
|
|
|
"-i",
|
|
|
|
"--identity-server",
|
|
|
|
dest="identityserver",
|
|
|
|
default="http://localhost:8090",
|
|
|
|
help="The URL of the identity server to talk to.",
|
|
|
|
)
|
|
|
|
parser.add_argument(
|
|
|
|
"-u", "--username", dest="username", help="Your username on the server."
|
2019-06-20 05:32:02 -04:00
|
|
|
)
|
2014-08-12 10:10:52 -04:00
|
|
|
parser.add_argument("-t", "--token", dest="token", help="Your access token.")
|
|
|
|
parser.add_argument(
|
|
|
|
"-c",
|
|
|
|
"--config",
|
|
|
|
dest="config",
|
|
|
|
default=CONFIG_JSON,
|
|
|
|
help="The location of the config.json file to read from.",
|
|
|
|
)
|
|
|
|
args = parser.parse_args()
|
|
|
|
|
|
|
|
if not args.server:
|
2019-06-17 13:21:30 -04:00
|
|
|
print("You must supply a server URL to communicate with.")
|
2014-08-12 10:10:52 -04:00
|
|
|
parser.print_help()
|
|
|
|
sys.exit(1)
|
|
|
|
|
|
|
|
server = args.server
|
|
|
|
if not server.startswith("http://"):
|
|
|
|
server = "http://" + args.server
|
|
|
|
|
|
|
|
main(server, args.identityserver, args.username, args.token, args.config)
|