2017-05-25 17:08:28 +02: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 19:16:53 +02:00
|
|
|
package routing
|
2017-05-25 17:08:28 +02:00
|
|
|
|
|
|
|
import (
|
2017-07-07 15:11:32 +02:00
|
|
|
"net/http"
|
|
|
|
|
2020-06-24 10:59:59 +02:00
|
|
|
"github.com/matrix-org/dendrite/clientapi/auth/authtypes"
|
2017-05-25 17:08:28 +02:00
|
|
|
"github.com/matrix-org/dendrite/clientapi/httputil"
|
2018-07-17 16:36:04 +02:00
|
|
|
roomserverAPI "github.com/matrix-org/dendrite/roomserver/api"
|
2020-06-16 15:10:55 +02:00
|
|
|
"github.com/matrix-org/dendrite/userapi/api"
|
2020-06-17 13:05:56 +02:00
|
|
|
"github.com/matrix-org/dendrite/userapi/storage/accounts"
|
2020-05-13 15:53:25 +02:00
|
|
|
"github.com/matrix-org/gomatrixserverlib"
|
2017-05-25 17:08:28 +02:00
|
|
|
"github.com/matrix-org/util"
|
|
|
|
)
|
|
|
|
|
|
|
|
func JoinRoomByIDOrAlias(
|
|
|
|
req *http.Request,
|
2020-06-16 15:10:55 +02:00
|
|
|
device *api.Device,
|
2020-05-01 11:48:17 +02:00
|
|
|
rsAPI roomserverAPI.RoomserverInternalAPI,
|
2020-05-13 15:53:25 +02:00
|
|
|
accountDB accounts.Database,
|
2020-05-04 14:53:47 +02:00
|
|
|
roomIDOrAlias string,
|
2017-05-25 17:08:28 +02:00
|
|
|
) util.JSONResponse {
|
2020-05-04 14:53:47 +02:00
|
|
|
// Prepare to ask the roomserver to perform the room join.
|
|
|
|
joinReq := roomserverAPI.PerformJoinRequest{
|
|
|
|
RoomIDOrAlias: roomIDOrAlias,
|
|
|
|
UserID: device.UserID,
|
2020-06-19 14:29:27 +02:00
|
|
|
Content: map[string]interface{}{},
|
2017-09-21 18:00:48 +02:00
|
|
|
}
|
2020-05-04 14:53:47 +02:00
|
|
|
joinRes := roomserverAPI.PerformJoinResponse{}
|
2019-01-15 19:20:46 +01:00
|
|
|
|
2020-05-04 14:53:47 +02: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 18:41:45 +02:00
|
|
|
_ = httputil.UnmarshalJSONRequest(req, &joinReq.Content)
|
2019-01-15 19:20:46 +01:00
|
|
|
|
2020-05-13 15:53:25 +02: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 10:59:59 +02:00
|
|
|
var profile *authtypes.Profile
|
|
|
|
profile, err = accountDB.GetProfileByLocalpart(req.Context(), localpart)
|
2020-05-13 15:53:25 +02: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 14:53:47 +02:00
|
|
|
// Ask the roomserver to perform the join.
|
2020-06-24 16:06:14 +02:00
|
|
|
rsAPI.PerformJoin(req.Context(), &joinReq, &joinRes)
|
|
|
|
if joinRes.Error != nil {
|
|
|
|
return joinRes.Error.JSONResponse()
|
2017-05-25 17:08:28 +02:00
|
|
|
}
|
|
|
|
|
2020-05-04 14:53:47 +02:00
|
|
|
return util.JSONResponse{
|
2018-03-13 16:55:45 +01:00
|
|
|
Code: http.StatusOK,
|
2020-05-21 15:40:13 +02:00
|
|
|
// TODO: Put the response struct somewhere internal.
|
2017-05-25 17:08:28 +02:00
|
|
|
JSON: struct {
|
|
|
|
RoomID string `json:"room_id"`
|
2020-05-26 15:41:16 +02:00
|
|
|
}{joinRes.RoomID},
|
2020-05-04 14:53:47 +02:00
|
|
|
}
|
2017-05-25 17:08:28 +02:00
|
|
|
}
|