2017-05-25 10:08:28 -05:00
|
|
|
// Copyright 2017 Vector Creations Ltd
|
|
|
|
//
|
|
|
|
// 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 12:16:53 -05:00
|
|
|
package routing
|
2017-05-25 10:08:28 -05:00
|
|
|
|
|
|
|
import (
|
2020-06-24 03:59:59 -05:00
|
|
|
"errors"
|
2017-07-07 08:11:32 -05:00
|
|
|
"net/http"
|
|
|
|
|
2020-06-24 03:59:59 -05:00
|
|
|
"github.com/matrix-org/dendrite/clientapi/auth/authtypes"
|
2017-05-25 10:08:28 -05:00
|
|
|
"github.com/matrix-org/dendrite/clientapi/httputil"
|
|
|
|
"github.com/matrix-org/dendrite/clientapi/jsonerror"
|
2018-07-17 09:36:04 -05:00
|
|
|
roomserverAPI "github.com/matrix-org/dendrite/roomserver/api"
|
2020-06-16 08:10:55 -05:00
|
|
|
"github.com/matrix-org/dendrite/userapi/api"
|
2020-06-17 06:05:56 -05:00
|
|
|
"github.com/matrix-org/dendrite/userapi/storage/accounts"
|
2020-05-13 08:53:25 -05:00
|
|
|
"github.com/matrix-org/gomatrixserverlib"
|
2017-05-25 10:08:28 -05:00
|
|
|
"github.com/matrix-org/util"
|
|
|
|
)
|
|
|
|
|
|
|
|
func JoinRoomByIDOrAlias(
|
|
|
|
req *http.Request,
|
2020-06-16 08:10:55 -05:00
|
|
|
device *api.Device,
|
2020-05-01 04:48:17 -05:00
|
|
|
rsAPI roomserverAPI.RoomserverInternalAPI,
|
2020-05-13 08:53:25 -05:00
|
|
|
accountDB accounts.Database,
|
2020-05-04 07:53:47 -05:00
|
|
|
roomIDOrAlias string,
|
2017-05-25 10:08:28 -05:00
|
|
|
) util.JSONResponse {
|
2020-05-04 07:53:47 -05:00
|
|
|
// Prepare to ask the roomserver to perform the room join.
|
|
|
|
joinReq := roomserverAPI.PerformJoinRequest{
|
|
|
|
RoomIDOrAlias: roomIDOrAlias,
|
|
|
|
UserID: device.UserID,
|
2020-06-19 07:29:27 -05:00
|
|
|
Content: map[string]interface{}{},
|
2017-09-21 11:00:48 -05:00
|
|
|
}
|
2020-05-04 07:53:47 -05:00
|
|
|
joinRes := roomserverAPI.PerformJoinResponse{}
|
2019-01-15 12:20:46 -06:00
|
|
|
|
2020-05-04 07:53:47 -05:00
|
|
|
// If content was provided in the request then incude that
|
|
|
|
// in the request. It'll get used as a part of the membership
|
|
|
|
// event content.
|
2020-06-17 11:41:45 -05:00
|
|
|
_ = httputil.UnmarshalJSONRequest(req, &joinReq.Content)
|
2019-01-15 12:20:46 -06:00
|
|
|
|
2020-05-13 08:53:25 -05:00
|
|
|
// Work out our localpart for the client profile request.
|
|
|
|
localpart, _, err := gomatrixserverlib.SplitID('@', device.UserID)
|
|
|
|
if err != nil {
|
|
|
|
util.GetLogger(req.Context()).WithError(err).Error("gomatrixserverlib.SplitID failed")
|
|
|
|
} else {
|
|
|
|
// Request our profile content to populate the request content with.
|
2020-06-24 03:59:59 -05:00
|
|
|
var profile *authtypes.Profile
|
|
|
|
profile, err = accountDB.GetProfileByLocalpart(req.Context(), localpart)
|
2020-05-13 08:53:25 -05:00
|
|
|
if err != nil {
|
|
|
|
util.GetLogger(req.Context()).WithError(err).Error("accountDB.GetProfileByLocalpart failed")
|
|
|
|
} else {
|
|
|
|
joinReq.Content["displayname"] = profile.DisplayName
|
|
|
|
joinReq.Content["avatar_url"] = profile.AvatarURL
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-04 07:53:47 -05:00
|
|
|
// Ask the roomserver to perform the join.
|
2020-06-24 03:59:59 -05:00
|
|
|
err = rsAPI.PerformJoin(req.Context(), &joinReq, &joinRes)
|
|
|
|
// Handle known errors first, if this is 0 then there will be no matches (eg on success)
|
|
|
|
switch joinRes.Error {
|
|
|
|
case roomserverAPI.JoinErrorBadRequest:
|
2017-05-25 10:08:28 -05:00
|
|
|
return util.JSONResponse{
|
2018-03-13 10:55:45 -05:00
|
|
|
Code: http.StatusBadRequest,
|
2020-06-24 03:59:59 -05:00
|
|
|
JSON: jsonerror.Unknown(joinRes.ErrMsg),
|
2017-07-28 09:29:12 -05:00
|
|
|
}
|
2020-06-24 03:59:59 -05:00
|
|
|
case roomserverAPI.JoinErrorNoRoom:
|
|
|
|
return util.JSONResponse{
|
|
|
|
Code: http.StatusNotFound,
|
|
|
|
JSON: jsonerror.NotFound(joinRes.ErrMsg),
|
|
|
|
}
|
|
|
|
case roomserverAPI.JoinErrorNotAllowed:
|
|
|
|
return util.JSONResponse{
|
|
|
|
Code: http.StatusForbidden,
|
|
|
|
JSON: jsonerror.Forbidden(joinRes.ErrMsg),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// this is always populated on generic errors
|
|
|
|
if joinRes.ErrMsg != "" {
|
|
|
|
return util.ErrorResponse(errors.New(joinRes.ErrMsg))
|
|
|
|
}
|
|
|
|
// this is set on network errors in polylith mode
|
|
|
|
if err != nil {
|
|
|
|
return util.ErrorResponse(err)
|
2017-05-25 10:08:28 -05:00
|
|
|
}
|
|
|
|
|
2020-05-04 07:53:47 -05:00
|
|
|
return util.JSONResponse{
|
2018-03-13 10:55:45 -05:00
|
|
|
Code: http.StatusOK,
|
2020-05-21 08:40:13 -05:00
|
|
|
// TODO: Put the response struct somewhere internal.
|
2017-05-25 10:08:28 -05:00
|
|
|
JSON: struct {
|
|
|
|
RoomID string `json:"room_id"`
|
2020-05-26 08:41:16 -05:00
|
|
|
}{joinRes.RoomID},
|
2020-05-04 07:53:47 -05:00
|
|
|
}
|
2017-05-25 10:08:28 -05:00
|
|
|
}
|