2014-08-12 10:10:52 -04:00
|
|
|
# -*- coding: utf-8 -*-
|
2016-01-06 23:26:29 -05:00
|
|
|
# Copyright 2014-2016 OpenMarket Ltd
|
2020-01-24 09:28:40 -05:00
|
|
|
# Copyright 2020 The Matrix.org Foundation C.I.C.
|
2014-08-12 10:10:52 -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.
|
2020-03-30 14:06:52 -04:00
|
|
|
import itertools
|
2014-08-12 10:10:52 -04:00
|
|
|
import random
|
2020-01-24 09:28:40 -05:00
|
|
|
import re
|
2014-08-12 10:10:52 -04:00
|
|
|
import string
|
2020-03-30 14:06:52 -04:00
|
|
|
from collections import Iterable
|
2018-07-09 02:09:20 -04:00
|
|
|
|
2020-01-24 09:28:40 -05:00
|
|
|
from synapse.api.errors import Codes, SynapseError
|
|
|
|
|
2019-06-20 05:32:02 -04:00
|
|
|
_string_with_symbols = string.digits + string.ascii_letters + ".,;:^&*-_+=#~@"
|
2015-03-13 11:23:37 -04:00
|
|
|
|
2020-01-24 09:28:40 -05:00
|
|
|
# https://matrix.org/docs/spec/client_server/r0.6.0#post-matrix-client-r0-register-email-requesttoken
|
|
|
|
# Note: The : character is allowed here for older clients, but will be removed in a
|
|
|
|
# future release. Context: https://github.com/matrix-org/synapse/issues/6766
|
|
|
|
client_secret_regex = re.compile(r"^[0-9a-zA-Z\.\=\_\-\:]+$")
|
|
|
|
|
2019-05-03 07:38:03 -04:00
|
|
|
# random_string and random_string_with_symbols are used for a range of things,
|
|
|
|
# some cryptographically important, some less so. We use SystemRandom to make sure
|
|
|
|
# we get cryptographically-secure randoms.
|
|
|
|
rand = random.SystemRandom()
|
|
|
|
|
2014-08-12 10:10:52 -04:00
|
|
|
|
|
|
|
def random_string(length):
|
2019-06-20 05:32:02 -04:00
|
|
|
return "".join(rand.choice(string.ascii_letters) for _ in range(length))
|
2015-03-13 11:23:37 -04:00
|
|
|
|
|
|
|
|
|
|
|
def random_string_with_symbols(length):
|
2019-06-20 05:32:02 -04:00
|
|
|
return "".join(rand.choice(_string_with_symbols) for _ in range(length))
|
2015-06-30 05:31:59 -04:00
|
|
|
|
|
|
|
|
|
|
|
def is_ascii(s):
|
2020-05-15 14:17:06 -04:00
|
|
|
if isinstance(s, bytes):
|
|
|
|
try:
|
|
|
|
s.decode("ascii").encode("ascii")
|
|
|
|
except UnicodeDecodeError:
|
|
|
|
return False
|
|
|
|
except UnicodeEncodeError:
|
|
|
|
return False
|
2015-06-30 05:31:59 -04:00
|
|
|
return True
|
2017-04-25 09:38:51 -04:00
|
|
|
|
|
|
|
|
2020-01-24 09:28:40 -05:00
|
|
|
def assert_valid_client_secret(client_secret):
|
|
|
|
"""Validate that a given string matches the client_secret regex defined by the spec"""
|
|
|
|
if client_secret_regex.match(client_secret) is None:
|
|
|
|
raise SynapseError(
|
|
|
|
400, "Invalid client_secret parameter", errcode=Codes.INVALID_PARAM
|
|
|
|
)
|
2020-03-30 14:06:52 -04:00
|
|
|
|
|
|
|
|
|
|
|
def shortstr(iterable: Iterable, maxitems: int = 5) -> str:
|
|
|
|
"""If iterable has maxitems or fewer, return the stringification of a list
|
|
|
|
containing those items.
|
|
|
|
|
|
|
|
Otherwise, return the stringification of a a list with the first maxitems items,
|
|
|
|
followed by "...".
|
|
|
|
|
|
|
|
Args:
|
|
|
|
iterable: iterable to truncate
|
|
|
|
maxitems: number of items to return before truncating
|
|
|
|
"""
|
|
|
|
|
|
|
|
items = list(itertools.islice(iterable, maxitems + 1))
|
|
|
|
if len(items) <= maxitems:
|
|
|
|
return str(items)
|
|
|
|
return "[" + ", ".join(repr(r) for r in items[:maxitems]) + ", ...]"
|