Skip to content
Snippets Groups Projects
Commit b1edf260 authored by Luke Barnard's avatar Luke Barnard
Browse files

Check group_id belongs to this domain

parent 97bd18af
No related branches found
No related tags found
No related merge requests found
......@@ -14,6 +14,7 @@
# limitations under the License.
from synapse.api.constants import EventTypes
from synapse.util.caches.descriptors import cachedInlineCallbacks
from synapse.types import GroupID, get_domain_from_id
from twisted.internet import defer
......@@ -83,12 +84,13 @@ class ApplicationService(object):
GROUP_ID_REGEX = re.compile('\+.*:.+')
def __init__(self, token, url=None, namespaces=None, hs_token=None,
def __init__(self, token, hostname, url=None, namespaces=None, hs_token=None,
sender=None, id=None, protocols=None, rate_limited=True):
self.token = token
self.url = url
self.hs_token = hs_token
self.sender = sender
self.server_name = hostname
self.namespaces = self._check_namespaces(namespaces)
self.id = id
......@@ -132,12 +134,18 @@ class ApplicationService(object):
raise ValueError(
"Expected string for 'group_id' in ns '%s'" % ns
)
if not ApplicationService.GROUP_ID_REGEX.match(
regex_obj.get("group_id")):
try:
GroupID.from_string(regex_obj.get("group_id"))
except Exception:
raise ValueError(
"Expected valid group ID for 'group_id' in ns '%s'" % ns
)
if get_domain_from_id(regex_obj.get("group_id")) != self.server_name:
raise ValueError(
"Expected string for 'group_id' to be for this host in ns '%s'" % ns
)
regex = regex_obj.get("regex")
if isinstance(regex, basestring):
regex_obj["regex"] = re.compile(regex) # Pre-compile regex
......
......@@ -154,6 +154,7 @@ def _load_appservice(hostname, as_info, config_filename):
)
return ApplicationService(
token=as_info["as_token"],
hostname=hostname,
url=as_info["url"],
namespaces=as_info["namespaces"],
hs_token=as_info["hs_token"],
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment