2020-12-03 11:11:46 +00:00
|
|
|
// Copyright 2020 New Vector 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.
|
|
|
|
|
|
|
|
package perform
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"fmt"
|
|
|
|
"strings"
|
|
|
|
|
2021-11-24 10:45:23 +00:00
|
|
|
fsAPI "github.com/matrix-org/dendrite/federationapi/api"
|
2020-12-03 11:11:46 +00:00
|
|
|
"github.com/matrix-org/dendrite/roomserver/api"
|
|
|
|
"github.com/matrix-org/dendrite/roomserver/internal/input"
|
|
|
|
"github.com/matrix-org/dendrite/setup/config"
|
|
|
|
"github.com/matrix-org/gomatrixserverlib"
|
2023-04-19 15:50:33 +01:00
|
|
|
"github.com/matrix-org/gomatrixserverlib/spec"
|
2020-12-03 11:11:46 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type Unpeeker struct {
|
2023-04-19 15:50:33 +01:00
|
|
|
ServerName spec.ServerName
|
2020-12-03 11:11:46 +00:00
|
|
|
Cfg *config.RoomServer
|
2022-05-05 19:30:38 +01:00
|
|
|
FSAPI fsAPI.RoomserverFederationAPI
|
2023-02-24 08:40:20 +00:00
|
|
|
Inputer *input.Inputer
|
2020-12-03 11:11:46 +00:00
|
|
|
}
|
|
|
|
|
2023-04-28 16:46:01 +01:00
|
|
|
// PerformUnpeek handles un-peeking matrix rooms, including over federation by talking to the federationapi.
|
2020-12-03 11:11:46 +00:00
|
|
|
func (r *Unpeeker) PerformUnpeek(
|
|
|
|
ctx context.Context,
|
2023-04-28 16:46:01 +01:00
|
|
|
roomID, userID, deviceID string,
|
2020-12-03 11:11:46 +00:00
|
|
|
) error {
|
|
|
|
// FIXME: there's way too much duplication with performJoin
|
2023-04-28 16:46:01 +01:00
|
|
|
_, domain, err := gomatrixserverlib.SplitID('@', userID)
|
2020-12-03 11:11:46 +00:00
|
|
|
if err != nil {
|
2023-04-28 16:46:01 +01:00
|
|
|
return api.ErrInvalidID{Err: fmt.Errorf("supplied user ID %q in incorrect format", userID)}
|
2020-12-03 11:11:46 +00:00
|
|
|
}
|
2022-10-26 12:59:19 +01:00
|
|
|
if !r.Cfg.Matrix.IsLocalServerName(domain) {
|
2023-04-28 16:46:01 +01:00
|
|
|
return api.ErrInvalidID{Err: fmt.Errorf("user %q does not belong to this homeserver", userID)}
|
2020-12-03 11:11:46 +00:00
|
|
|
}
|
2023-04-28 16:46:01 +01:00
|
|
|
if strings.HasPrefix(roomID, "!") {
|
|
|
|
return r.performUnpeekRoomByID(ctx, roomID, userID, deviceID)
|
2020-12-03 11:11:46 +00:00
|
|
|
}
|
2023-04-28 16:46:01 +01:00
|
|
|
return api.ErrInvalidID{Err: fmt.Errorf("room ID %q is invalid", roomID)}
|
2020-12-03 11:11:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (r *Unpeeker) performUnpeekRoomByID(
|
|
|
|
_ context.Context,
|
2023-04-28 16:46:01 +01:00
|
|
|
roomID, userID, deviceID string,
|
2020-12-03 11:11:46 +00:00
|
|
|
) (err error) {
|
|
|
|
// Get the domain part of the room ID.
|
2023-04-28 16:46:01 +01:00
|
|
|
_, _, err = gomatrixserverlib.SplitID('!', roomID)
|
2020-12-03 11:11:46 +00:00
|
|
|
if err != nil {
|
2023-04-28 16:46:01 +01:00
|
|
|
return api.ErrInvalidID{Err: fmt.Errorf("room ID %q is invalid: %w", roomID, err)}
|
2020-12-03 11:11:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: handle federated peeks
|
2023-04-28 16:46:01 +01:00
|
|
|
// By this point, if req.RoomIDOrAlias contained an alias, then
|
|
|
|
// it will have been overwritten with a room ID by performPeekRoomByAlias.
|
|
|
|
// We should now include this in the response so that the CS API can
|
|
|
|
// return the right room ID.
|
|
|
|
return r.Inputer.OutputProducer.ProduceRoomEvents(roomID, []api.OutputEvent{
|
2020-12-03 11:11:46 +00:00
|
|
|
{
|
|
|
|
Type: api.OutputTypeRetirePeek,
|
|
|
|
RetirePeek: &api.OutputRetirePeek{
|
2023-04-28 16:46:01 +01:00
|
|
|
RoomID: roomID,
|
|
|
|
UserID: userID,
|
|
|
|
DeviceID: deviceID,
|
2020-12-03 11:11:46 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
})
|
|
|
|
}
|