2017-08-21 17:34:26 +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-08-21 17:34:26 +02:00
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
|
|
|
|
"github.com/matrix-org/dendrite/clientapi/auth/authtypes"
|
|
|
|
"github.com/matrix-org/dendrite/clientapi/httputil"
|
|
|
|
"github.com/matrix-org/dendrite/clientapi/jsonerror"
|
|
|
|
"github.com/matrix-org/dendrite/common/config"
|
|
|
|
"github.com/matrix-org/dendrite/roomserver/api"
|
2017-08-24 17:00:14 +02:00
|
|
|
"github.com/matrix-org/gomatrixserverlib"
|
2017-08-21 17:34:26 +02:00
|
|
|
"github.com/matrix-org/util"
|
|
|
|
)
|
|
|
|
|
2017-08-24 17:00:14 +02:00
|
|
|
type response struct {
|
|
|
|
Chunk []gomatrixserverlib.ClientEvent `json:"chunk"`
|
|
|
|
}
|
|
|
|
|
2017-08-21 17:34:26 +02:00
|
|
|
// GetMemberships implements GET /rooms/{roomId}/members
|
|
|
|
func GetMemberships(
|
2017-08-24 17:00:14 +02:00
|
|
|
req *http.Request, device *authtypes.Device, roomID string, joinedOnly bool,
|
2017-11-15 11:25:48 +01:00
|
|
|
_ config.Dendrite,
|
2017-08-21 17:34:26 +02:00
|
|
|
queryAPI api.RoomserverQueryAPI,
|
|
|
|
) util.JSONResponse {
|
|
|
|
queryReq := api.QueryMembershipsForRoomRequest{
|
2017-08-24 17:00:14 +02:00
|
|
|
JoinedOnly: joinedOnly,
|
|
|
|
RoomID: roomID,
|
|
|
|
Sender: device.UserID,
|
2017-08-21 17:34:26 +02:00
|
|
|
}
|
|
|
|
var queryRes api.QueryMembershipsForRoomResponse
|
2017-09-13 14:37:50 +02:00
|
|
|
if err := queryAPI.QueryMembershipsForRoom(req.Context(), &queryReq, &queryRes); err != nil {
|
2017-08-21 17:34:26 +02:00
|
|
|
return httputil.LogThenError(req, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if !queryRes.HasBeenInRoom {
|
|
|
|
return util.JSONResponse{
|
2018-03-13 16:55:45 +01:00
|
|
|
Code: http.StatusForbidden,
|
2017-08-21 17:34:26 +02:00
|
|
|
JSON: jsonerror.Forbidden("You aren't a member of the room and weren't previously a member of the room."),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return util.JSONResponse{
|
2018-03-13 16:55:45 +01:00
|
|
|
Code: http.StatusOK,
|
2017-08-24 17:00:14 +02:00
|
|
|
JSON: response{queryRes.JoinEvents},
|
2017-08-21 17:34:26 +02:00
|
|
|
}
|
|
|
|
}
|