2020-07-02 14:41:18 +00:00
|
|
|
// Copyright 2020 The Matrix.org Foundation C.I.C.
|
2017-06-27 11:37:25 +00: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.
|
|
|
|
|
2017-10-11 17:16:53 +00:00
|
|
|
package routing
|
2017-06-27 11:37:25 +00:00
|
|
|
|
|
|
|
import (
|
2018-08-08 15:17:09 +00:00
|
|
|
"fmt"
|
2017-07-07 13:11:32 +00:00
|
|
|
"net/http"
|
|
|
|
|
2017-06-27 11:37:25 +00:00
|
|
|
"github.com/matrix-org/dendrite/clientapi/httputil"
|
|
|
|
"github.com/matrix-org/dendrite/clientapi/jsonerror"
|
2019-10-01 16:09:47 +00:00
|
|
|
federationSenderAPI "github.com/matrix-org/dendrite/federationsender/api"
|
2018-08-08 15:17:09 +00:00
|
|
|
roomserverAPI "github.com/matrix-org/dendrite/roomserver/api"
|
2020-12-02 17:41:00 +00:00
|
|
|
"github.com/matrix-org/dendrite/setup/config"
|
2020-06-16 13:10:55 +00:00
|
|
|
"github.com/matrix-org/dendrite/userapi/api"
|
2020-07-02 14:41:18 +00:00
|
|
|
userapi "github.com/matrix-org/dendrite/userapi/api"
|
2017-06-27 11:37:25 +00:00
|
|
|
"github.com/matrix-org/gomatrixserverlib"
|
|
|
|
"github.com/matrix-org/util"
|
|
|
|
)
|
|
|
|
|
2019-10-01 16:09:47 +00:00
|
|
|
type roomDirectoryResponse struct {
|
|
|
|
RoomID string `json:"room_id"`
|
|
|
|
Servers []string `json:"servers"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *roomDirectoryResponse) fillServers(servers []gomatrixserverlib.ServerName) {
|
|
|
|
r.Servers = make([]string, len(servers))
|
|
|
|
for i, s := range servers {
|
|
|
|
r.Servers[i] = string(s)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-27 11:37:25 +00:00
|
|
|
// DirectoryRoom looks up a room alias
|
|
|
|
func DirectoryRoom(
|
|
|
|
req *http.Request,
|
|
|
|
roomAlias string,
|
|
|
|
federation *gomatrixserverlib.FederationClient,
|
2020-08-10 13:18:04 +00:00
|
|
|
cfg *config.ClientAPI,
|
2020-05-01 09:48:17 +00:00
|
|
|
rsAPI roomserverAPI.RoomserverInternalAPI,
|
2020-04-29 10:34:31 +00:00
|
|
|
fedSenderAPI federationSenderAPI.FederationSenderInternalAPI,
|
2017-06-27 11:37:25 +00:00
|
|
|
) util.JSONResponse {
|
2017-07-07 13:11:32 +00:00
|
|
|
_, domain, err := gomatrixserverlib.SplitID('#', roomAlias)
|
2017-06-27 11:37:25 +00:00
|
|
|
if err != nil {
|
|
|
|
return util.JSONResponse{
|
2018-03-13 15:55:45 +00:00
|
|
|
Code: http.StatusBadRequest,
|
2017-06-27 11:37:25 +00:00
|
|
|
JSON: jsonerror.BadJSON("Room alias must be in the form '#localpart:domain'"),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-01 16:09:47 +00:00
|
|
|
var res roomDirectoryResponse
|
2017-07-28 10:31:43 +00:00
|
|
|
|
2019-10-01 16:09:47 +00:00
|
|
|
// Query the roomserver API to check if the alias exists locally.
|
2021-03-03 17:00:31 +00:00
|
|
|
queryReq := &roomserverAPI.GetRoomIDForAliasRequest{
|
|
|
|
Alias: roomAlias,
|
|
|
|
IncludeAppservices: true,
|
|
|
|
}
|
|
|
|
queryRes := &roomserverAPI.GetRoomIDForAliasResponse{}
|
|
|
|
if err = rsAPI.GetRoomIDForAlias(req.Context(), queryReq, queryRes); err != nil {
|
2020-03-02 16:20:44 +00:00
|
|
|
util.GetLogger(req.Context()).WithError(err).Error("rsAPI.GetRoomIDForAlias failed")
|
|
|
|
return jsonerror.InternalServerError()
|
2019-10-01 16:09:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
res.RoomID = queryRes.RoomID
|
|
|
|
|
|
|
|
if res.RoomID == "" {
|
|
|
|
// If we don't know it locally, do a federation query.
|
|
|
|
// But don't send the query to ourselves.
|
|
|
|
if domain != cfg.Matrix.ServerName {
|
|
|
|
fedRes, fedErr := federation.LookupRoomAlias(req.Context(), domain, roomAlias)
|
|
|
|
if fedErr != nil {
|
2018-08-08 15:17:09 +00:00
|
|
|
// TODO: Return 502 if the remote server errored.
|
|
|
|
// TODO: Return 504 if the remote server timed out.
|
2020-06-02 08:34:36 +00:00
|
|
|
util.GetLogger(req.Context()).WithError(fedErr).Error("federation.LookupRoomAlias failed")
|
2020-03-02 16:20:44 +00:00
|
|
|
return jsonerror.InternalServerError()
|
2018-08-08 15:17:09 +00:00
|
|
|
}
|
2019-10-01 16:09:47 +00:00
|
|
|
res.RoomID = fedRes.RoomID
|
|
|
|
res.fillServers(fedRes.Servers)
|
2018-08-08 15:17:09 +00:00
|
|
|
}
|
2019-10-01 16:09:47 +00:00
|
|
|
|
|
|
|
if res.RoomID == "" {
|
2018-08-08 15:17:09 +00:00
|
|
|
return util.JSONResponse{
|
2019-10-01 16:09:47 +00:00
|
|
|
Code: http.StatusNotFound,
|
|
|
|
JSON: jsonerror.NotFound(
|
|
|
|
fmt.Sprintf("Room alias %s not found", roomAlias),
|
|
|
|
),
|
2017-06-27 11:37:25 +00:00
|
|
|
}
|
|
|
|
}
|
2019-10-01 16:09:47 +00:00
|
|
|
} else {
|
|
|
|
joinedHostsReq := federationSenderAPI.QueryJoinedHostServerNamesInRoomRequest{RoomID: res.RoomID}
|
|
|
|
var joinedHostsRes federationSenderAPI.QueryJoinedHostServerNamesInRoomResponse
|
|
|
|
if err = fedSenderAPI.QueryJoinedHostServerNamesInRoom(req.Context(), &joinedHostsReq, &joinedHostsRes); err != nil {
|
2020-03-02 16:20:44 +00:00
|
|
|
util.GetLogger(req.Context()).WithError(err).Error("fedSenderAPI.QueryJoinedHostServerNamesInRoom failed")
|
|
|
|
return jsonerror.InternalServerError()
|
2019-10-01 16:09:47 +00:00
|
|
|
}
|
|
|
|
res.fillServers(joinedHostsRes.ServerNames)
|
2017-07-28 10:31:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return util.JSONResponse{
|
2019-10-01 16:09:47 +00:00
|
|
|
Code: http.StatusOK,
|
|
|
|
JSON: res,
|
2017-07-28 10:31:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetLocalAlias implements PUT /directory/room/{roomAlias}
|
|
|
|
// TODO: Check if the user has the power level to set an alias
|
|
|
|
func SetLocalAlias(
|
|
|
|
req *http.Request,
|
2020-06-16 13:10:55 +00:00
|
|
|
device *api.Device,
|
2017-07-28 10:31:43 +00:00
|
|
|
alias string,
|
2020-08-10 13:18:04 +00:00
|
|
|
cfg *config.ClientAPI,
|
2020-05-01 09:48:17 +00:00
|
|
|
aliasAPI roomserverAPI.RoomserverInternalAPI,
|
2017-07-28 10:31:43 +00:00
|
|
|
) util.JSONResponse {
|
|
|
|
_, domain, err := gomatrixserverlib.SplitID('#', alias)
|
|
|
|
if err != nil {
|
|
|
|
return util.JSONResponse{
|
2018-03-13 15:55:45 +00:00
|
|
|
Code: http.StatusBadRequest,
|
2017-07-28 10:31:43 +00:00
|
|
|
JSON: jsonerror.BadJSON("Room alias must be in the form '#localpart:domain'"),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if domain != cfg.Matrix.ServerName {
|
|
|
|
return util.JSONResponse{
|
2018-03-13 15:55:45 +00:00
|
|
|
Code: http.StatusForbidden,
|
2017-07-28 10:31:43 +00:00
|
|
|
JSON: jsonerror.Forbidden("Alias must be on local homeserver"),
|
|
|
|
}
|
|
|
|
}
|
2017-06-27 11:37:25 +00:00
|
|
|
|
2018-06-29 11:09:00 +00:00
|
|
|
// Check that the alias does not fall within an exclusive namespace of an
|
|
|
|
// application service
|
2018-07-06 10:29:15 +00:00
|
|
|
// TODO: This code should eventually be refactored with:
|
|
|
|
// 1. The new method for checking for things matching an AS's namespace
|
|
|
|
// 2. Using an overall Regex object for all AS's just like we did for usernames
|
2020-08-10 13:18:04 +00:00
|
|
|
|
2018-06-29 11:09:00 +00:00
|
|
|
for _, appservice := range cfg.Derived.ApplicationServices {
|
2019-07-12 13:36:17 +00:00
|
|
|
// Don't prevent AS from creating aliases in its own namespace
|
|
|
|
// Note that Dendrite uses SenderLocalpart as UserID for AS users
|
|
|
|
if device.UserID != appservice.SenderLocalpart {
|
|
|
|
if aliasNamespaces, ok := appservice.NamespaceMap["aliases"]; ok {
|
|
|
|
for _, namespace := range aliasNamespaces {
|
|
|
|
if namespace.Exclusive && namespace.RegexpObject.MatchString(alias) {
|
|
|
|
return util.JSONResponse{
|
|
|
|
Code: http.StatusBadRequest,
|
|
|
|
JSON: jsonerror.ASExclusive("Alias is reserved by an application service"),
|
|
|
|
}
|
2018-06-29 11:09:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-28 10:31:43 +00:00
|
|
|
var r struct {
|
|
|
|
RoomID string `json:"room_id"`
|
|
|
|
}
|
|
|
|
if resErr := httputil.UnmarshalJSONRequest(req, &r); resErr != nil {
|
|
|
|
return *resErr
|
|
|
|
}
|
|
|
|
|
2018-08-08 15:17:09 +00:00
|
|
|
queryReq := roomserverAPI.SetRoomAliasRequest{
|
2017-07-28 10:31:43 +00:00
|
|
|
UserID: device.UserID,
|
|
|
|
RoomID: r.RoomID,
|
|
|
|
Alias: alias,
|
|
|
|
}
|
2018-08-08 15:17:09 +00:00
|
|
|
var queryRes roomserverAPI.SetRoomAliasResponse
|
2017-09-13 12:37:50 +00:00
|
|
|
if err := aliasAPI.SetRoomAlias(req.Context(), &queryReq, &queryRes); err != nil {
|
2020-03-02 16:20:44 +00:00
|
|
|
util.GetLogger(req.Context()).WithError(err).Error("aliasAPI.SetRoomAlias failed")
|
|
|
|
return jsonerror.InternalServerError()
|
2017-07-28 10:31:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if queryRes.AliasExists {
|
2017-06-27 11:37:25 +00:00
|
|
|
return util.JSONResponse{
|
2018-03-13 15:55:45 +00:00
|
|
|
Code: http.StatusConflict,
|
2017-07-28 10:31:43 +00:00
|
|
|
JSON: jsonerror.Unknown("The alias " + alias + " already exists."),
|
2017-06-27 11:37:25 +00:00
|
|
|
}
|
|
|
|
}
|
2017-07-28 10:31:43 +00:00
|
|
|
|
|
|
|
return util.JSONResponse{
|
2018-03-13 15:55:45 +00:00
|
|
|
Code: http.StatusOK,
|
2017-07-28 10:31:43 +00:00
|
|
|
JSON: struct{}{},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// RemoveLocalAlias implements DELETE /directory/room/{roomAlias}
|
|
|
|
func RemoveLocalAlias(
|
|
|
|
req *http.Request,
|
2020-06-16 13:10:55 +00:00
|
|
|
device *api.Device,
|
2017-07-28 10:31:43 +00:00
|
|
|
alias string,
|
2020-05-01 09:48:17 +00:00
|
|
|
aliasAPI roomserverAPI.RoomserverInternalAPI,
|
2017-07-28 10:31:43 +00:00
|
|
|
) util.JSONResponse {
|
2019-08-07 03:00:58 +00:00
|
|
|
|
|
|
|
creatorQueryReq := roomserverAPI.GetCreatorIDForAliasRequest{
|
|
|
|
Alias: alias,
|
|
|
|
}
|
|
|
|
var creatorQueryRes roomserverAPI.GetCreatorIDForAliasResponse
|
|
|
|
if err := aliasAPI.GetCreatorIDForAlias(req.Context(), &creatorQueryReq, &creatorQueryRes); err != nil {
|
2020-03-02 16:20:44 +00:00
|
|
|
util.GetLogger(req.Context()).WithError(err).Error("aliasAPI.GetCreatorIDForAlias failed")
|
|
|
|
return jsonerror.InternalServerError()
|
2019-08-07 03:00:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if creatorQueryRes.UserID == "" {
|
|
|
|
return util.JSONResponse{
|
|
|
|
Code: http.StatusNotFound,
|
|
|
|
JSON: jsonerror.NotFound("Alias does not exist"),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if creatorQueryRes.UserID != device.UserID {
|
|
|
|
// TODO: Still allow deletion if user is admin
|
|
|
|
return util.JSONResponse{
|
|
|
|
Code: http.StatusForbidden,
|
|
|
|
JSON: jsonerror.Forbidden("You do not have permission to delete this alias"),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-08-08 15:17:09 +00:00
|
|
|
queryReq := roomserverAPI.RemoveRoomAliasRequest{
|
2017-07-28 10:31:43 +00:00
|
|
|
Alias: alias,
|
|
|
|
UserID: device.UserID,
|
|
|
|
}
|
2018-08-08 15:17:09 +00:00
|
|
|
var queryRes roomserverAPI.RemoveRoomAliasResponse
|
2017-09-13 12:37:50 +00:00
|
|
|
if err := aliasAPI.RemoveRoomAlias(req.Context(), &queryReq, &queryRes); err != nil {
|
2020-03-02 16:20:44 +00:00
|
|
|
util.GetLogger(req.Context()).WithError(err).Error("aliasAPI.RemoveRoomAlias failed")
|
|
|
|
return jsonerror.InternalServerError()
|
2017-07-28 10:31:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return util.JSONResponse{
|
2018-03-13 15:55:45 +00:00
|
|
|
Code: http.StatusOK,
|
2017-07-28 10:31:43 +00:00
|
|
|
JSON: struct{}{},
|
|
|
|
}
|
2017-06-27 11:37:25 +00:00
|
|
|
}
|
2020-07-02 14:41:18 +00:00
|
|
|
|
|
|
|
type roomVisibility struct {
|
|
|
|
Visibility string `json:"visibility"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetVisibility implements GET /directory/list/room/{roomID}
|
|
|
|
func GetVisibility(
|
|
|
|
req *http.Request, rsAPI roomserverAPI.RoomserverInternalAPI,
|
|
|
|
roomID string,
|
|
|
|
) util.JSONResponse {
|
|
|
|
var res roomserverAPI.QueryPublishedRoomsResponse
|
|
|
|
err := rsAPI.QueryPublishedRooms(req.Context(), &roomserverAPI.QueryPublishedRoomsRequest{
|
|
|
|
RoomID: roomID,
|
|
|
|
}, &res)
|
|
|
|
if err != nil {
|
|
|
|
util.GetLogger(req.Context()).WithError(err).Error("QueryPublishedRooms failed")
|
|
|
|
return jsonerror.InternalServerError()
|
|
|
|
}
|
|
|
|
|
|
|
|
var v roomVisibility
|
|
|
|
if len(res.RoomIDs) == 1 {
|
|
|
|
v.Visibility = gomatrixserverlib.Public
|
|
|
|
} else {
|
|
|
|
v.Visibility = "private"
|
|
|
|
}
|
|
|
|
|
|
|
|
return util.JSONResponse{
|
|
|
|
Code: http.StatusOK,
|
|
|
|
JSON: v,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// SetVisibility implements PUT /directory/list/room/{roomID}
|
|
|
|
// TODO: Allow admin users to edit the room visibility
|
|
|
|
func SetVisibility(
|
2020-09-07 13:47:59 +00:00
|
|
|
req *http.Request, rsAPI roomserverAPI.RoomserverInternalAPI, dev *userapi.Device,
|
2020-07-02 14:41:18 +00:00
|
|
|
roomID string,
|
|
|
|
) util.JSONResponse {
|
2020-09-04 11:30:56 +00:00
|
|
|
resErr := checkMemberInRoom(req.Context(), rsAPI, dev.UserID, roomID)
|
2020-07-02 14:41:18 +00:00
|
|
|
if resErr != nil {
|
|
|
|
return *resErr
|
|
|
|
}
|
|
|
|
|
|
|
|
queryEventsReq := roomserverAPI.QueryLatestEventsAndStateRequest{
|
|
|
|
RoomID: roomID,
|
|
|
|
StateToFetch: []gomatrixserverlib.StateKeyTuple{{
|
|
|
|
EventType: gomatrixserverlib.MRoomPowerLevels,
|
|
|
|
StateKey: "",
|
|
|
|
}},
|
|
|
|
}
|
|
|
|
var queryEventsRes roomserverAPI.QueryLatestEventsAndStateResponse
|
|
|
|
err := rsAPI.QueryLatestEventsAndState(req.Context(), &queryEventsReq, &queryEventsRes)
|
|
|
|
if err != nil || len(queryEventsRes.StateEvents) == 0 {
|
|
|
|
util.GetLogger(req.Context()).WithError(err).Error("could not query events from room")
|
|
|
|
return jsonerror.InternalServerError()
|
|
|
|
}
|
|
|
|
|
|
|
|
// NOTSPEC: Check if the user's power is greater than power required to change m.room.aliases event
|
|
|
|
power, _ := gomatrixserverlib.NewPowerLevelContentFromEvent(queryEventsRes.StateEvents[0].Event)
|
|
|
|
if power.UserLevel(dev.UserID) < power.EventLevel(gomatrixserverlib.MRoomAliases, true) {
|
|
|
|
return util.JSONResponse{
|
|
|
|
Code: http.StatusForbidden,
|
|
|
|
JSON: jsonerror.Forbidden("userID doesn't have power level to change visibility"),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var v roomVisibility
|
|
|
|
if reqErr := httputil.UnmarshalJSONRequest(req, &v); reqErr != nil {
|
|
|
|
return *reqErr
|
|
|
|
}
|
|
|
|
|
|
|
|
var publishRes roomserverAPI.PerformPublishResponse
|
|
|
|
rsAPI.PerformPublish(req.Context(), &roomserverAPI.PerformPublishRequest{
|
|
|
|
RoomID: roomID,
|
|
|
|
Visibility: v.Visibility,
|
|
|
|
}, &publishRes)
|
|
|
|
if publishRes.Error != nil {
|
|
|
|
util.GetLogger(req.Context()).WithError(publishRes.Error).Error("PerformPublish failed")
|
|
|
|
return publishRes.Error.JSONResponse()
|
|
|
|
}
|
|
|
|
|
|
|
|
return util.JSONResponse{
|
|
|
|
Code: http.StatusOK,
|
|
|
|
JSON: struct{}{},
|
|
|
|
}
|
|
|
|
}
|