2020-05-04 13:53:47 +01:00
|
|
|
package api
|
|
|
|
|
|
|
|
import (
|
2023-05-31 16:27:08 +01:00
|
|
|
"crypto/ed25519"
|
|
|
|
"encoding/json"
|
|
|
|
"time"
|
|
|
|
|
2023-04-28 16:46:01 +01:00
|
|
|
"github.com/matrix-org/dendrite/roomserver/types"
|
2020-05-04 13:53:47 +01:00
|
|
|
"github.com/matrix-org/gomatrixserverlib"
|
2023-04-19 15:50:33 +01:00
|
|
|
"github.com/matrix-org/gomatrixserverlib/spec"
|
2020-06-24 09:59:59 +01:00
|
|
|
)
|
|
|
|
|
2023-05-31 16:27:08 +01:00
|
|
|
type PerformCreateRoomRequest struct {
|
|
|
|
InvitedUsers []string
|
|
|
|
RoomName string
|
|
|
|
Visibility string
|
|
|
|
Topic string
|
|
|
|
StatePreset string
|
|
|
|
CreationContent json.RawMessage
|
|
|
|
InitialState []gomatrixserverlib.FledglingEvent
|
|
|
|
RoomAliasName string
|
|
|
|
RoomVersion gomatrixserverlib.RoomVersion
|
|
|
|
PowerLevelContentOverride json.RawMessage
|
|
|
|
IsDirect bool
|
|
|
|
|
|
|
|
UserDisplayName string
|
|
|
|
UserAvatarURL string
|
|
|
|
KeyID gomatrixserverlib.KeyID
|
|
|
|
PrivateKey ed25519.PrivateKey
|
|
|
|
EventTime time.Time
|
|
|
|
}
|
|
|
|
|
2020-05-04 13:53:47 +01:00
|
|
|
type PerformJoinRequest struct {
|
2023-04-19 15:50:33 +01:00
|
|
|
RoomIDOrAlias string `json:"room_id_or_alias"`
|
|
|
|
UserID string `json:"user_id"`
|
|
|
|
IsGuest bool `json:"is_guest"`
|
|
|
|
Content map[string]interface{} `json:"content"`
|
|
|
|
ServerNames []spec.ServerName `json:"server_names"`
|
|
|
|
Unsigned map[string]interface{} `json:"unsigned"`
|
2020-05-04 13:53:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
type PerformLeaveRequest struct {
|
2023-06-12 12:19:25 +01:00
|
|
|
RoomID string
|
|
|
|
Leaver spec.UserID
|
2020-05-04 13:53:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
type PerformLeaveResponse struct {
|
2022-02-18 15:05:03 +00:00
|
|
|
Code int `json:"code,omitempty"`
|
|
|
|
Message interface{} `json:"message,omitempty"`
|
2020-05-04 13:53:47 +01:00
|
|
|
}
|
2020-06-11 19:50:40 +01:00
|
|
|
|
2023-07-06 16:15:24 +01:00
|
|
|
type InviteInput struct {
|
2024-02-13 18:28:52 +00:00
|
|
|
RoomID spec.RoomID
|
|
|
|
Inviter spec.UserID
|
|
|
|
Invitee spec.UserID
|
|
|
|
Reason string
|
|
|
|
IsDirect bool
|
|
|
|
KeyID gomatrixserverlib.KeyID
|
|
|
|
PrivateKey ed25519.PrivateKey
|
|
|
|
EventTime time.Time
|
2023-07-06 16:15:24 +01:00
|
|
|
}
|
|
|
|
|
2020-06-24 15:06:14 +01:00
|
|
|
type PerformInviteRequest struct {
|
2023-07-06 16:15:24 +01:00
|
|
|
InviteInput InviteInput
|
2023-05-31 17:33:49 +01:00
|
|
|
InviteRoomState []gomatrixserverlib.InviteStrippedState `json:"invite_room_state"`
|
|
|
|
SendAsServer string `json:"send_as_server"`
|
|
|
|
TransactionID *TransactionID `json:"transaction_id"`
|
2020-06-24 15:06:14 +01:00
|
|
|
}
|
|
|
|
|
2020-09-10 14:39:18 +01:00
|
|
|
type PerformPeekRequest struct {
|
2023-04-19 15:50:33 +01:00
|
|
|
RoomIDOrAlias string `json:"room_id_or_alias"`
|
|
|
|
UserID string `json:"user_id"`
|
|
|
|
DeviceID string `json:"device_id"`
|
|
|
|
ServerNames []spec.ServerName `json:"server_names"`
|
2020-09-10 14:39:18 +01:00
|
|
|
}
|
|
|
|
|
2020-06-11 19:50:40 +01:00
|
|
|
// PerformBackfillRequest is a request to PerformBackfill.
|
|
|
|
type PerformBackfillRequest struct {
|
|
|
|
// The room to backfill
|
|
|
|
RoomID string `json:"room_id"`
|
|
|
|
// A map of backwards extremity event ID to a list of its prev_event IDs.
|
|
|
|
BackwardsExtremities map[string][]string `json:"backwards_extremities"`
|
|
|
|
// The maximum number of events to retrieve.
|
|
|
|
Limit int `json:"limit"`
|
|
|
|
// The server interested in the events.
|
2023-04-19 15:50:33 +01:00
|
|
|
ServerName spec.ServerName `json:"server_name"`
|
2022-11-15 15:05:23 +00:00
|
|
|
// Which virtual host are we doing this for?
|
2023-04-19 15:50:33 +01:00
|
|
|
VirtualHost spec.ServerName `json:"virtual_host"`
|
2020-06-11 19:50:40 +01:00
|
|
|
}
|
|
|
|
|
2024-01-20 21:26:57 +00:00
|
|
|
// limitPrevEventIDs is the maximum of eventIDs we
|
|
|
|
// return when calling PrevEventIDs.
|
|
|
|
const limitPrevEventIDs = 100
|
|
|
|
|
|
|
|
// PrevEventIDs returns the prev_event IDs of either 100 backwards extremities or
|
|
|
|
// len(r.BackwardsExtremities). Limited to 100, due to Synapse/Dendrite stopping after reaching
|
|
|
|
// this limit. (which sounds sane)
|
2020-06-11 19:50:40 +01:00
|
|
|
func (r *PerformBackfillRequest) PrevEventIDs() []string {
|
2024-01-20 21:26:57 +00:00
|
|
|
var uniqueIDs map[string]struct{}
|
|
|
|
|
|
|
|
// Create a unique eventID map of either 100 or len(r.BackwardsExtremities).
|
|
|
|
// 100 since Synapse/Dendrite stops after reaching 100 events.
|
|
|
|
if len(r.BackwardsExtremities) > limitPrevEventIDs {
|
|
|
|
uniqueIDs = make(map[string]struct{}, limitPrevEventIDs)
|
|
|
|
} else {
|
|
|
|
uniqueIDs = make(map[string]struct{}, len(r.BackwardsExtremities))
|
|
|
|
}
|
|
|
|
|
|
|
|
outerLoop:
|
2020-06-11 19:50:40 +01:00
|
|
|
for _, pes := range r.BackwardsExtremities {
|
2024-01-20 21:26:57 +00:00
|
|
|
for _, evID := range pes {
|
|
|
|
uniqueIDs[evID] = struct{}{}
|
|
|
|
// We found enough unique eventIDs.
|
|
|
|
if len(uniqueIDs) >= limitPrevEventIDs {
|
|
|
|
break outerLoop
|
|
|
|
}
|
|
|
|
}
|
2020-06-11 19:50:40 +01:00
|
|
|
}
|
2024-01-20 21:26:57 +00:00
|
|
|
|
|
|
|
// map -> []string
|
|
|
|
result := make([]string, len(uniqueIDs))
|
|
|
|
i := 0
|
|
|
|
for evID := range uniqueIDs {
|
|
|
|
result[i] = evID
|
|
|
|
i++
|
|
|
|
}
|
|
|
|
|
|
|
|
return result
|
2020-06-11 19:50:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// PerformBackfillResponse is a response to PerformBackfill.
|
|
|
|
type PerformBackfillResponse struct {
|
|
|
|
// Missing events, arbritrary order.
|
2023-04-27 12:54:20 +01:00
|
|
|
Events []*types.HeaderedEvent `json:"events"`
|
2022-08-19 10:04:26 +01:00
|
|
|
HistoryVisibility gomatrixserverlib.HistoryVisibility `json:"history_visibility"`
|
2020-06-11 19:50:40 +01:00
|
|
|
}
|
2020-07-02 15:41:18 +01:00
|
|
|
|
|
|
|
type PerformPublishRequest struct {
|
2022-10-27 13:40:35 +01:00
|
|
|
RoomID string
|
|
|
|
Visibility string
|
|
|
|
AppserviceID string
|
|
|
|
NetworkID string
|
2020-07-02 15:41:18 +01:00
|
|
|
}
|
|
|
|
|
2021-01-22 14:55:08 +00:00
|
|
|
type PerformInboundPeekRequest struct {
|
2023-04-19 15:50:33 +01:00
|
|
|
UserID string `json:"user_id"`
|
|
|
|
RoomID string `json:"room_id"`
|
|
|
|
PeekID string `json:"peek_id"`
|
|
|
|
ServerName spec.ServerName `json:"server_name"`
|
|
|
|
RenewalInterval int64 `json:"renewal_interval"`
|
2021-01-22 14:55:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type PerformInboundPeekResponse struct {
|
|
|
|
// Does the room exist on this roomserver?
|
|
|
|
// If the room doesn't exist this will be false and StateEvents will be empty.
|
|
|
|
RoomExists bool `json:"room_exists"`
|
|
|
|
// The room version of the room.
|
|
|
|
RoomVersion gomatrixserverlib.RoomVersion `json:"room_version"`
|
|
|
|
// The current state and auth chain events.
|
|
|
|
// The lists will be in an arbitrary order.
|
2023-04-27 12:54:20 +01:00
|
|
|
StateEvents []*types.HeaderedEvent `json:"state_events"`
|
|
|
|
AuthChainEvents []*types.HeaderedEvent `json:"auth_chain_events"`
|
2021-01-22 14:55:08 +00:00
|
|
|
// The event at which this state was captured
|
2023-04-27 12:54:20 +01:00
|
|
|
LatestEvent *types.HeaderedEvent `json:"latest_event"`
|
2021-01-22 14:55:08 +00:00
|
|
|
}
|
|
|
|
|
2020-11-05 10:19:23 +00:00
|
|
|
// PerformForgetRequest is a request to PerformForget
|
|
|
|
type PerformForgetRequest struct {
|
|
|
|
RoomID string `json:"room_id"`
|
|
|
|
UserID string `json:"user_id"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type PerformForgetResponse struct{}
|