2020-05-04 13:53:47 +01:00
|
|
|
package api
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/matrix-org/gomatrixserverlib"
|
2020-06-11 19:50:40 +01:00
|
|
|
"github.com/matrix-org/util"
|
2020-05-04 13:53:47 +01:00
|
|
|
)
|
|
|
|
|
2020-06-24 09:59:59 +01:00
|
|
|
type JoinError int
|
|
|
|
|
|
|
|
const (
|
|
|
|
// JoinErrorNotAllowed means the user is not allowed to join this room (e.g join_rule:invite or banned)
|
|
|
|
JoinErrorNotAllowed JoinError = 1
|
|
|
|
// JoinErrorBadRequest means the request was wrong in some way (invalid user ID, wrong server, etc)
|
|
|
|
JoinErrorBadRequest JoinError = 2
|
|
|
|
// JoinErrorNoRoom means that the room being joined doesn't exist.
|
|
|
|
JoinErrorNoRoom JoinError = 3
|
|
|
|
)
|
|
|
|
|
2020-05-04 13:53:47 +01:00
|
|
|
type PerformJoinRequest struct {
|
|
|
|
RoomIDOrAlias string `json:"room_id_or_alias"`
|
|
|
|
UserID string `json:"user_id"`
|
|
|
|
Content map[string]interface{} `json:"content"`
|
|
|
|
ServerNames []gomatrixserverlib.ServerName `json:"server_names"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type PerformJoinResponse struct {
|
2020-06-24 09:59:59 +01:00
|
|
|
// The room ID, populated on success.
|
2020-05-26 14:41:16 +01:00
|
|
|
RoomID string `json:"room_id"`
|
2020-06-24 09:59:59 +01:00
|
|
|
// The reason why the join failed. Can be blank.
|
|
|
|
Error JoinError `json:"error"`
|
|
|
|
// Debugging description of the error. Always present on failure.
|
|
|
|
ErrMsg string `json:"err_msg"`
|
2020-05-04 13:53:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
type PerformLeaveRequest struct {
|
|
|
|
RoomID string `json:"room_id"`
|
|
|
|
UserID string `json:"user_id"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type PerformLeaveResponse struct {
|
|
|
|
}
|
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.
|
|
|
|
ServerName gomatrixserverlib.ServerName `json:"server_name"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// PrevEventIDs returns the prev_event IDs of all backwards extremities, de-duplicated in a lexicographically sorted order.
|
|
|
|
func (r *PerformBackfillRequest) PrevEventIDs() []string {
|
|
|
|
var prevEventIDs []string
|
|
|
|
for _, pes := range r.BackwardsExtremities {
|
|
|
|
prevEventIDs = append(prevEventIDs, pes...)
|
|
|
|
}
|
|
|
|
prevEventIDs = util.UniqueStrings(prevEventIDs)
|
|
|
|
return prevEventIDs
|
|
|
|
}
|
|
|
|
|
|
|
|
// PerformBackfillResponse is a response to PerformBackfill.
|
|
|
|
type PerformBackfillResponse struct {
|
|
|
|
// Missing events, arbritrary order.
|
|
|
|
Events []gomatrixserverlib.HeaderedEvent `json:"events"`
|
|
|
|
}
|