2017-04-20 22:40:52 +00:00
|
|
|
// Copyright 2017 Vector Creations Ltd
|
2020-02-05 18:06:39 +00:00
|
|
|
// Copyright 2018 New Vector Ltd
|
|
|
|
// Copyright 2019-2020 The Matrix.org Foundation C.I.C.
|
2017-04-20 22:40:52 +00:00
|
|
|
//
|
|
|
|
// 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-03-06 14:29:39 +00:00
|
|
|
package api
|
|
|
|
|
|
|
|
import (
|
2020-09-03 16:20:54 +00:00
|
|
|
"encoding/json"
|
|
|
|
"fmt"
|
|
|
|
"strings"
|
|
|
|
|
|
|
|
"github.com/matrix-org/dendrite/clientapi/auth/authtypes"
|
2017-07-12 13:13:10 +00:00
|
|
|
"github.com/matrix-org/gomatrixserverlib"
|
2017-03-06 14:29:39 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// QueryLatestEventsAndStateRequest is a request to QueryLatestEventsAndState
|
|
|
|
type QueryLatestEventsAndStateRequest struct {
|
2017-05-30 16:44:31 +00:00
|
|
|
// The room ID to query the latest events for.
|
2017-07-12 13:13:10 +00:00
|
|
|
RoomID string `json:"room_id"`
|
2017-03-06 14:29:39 +00:00
|
|
|
// The state key tuples to fetch from the room current state.
|
2020-05-05 14:48:37 +00:00
|
|
|
// If this list is empty or nil then *ALL* current state events are returned.
|
2017-07-12 13:13:10 +00:00
|
|
|
StateToFetch []gomatrixserverlib.StateKeyTuple `json:"state_to_fetch"`
|
2017-03-06 14:29:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// QueryLatestEventsAndStateResponse is a response to QueryLatestEventsAndState
|
2017-06-27 14:28:44 +00:00
|
|
|
// This is used when sending events to set the prev_events, auth_events and depth.
|
|
|
|
// It is also used to tell whether the event is allowed by the event auth rules.
|
2017-03-06 14:29:39 +00:00
|
|
|
type QueryLatestEventsAndStateResponse struct {
|
|
|
|
// Does the room exist?
|
|
|
|
// If the room doesn't exist this will be false and LatestEvents will be empty.
|
2017-07-12 13:13:10 +00:00
|
|
|
RoomExists bool `json:"room_exists"`
|
2020-03-19 12:07:01 +00:00
|
|
|
// The room version of the room.
|
|
|
|
RoomVersion gomatrixserverlib.RoomVersion `json:"room_version"`
|
2017-03-06 14:29:39 +00:00
|
|
|
// The latest events in the room.
|
2017-06-27 14:28:44 +00:00
|
|
|
// These are used to set the prev_events when sending an event.
|
2017-07-12 13:13:10 +00:00
|
|
|
LatestEvents []gomatrixserverlib.EventReference `json:"latest_events"`
|
2017-03-06 14:29:39 +00:00
|
|
|
// The state events requested.
|
2017-06-02 13:32:36 +00:00
|
|
|
// This list will be in an arbitrary order.
|
2017-06-27 14:28:44 +00:00
|
|
|
// These are used to set the auth_events when sending an event.
|
|
|
|
// These are used to check whether the event is allowed.
|
2020-11-16 15:44:53 +00:00
|
|
|
StateEvents []*gomatrixserverlib.HeaderedEvent `json:"state_events"`
|
2017-06-27 14:28:44 +00:00
|
|
|
// The depth of the latest events.
|
|
|
|
// This is one greater than the maximum depth of the latest events.
|
|
|
|
// This is used to set the depth when sending an event.
|
2017-07-12 13:13:10 +00:00
|
|
|
Depth int64 `json:"depth"`
|
2017-03-06 14:29:39 +00:00
|
|
|
}
|
|
|
|
|
2017-05-30 16:44:31 +00:00
|
|
|
// QueryStateAfterEventsRequest is a request to QueryStateAfterEvents
|
|
|
|
type QueryStateAfterEventsRequest struct {
|
|
|
|
// The room ID to query the state in.
|
2017-07-12 13:13:10 +00:00
|
|
|
RoomID string `json:"room_id"`
|
2017-05-30 16:44:31 +00:00
|
|
|
// The list of previous events to return the events after.
|
2017-07-12 13:13:10 +00:00
|
|
|
PrevEventIDs []string `json:"prev_event_ids"`
|
2020-10-14 11:39:37 +00:00
|
|
|
// The state key tuples to fetch from the state. If none are specified then
|
|
|
|
// the entire resolved room state will be returned.
|
2017-07-12 13:13:10 +00:00
|
|
|
StateToFetch []gomatrixserverlib.StateKeyTuple `json:"state_to_fetch"`
|
2017-05-30 16:44:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// QueryStateAfterEventsResponse is a response to QueryStateAfterEvents
|
|
|
|
type QueryStateAfterEventsResponse struct {
|
|
|
|
// Does the room exist on this roomserver?
|
|
|
|
// If the room doesn't exist this will be false and StateEvents will be empty.
|
2017-07-12 13:13:10 +00:00
|
|
|
RoomExists bool `json:"room_exists"`
|
2020-03-19 12:07:01 +00:00
|
|
|
// The room version of the room.
|
|
|
|
RoomVersion gomatrixserverlib.RoomVersion `json:"room_version"`
|
2017-05-30 16:44:31 +00:00
|
|
|
// Do all the previous events exist on this roomserver?
|
|
|
|
// If some of previous events do not exist this will be false and StateEvents will be empty.
|
2017-07-12 13:13:10 +00:00
|
|
|
PrevEventsExist bool `json:"prev_events_exist"`
|
2017-05-30 16:44:31 +00:00
|
|
|
// The state events requested.
|
2017-06-02 13:32:36 +00:00
|
|
|
// This list will be in an arbitrary order.
|
2020-11-16 15:44:53 +00:00
|
|
|
StateEvents []*gomatrixserverlib.HeaderedEvent `json:"state_events"`
|
2017-05-30 16:44:31 +00:00
|
|
|
}
|
|
|
|
|
2020-09-29 12:40:29 +00:00
|
|
|
type QueryMissingAuthPrevEventsRequest struct {
|
|
|
|
// The room ID to query the state in.
|
|
|
|
RoomID string `json:"room_id"`
|
|
|
|
// The list of auth events to check the existence of.
|
|
|
|
AuthEventIDs []string `json:"auth_event_ids"`
|
|
|
|
// The list of previous events to check the existence of.
|
|
|
|
PrevEventIDs []string `json:"prev_event_ids"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type QueryMissingAuthPrevEventsResponse struct {
|
|
|
|
// Does the room exist on this roomserver?
|
|
|
|
// If the room doesn't exist all other fields will be empty.
|
|
|
|
RoomExists bool `json:"room_exists"`
|
|
|
|
// The room version of the room.
|
|
|
|
RoomVersion gomatrixserverlib.RoomVersion `json:"room_version"`
|
|
|
|
// The event IDs of the auth events that we don't know locally.
|
|
|
|
MissingAuthEventIDs []string `json:"missing_auth_event_ids"`
|
|
|
|
// The event IDs of the previous events that we don't know locally.
|
|
|
|
MissingPrevEventIDs []string `json:"missing_prev_event_ids"`
|
|
|
|
}
|
|
|
|
|
2017-06-02 13:32:36 +00:00
|
|
|
// QueryEventsByIDRequest is a request to QueryEventsByID
|
|
|
|
type QueryEventsByIDRequest struct {
|
|
|
|
// The event IDs to look up.
|
2017-07-12 13:13:10 +00:00
|
|
|
EventIDs []string `json:"event_ids"`
|
2017-06-02 13:32:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// QueryEventsByIDResponse is a response to QueryEventsByID
|
|
|
|
type QueryEventsByIDResponse struct {
|
|
|
|
// A list of events with the requested IDs.
|
|
|
|
// If the roomserver does not have a copy of a requested event
|
|
|
|
// then it will omit that event from the list.
|
|
|
|
// If the roomserver thinks it has a copy of the event, but
|
|
|
|
// fails to read it from the database then it will fail
|
|
|
|
// the entire request.
|
|
|
|
// This list will be in an arbitrary order.
|
2020-11-16 15:44:53 +00:00
|
|
|
Events []*gomatrixserverlib.HeaderedEvent `json:"events"`
|
2017-06-02 13:32:36 +00:00
|
|
|
}
|
|
|
|
|
2018-07-11 10:10:37 +00:00
|
|
|
// QueryMembershipForUserRequest is a request to QueryMembership
|
|
|
|
type QueryMembershipForUserRequest struct {
|
|
|
|
// ID of the room to fetch membership from
|
|
|
|
RoomID string `json:"room_id"`
|
|
|
|
// ID of the user for whom membership is requested
|
|
|
|
UserID string `json:"user_id"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// QueryMembershipForUserResponse is a response to QueryMembership
|
|
|
|
type QueryMembershipForUserResponse struct {
|
|
|
|
// The EventID of the latest "m.room.member" event for the sender,
|
|
|
|
// if HasBeenInRoom is true.
|
|
|
|
EventID string `json:"event_id"`
|
|
|
|
// True if the user has been in room before and has either stayed in it or left it.
|
|
|
|
HasBeenInRoom bool `json:"has_been_in_room"`
|
|
|
|
// True if the user is in room.
|
|
|
|
IsInRoom bool `json:"is_in_room"`
|
2020-06-24 17:19:54 +00:00
|
|
|
// The current membership
|
2020-11-05 10:19:23 +00:00
|
|
|
Membership string `json:"membership"`
|
|
|
|
// True if the user asked to forget this room.
|
|
|
|
IsRoomForgotten bool `json:"is_room_forgotten"`
|
2018-07-11 10:10:37 +00:00
|
|
|
}
|
|
|
|
|
2017-08-21 15:34:26 +00:00
|
|
|
// QueryMembershipsForRoomRequest is a request to QueryMembershipsForRoom
|
|
|
|
type QueryMembershipsForRoomRequest struct {
|
2017-08-24 15:00:14 +00:00
|
|
|
// If true, only returns the membership events of "join" membership
|
|
|
|
JoinedOnly bool `json:"joined_only"`
|
2017-08-21 15:34:26 +00:00
|
|
|
// ID of the room to fetch memberships from
|
|
|
|
RoomID string `json:"room_id"`
|
|
|
|
// ID of the user sending the request
|
|
|
|
Sender string `json:"sender"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// QueryMembershipsForRoomResponse is a response to QueryMembershipsForRoom
|
|
|
|
type QueryMembershipsForRoomResponse struct {
|
|
|
|
// The "m.room.member" events (of "join" membership) in the client format
|
|
|
|
JoinEvents []gomatrixserverlib.ClientEvent `json:"join_events"`
|
|
|
|
// True if the user has been in room before and has either stayed in it or
|
|
|
|
// left it.
|
|
|
|
HasBeenInRoom bool `json:"has_been_in_room"`
|
2020-11-05 10:19:23 +00:00
|
|
|
// True if the user asked to forget this room.
|
|
|
|
IsRoomForgotten bool `json:"is_room_forgotten"`
|
2017-08-21 15:34:26 +00:00
|
|
|
}
|
|
|
|
|
2020-09-24 15:18:13 +00:00
|
|
|
// QueryServerJoinedToRoomRequest is a request to QueryServerJoinedToRoom
|
|
|
|
type QueryServerJoinedToRoomRequest struct {
|
|
|
|
// Server name of the server to find
|
|
|
|
ServerName gomatrixserverlib.ServerName `json:"server_name"`
|
|
|
|
// ID of the room to see if we are still joined to
|
|
|
|
RoomID string `json:"room_id"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// QueryMembershipsForRoomResponse is a response to QueryServerJoinedToRoom
|
|
|
|
type QueryServerJoinedToRoomResponse struct {
|
|
|
|
// True if the room exists on the server
|
|
|
|
RoomExists bool `json:"room_exists"`
|
|
|
|
// True if we still believe that we are participating in the room
|
|
|
|
IsInRoom bool `json:"is_in_room"`
|
2020-09-29 12:40:29 +00:00
|
|
|
// List of servers that are also in the room
|
|
|
|
ServerNames []gomatrixserverlib.ServerName `json:"server_names"`
|
2020-09-24 15:18:13 +00:00
|
|
|
}
|
|
|
|
|
2017-09-06 11:38:22 +00:00
|
|
|
// QueryServerAllowedToSeeEventRequest is a request to QueryServerAllowedToSeeEvent
|
|
|
|
type QueryServerAllowedToSeeEventRequest struct {
|
|
|
|
// The event ID to look up invites in.
|
|
|
|
EventID string `json:"event_id"`
|
|
|
|
// The server interested in the event
|
|
|
|
ServerName gomatrixserverlib.ServerName `json:"server_name"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// QueryServerAllowedToSeeEventResponse is a response to QueryServerAllowedToSeeEvent
|
|
|
|
type QueryServerAllowedToSeeEventResponse struct {
|
|
|
|
// Wether the server in question is allowed to see the event
|
|
|
|
AllowedToSeeEvent bool `json:"can_see_event"`
|
|
|
|
}
|
|
|
|
|
2018-06-26 10:25:49 +00:00
|
|
|
// QueryMissingEventsRequest is a request to QueryMissingEvents
|
|
|
|
type QueryMissingEventsRequest struct {
|
|
|
|
// Events which are known previous to the gap in the timeline.
|
|
|
|
EarliestEvents []string `json:"earliest_events"`
|
|
|
|
// Latest known events.
|
|
|
|
LatestEvents []string `json:"latest_events"`
|
|
|
|
// Limit the number of events this query returns.
|
|
|
|
Limit int `json:"limit"`
|
|
|
|
// The server interested in the event
|
|
|
|
ServerName gomatrixserverlib.ServerName `json:"server_name"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// QueryMissingEventsResponse is a response to QueryMissingEvents
|
|
|
|
type QueryMissingEventsResponse struct {
|
|
|
|
// Missing events, arbritrary order.
|
2020-11-16 15:44:53 +00:00
|
|
|
Events []*gomatrixserverlib.HeaderedEvent `json:"events"`
|
2018-06-26 10:25:49 +00:00
|
|
|
}
|
|
|
|
|
2017-11-27 10:20:00 +00:00
|
|
|
// QueryStateAndAuthChainRequest is a request to QueryStateAndAuthChain
|
|
|
|
type QueryStateAndAuthChainRequest struct {
|
|
|
|
// The room ID to query the state in.
|
|
|
|
RoomID string `json:"room_id"`
|
|
|
|
// The list of prev events for the event. Used to calculate the state at
|
2021-01-22 14:55:08 +00:00
|
|
|
// the event.
|
2017-11-27 10:20:00 +00:00
|
|
|
PrevEventIDs []string `json:"prev_event_ids"`
|
|
|
|
// The list of auth events for the event. Used to calculate the auth chain
|
|
|
|
AuthEventIDs []string `json:"auth_event_ids"`
|
Federation for v3/v4 rooms (#954)
* Update gomatrixserverlib
* Default to room version 4
* Update gomatrixserverlib
* Limit prev_events and auth_events
* Fix auth_events, prev_events
* Fix linter issues
* Update gomatrixserverlib
* Fix getState
* Update sytest-whitelist
* Squashed commit of the following:
commit 067b87506357c996fd6ddb11271db9469ad4ce80
Author: Neil Alexander <neilalexander@users.noreply.github.com>
Date: Fri Apr 3 14:29:06 2020 +0100
Invites v2 endpoint (#952)
* Start converting v1 invite endpoint to v2
* Update gomatrixserverlib
* Early federationsender code for sending invites
* Sending invites sorta happens now
* Populate invite request with stripped state
* Remodel a bit, don't reflect received invites
* Handle invite_room_state
* Handle room versions a bit better
* Update gomatrixserverlib
* Tweak order in destinationQueue.next
* Revert check in processMessage
* Tweak federation sender destination queue code a bit
* Add comments
commit 955244c09298d0e6c870377dad3af2ffa1f5e578
Author: Ben B <benne@klimlive.de>
Date: Fri Apr 3 12:40:50 2020 +0200
use custom http client instead of the http DefaultClient (#823)
This commit replaces the default client from the http lib with a custom one.
The previously used default client doesn't come with a timeout. This could cause
unwanted locks.
That solution chosen here creates a http client in the base component dendrite
with a constant timeout of 30 seconds. If it should be necessary to overwrite
this, we could include the timeout in the dendrite configuration.
Here it would be a good idea to extend the type "Address" by a timeout and
create an http client for each service.
Closes #820
Signed-off-by: Benedikt Bongartz <benne@klimlive.de>
Co-authored-by: Kegsay <kegan@matrix.org>
* Update sytest-whitelist, sytest-blacklist
* Update go.mod/go.sum
* Add some error wrapping for debug
* Add a NOTSPEC to common/events.go
* Perform state resolution at send_join
* Set default room version to v2 again
* Tweak GetCapabilities
* Add comments to ResolveConflictsAdhoc
* Update sytest-blacklist
* go mod tidy
* Update sytest-whitelist, sytest-blacklist
* Update versions
* Updates from review comments
* Update sytest-blacklist, sytest-whitelist
* Check room versions compatible at make_join, add some comments, update gomatrixserverlib, other tweaks
* Set default room version back to v2
* Update gomatrixserverlib, sytest-whitelist
2020-04-09 14:46:06 +00:00
|
|
|
// Should state resolution be ran on the result events?
|
|
|
|
// TODO: check call sites and remove if we always want to do state res
|
|
|
|
ResolveState bool `json:"resolve_state"`
|
2017-11-27 10:20:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// QueryStateAndAuthChainResponse is a response to QueryStateAndAuthChain
|
|
|
|
type QueryStateAndAuthChainResponse 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"`
|
2020-03-19 12:07:01 +00:00
|
|
|
// The room version of the room.
|
|
|
|
RoomVersion gomatrixserverlib.RoomVersion `json:"room_version"`
|
2017-11-27 10:20:00 +00:00
|
|
|
// Do all the previous events exist on this roomserver?
|
|
|
|
// If some of previous events do not exist this will be false and StateEvents will be empty.
|
|
|
|
PrevEventsExist bool `json:"prev_events_exist"`
|
|
|
|
// The state and auth chain events that were requested.
|
|
|
|
// The lists will be in an arbitrary order.
|
2020-11-16 15:44:53 +00:00
|
|
|
StateEvents []*gomatrixserverlib.HeaderedEvent `json:"state_events"`
|
|
|
|
AuthChainEvents []*gomatrixserverlib.HeaderedEvent `json:"auth_chain_events"`
|
2017-11-27 10:20:00 +00:00
|
|
|
}
|
|
|
|
|
2020-04-28 10:46:47 +00:00
|
|
|
// QueryRoomVersionCapabilitiesRequest asks for the default room version
|
2020-02-05 18:06:39 +00:00
|
|
|
type QueryRoomVersionCapabilitiesRequest struct{}
|
|
|
|
|
2020-03-19 12:07:01 +00:00
|
|
|
// QueryRoomVersionCapabilitiesResponse is a response to QueryRoomVersionCapabilitiesRequest
|
2020-02-05 18:06:39 +00:00
|
|
|
type QueryRoomVersionCapabilitiesResponse struct {
|
2020-03-19 12:07:01 +00:00
|
|
|
DefaultRoomVersion gomatrixserverlib.RoomVersion `json:"default"`
|
|
|
|
AvailableRoomVersions map[gomatrixserverlib.RoomVersion]string `json:"available"`
|
2020-02-05 18:06:39 +00:00
|
|
|
}
|
|
|
|
|
2020-04-28 10:46:47 +00:00
|
|
|
// QueryRoomVersionForRoomRequest asks for the room version for a given room.
|
2020-03-27 16:28:22 +00:00
|
|
|
type QueryRoomVersionForRoomRequest struct {
|
|
|
|
RoomID string `json:"room_id"`
|
|
|
|
}
|
|
|
|
|
2020-04-28 10:46:47 +00:00
|
|
|
// QueryRoomVersionForRoomResponse is a response to QueryRoomVersionForRoomRequest
|
2020-03-27 16:28:22 +00:00
|
|
|
type QueryRoomVersionForRoomResponse struct {
|
|
|
|
RoomVersion gomatrixserverlib.RoomVersion `json:"room_version"`
|
|
|
|
}
|
2020-07-02 14:41:18 +00:00
|
|
|
|
|
|
|
type QueryPublishedRoomsRequest struct {
|
|
|
|
// Optional. If specified, returns whether this room is published or not.
|
|
|
|
RoomID string
|
|
|
|
}
|
|
|
|
|
|
|
|
type QueryPublishedRoomsResponse struct {
|
|
|
|
// The list of published rooms.
|
|
|
|
RoomIDs []string
|
|
|
|
}
|
2020-09-03 16:20:54 +00:00
|
|
|
|
2020-12-04 14:11:01 +00:00
|
|
|
type QueryAuthChainRequest struct {
|
|
|
|
EventIDs []string
|
|
|
|
}
|
|
|
|
|
|
|
|
type QueryAuthChainResponse struct {
|
|
|
|
AuthChain []*gomatrixserverlib.HeaderedEvent
|
|
|
|
}
|
|
|
|
|
2020-09-03 16:20:54 +00:00
|
|
|
type QuerySharedUsersRequest struct {
|
|
|
|
UserID string
|
|
|
|
ExcludeRoomIDs []string
|
|
|
|
IncludeRoomIDs []string
|
|
|
|
}
|
|
|
|
|
|
|
|
type QuerySharedUsersResponse struct {
|
|
|
|
UserIDsToCount map[string]int
|
|
|
|
}
|
|
|
|
|
|
|
|
type QueryRoomsForUserRequest struct {
|
|
|
|
UserID string
|
|
|
|
// The desired membership of the user. If this is the empty string then no rooms are returned.
|
|
|
|
WantMembership string
|
|
|
|
}
|
|
|
|
|
|
|
|
type QueryRoomsForUserResponse struct {
|
|
|
|
RoomIDs []string
|
|
|
|
}
|
|
|
|
|
|
|
|
type QueryBulkStateContentRequest struct {
|
|
|
|
// Returns state events in these rooms
|
|
|
|
RoomIDs []string
|
|
|
|
// If true, treats the '*' StateKey as "all state events of this type" rather than a literal value of '*'
|
|
|
|
AllowWildcards bool
|
|
|
|
// The state events to return. Only a small subset of tuples are allowed in this request as only certain events
|
|
|
|
// have their content fields extracted. Specifically, the tuple Type must be one of:
|
|
|
|
// m.room.avatar
|
|
|
|
// m.room.create
|
|
|
|
// m.room.canonical_alias
|
|
|
|
// m.room.guest_access
|
|
|
|
// m.room.history_visibility
|
|
|
|
// m.room.join_rules
|
|
|
|
// m.room.member
|
|
|
|
// m.room.name
|
|
|
|
// m.room.topic
|
|
|
|
// Any other tuple type will result in the query failing.
|
|
|
|
StateTuples []gomatrixserverlib.StateKeyTuple
|
|
|
|
}
|
|
|
|
type QueryBulkStateContentResponse struct {
|
|
|
|
// map of room ID -> tuple -> content_value
|
|
|
|
Rooms map[string]map[gomatrixserverlib.StateKeyTuple]string
|
|
|
|
}
|
|
|
|
|
|
|
|
type QueryCurrentStateRequest struct {
|
|
|
|
RoomID string
|
|
|
|
StateTuples []gomatrixserverlib.StateKeyTuple
|
|
|
|
}
|
|
|
|
|
|
|
|
type QueryCurrentStateResponse struct {
|
|
|
|
StateEvents map[gomatrixserverlib.StateKeyTuple]*gomatrixserverlib.HeaderedEvent
|
|
|
|
}
|
|
|
|
|
|
|
|
type QueryKnownUsersRequest struct {
|
|
|
|
UserID string `json:"user_id"`
|
|
|
|
SearchString string `json:"search_string"`
|
|
|
|
Limit int `json:"limit"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type QueryKnownUsersResponse struct {
|
|
|
|
Users []authtypes.FullyQualifiedProfile `json:"profiles"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type QueryServerBannedFromRoomRequest struct {
|
|
|
|
ServerName gomatrixserverlib.ServerName `json:"server_name"`
|
|
|
|
RoomID string `json:"room_id"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type QueryServerBannedFromRoomResponse struct {
|
|
|
|
Banned bool `json:"banned"`
|
|
|
|
}
|
|
|
|
|
2020-09-07 11:38:09 +00:00
|
|
|
// MarshalJSON stringifies the room ID and StateKeyTuple keys so they can be sent over the wire in HTTP API mode.
|
|
|
|
func (r *QueryBulkStateContentResponse) MarshalJSON() ([]byte, error) {
|
|
|
|
se := make(map[string]string)
|
|
|
|
for roomID, tupleToEvent := range r.Rooms {
|
|
|
|
for tuple, event := range tupleToEvent {
|
|
|
|
// use 0x1F (unit separator) as the delimiter between room ID/type/state key,
|
|
|
|
se[fmt.Sprintf("%s\x1F%s\x1F%s", roomID, tuple.EventType, tuple.StateKey)] = event
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return json.Marshal(se)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *QueryBulkStateContentResponse) UnmarshalJSON(data []byte) error {
|
|
|
|
wireFormat := make(map[string]string)
|
|
|
|
err := json.Unmarshal(data, &wireFormat)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
r.Rooms = make(map[string]map[gomatrixserverlib.StateKeyTuple]string)
|
|
|
|
for roomTuple, value := range wireFormat {
|
|
|
|
fields := strings.Split(roomTuple, "\x1F")
|
|
|
|
roomID := fields[0]
|
|
|
|
if r.Rooms[roomID] == nil {
|
|
|
|
r.Rooms[roomID] = make(map[gomatrixserverlib.StateKeyTuple]string)
|
|
|
|
}
|
|
|
|
r.Rooms[roomID][gomatrixserverlib.StateKeyTuple{
|
|
|
|
EventType: fields[1],
|
|
|
|
StateKey: fields[2],
|
|
|
|
}] = value
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-09-03 16:20:54 +00:00
|
|
|
// MarshalJSON stringifies the StateKeyTuple keys so they can be sent over the wire in HTTP API mode.
|
|
|
|
func (r *QueryCurrentStateResponse) MarshalJSON() ([]byte, error) {
|
|
|
|
se := make(map[string]*gomatrixserverlib.HeaderedEvent, len(r.StateEvents))
|
|
|
|
for k, v := range r.StateEvents {
|
|
|
|
// use 0x1F (unit separator) as the delimiter between type/state key,
|
|
|
|
se[fmt.Sprintf("%s\x1F%s", k.EventType, k.StateKey)] = v
|
|
|
|
}
|
|
|
|
return json.Marshal(se)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r *QueryCurrentStateResponse) UnmarshalJSON(data []byte) error {
|
|
|
|
res := make(map[string]*gomatrixserverlib.HeaderedEvent)
|
|
|
|
err := json.Unmarshal(data, &res)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
r.StateEvents = make(map[gomatrixserverlib.StateKeyTuple]*gomatrixserverlib.HeaderedEvent, len(res))
|
|
|
|
for k, v := range res {
|
|
|
|
fields := strings.Split(k, "\x1F")
|
|
|
|
r.StateEvents[gomatrixserverlib.StateKeyTuple{
|
|
|
|
EventType: fields[0],
|
|
|
|
StateKey: fields[1],
|
|
|
|
}] = v
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|