2018-12-05 08:38:58 -05:00
|
|
|
# -*- coding: utf-8 -*-
|
2019-04-11 12:08:13 -04:00
|
|
|
# Copyright 2018 New Vector Ltd
|
2018-12-05 08:38:58 -05: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.
|
|
|
|
|
|
|
|
import logging
|
|
|
|
|
|
|
|
from twisted.web.resource import Resource
|
2019-02-18 10:52:26 -05:00
|
|
|
|
2019-02-18 09:59:23 -05:00
|
|
|
from synapse.http.server import set_cors_headers
|
2020-08-20 10:32:33 -04:00
|
|
|
from synapse.util import json_encoder
|
2018-12-05 08:38:58 -05:00
|
|
|
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
|
|
|
2020-09-04 06:54:56 -04:00
|
|
|
class WellKnownBuilder:
|
2018-12-05 08:38:58 -05:00
|
|
|
"""Utility to construct the well-known response
|
|
|
|
|
|
|
|
Args:
|
|
|
|
hs (synapse.server.HomeServer):
|
|
|
|
"""
|
2019-06-20 05:32:02 -04:00
|
|
|
|
2018-12-05 08:38:58 -05:00
|
|
|
def __init__(self, hs):
|
|
|
|
self._config = hs.config
|
|
|
|
|
|
|
|
def get_well_known(self):
|
2019-08-26 22:01:47 -04:00
|
|
|
# if we don't have a public_baseurl, we can't help much here.
|
2018-12-05 08:38:58 -05:00
|
|
|
if self._config.public_baseurl is None:
|
|
|
|
return None
|
|
|
|
|
2019-06-20 05:32:02 -04:00
|
|
|
result = {"m.homeserver": {"base_url": self._config.public_baseurl}}
|
2018-12-05 08:38:58 -05:00
|
|
|
|
|
|
|
if self._config.default_identity_server:
|
|
|
|
result["m.identity_server"] = {
|
2019-06-20 05:32:02 -04:00
|
|
|
"base_url": self._config.default_identity_server
|
2018-12-05 08:38:58 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return result
|
|
|
|
|
|
|
|
|
|
|
|
class WellKnownResource(Resource):
|
|
|
|
"""A Twisted web resource which renders the .well-known file"""
|
|
|
|
|
|
|
|
isLeaf = 1
|
|
|
|
|
|
|
|
def __init__(self, hs):
|
|
|
|
Resource.__init__(self)
|
|
|
|
self._well_known_builder = WellKnownBuilder(hs)
|
|
|
|
|
|
|
|
def render_GET(self, request):
|
2019-02-14 14:53:12 -05:00
|
|
|
set_cors_headers(request)
|
2018-12-05 08:38:58 -05:00
|
|
|
r = self._well_known_builder.get_well_known()
|
|
|
|
if not r:
|
|
|
|
request.setResponseCode(404)
|
|
|
|
request.setHeader(b"Content-Type", b"text/plain")
|
2019-06-20 05:32:02 -04:00
|
|
|
return b".well-known not available"
|
2018-12-05 08:38:58 -05:00
|
|
|
|
2019-04-24 12:44:06 -04:00
|
|
|
logger.debug("returning: %s", r)
|
2018-12-05 08:38:58 -05:00
|
|
|
request.setHeader(b"Content-Type", b"application/json")
|
2020-08-20 10:32:33 -04:00
|
|
|
return json_encoder.encode(r).encode("utf-8")
|