2017-04-20 23:40:52 +01: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-04-12 16:06:26 +01:00
|
|
|
package types
|
2017-04-11 11:52:26 +01:00
|
|
|
|
|
|
|
import (
|
2017-09-22 11:34:54 +01:00
|
|
|
"encoding/json"
|
2017-04-13 16:56:46 +01:00
|
|
|
"strconv"
|
2017-04-19 16:04:01 +01:00
|
|
|
|
|
|
|
"github.com/matrix-org/gomatrixserverlib"
|
2017-04-11 11:52:26 +01:00
|
|
|
)
|
|
|
|
|
2019-07-12 15:59:53 +01:00
|
|
|
// SyncPosition contains the PDU and EDU stream sync positions for a client.
|
|
|
|
type SyncPosition struct {
|
|
|
|
// PDUPosition is the stream position for PDUs the client is at.
|
|
|
|
PDUPosition int64
|
|
|
|
// TypingPosition is the client's position for typing notifications.
|
|
|
|
TypingPosition int64
|
|
|
|
}
|
2017-04-11 11:52:26 +01:00
|
|
|
|
|
|
|
// String implements the Stringer interface.
|
2019-07-12 15:59:53 +01:00
|
|
|
func (sp SyncPosition) String() string {
|
|
|
|
return strconv.FormatInt(sp.PDUPosition, 10) + "_" +
|
|
|
|
strconv.FormatInt(sp.TypingPosition, 10)
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsAfter returns whether one SyncPosition refers to states newer than another SyncPosition.
|
|
|
|
func (sp SyncPosition) IsAfter(other SyncPosition) bool {
|
|
|
|
return sp.PDUPosition > other.PDUPosition ||
|
|
|
|
sp.TypingPosition > other.TypingPosition
|
|
|
|
}
|
|
|
|
|
|
|
|
// WithUpdates returns a copy of the SyncPosition with updates applied from another SyncPosition.
|
|
|
|
// If the latter SyncPosition contains a field that is not 0, it is considered an update,
|
|
|
|
// and its value will replace the corresponding value in the SyncPosition on which WithUpdates is called.
|
|
|
|
func (sp SyncPosition) WithUpdates(other SyncPosition) SyncPosition {
|
|
|
|
ret := sp
|
|
|
|
if other.PDUPosition != 0 {
|
|
|
|
ret.PDUPosition = other.PDUPosition
|
|
|
|
}
|
|
|
|
if other.TypingPosition != 0 {
|
|
|
|
ret.TypingPosition = other.TypingPosition
|
|
|
|
}
|
|
|
|
return ret
|
2017-04-11 11:52:26 +01:00
|
|
|
}
|
|
|
|
|
2017-09-22 11:34:54 +01:00
|
|
|
// PrevEventRef represents a reference to a previous event in a state event upgrade
|
|
|
|
type PrevEventRef struct {
|
|
|
|
PrevContent json.RawMessage `json:"prev_content"`
|
|
|
|
ReplacesState string `json:"replaces_state"`
|
|
|
|
PrevSender string `json:"prev_sender"`
|
|
|
|
}
|
|
|
|
|
2017-04-11 11:52:26 +01:00
|
|
|
// Response represents a /sync API response. See https://matrix.org/docs/spec/client_server/r0.2.0.html#get-matrix-client-r0-sync
|
|
|
|
type Response struct {
|
|
|
|
NextBatch string `json:"next_batch"`
|
|
|
|
AccountData struct {
|
2017-04-13 16:56:46 +01:00
|
|
|
Events []gomatrixserverlib.ClientEvent `json:"events"`
|
2017-04-11 11:52:26 +01:00
|
|
|
} `json:"account_data"`
|
|
|
|
Presence struct {
|
2017-04-13 16:56:46 +01:00
|
|
|
Events []gomatrixserverlib.ClientEvent `json:"events"`
|
2017-04-11 11:52:26 +01:00
|
|
|
} `json:"presence"`
|
|
|
|
Rooms struct {
|
|
|
|
Join map[string]JoinResponse `json:"join"`
|
|
|
|
Invite map[string]InviteResponse `json:"invite"`
|
|
|
|
Leave map[string]LeaveResponse `json:"leave"`
|
|
|
|
} `json:"rooms"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewResponse creates an empty response with initialised maps.
|
2019-07-12 15:59:53 +01:00
|
|
|
func NewResponse(pos SyncPosition) *Response {
|
|
|
|
res := Response{
|
|
|
|
NextBatch: pos.String(),
|
|
|
|
}
|
2017-06-12 18:30:47 +01:00
|
|
|
// Pre-initialise the maps. Synapse will return {} even if there are no rooms under a specific section,
|
2017-04-11 11:52:26 +01:00
|
|
|
// so let's do the same thing. Bonus: this means we can't get dreaded 'assignment to entry in nil map' errors.
|
|
|
|
res.Rooms.Join = make(map[string]JoinResponse)
|
|
|
|
res.Rooms.Invite = make(map[string]InviteResponse)
|
|
|
|
res.Rooms.Leave = make(map[string]LeaveResponse)
|
|
|
|
|
|
|
|
// Also pre-intialise empty slices or else we'll insert 'null' instead of '[]' for the value.
|
|
|
|
// TODO: We really shouldn't have to do all this to coerce encoding/json to Do The Right Thing. We should
|
|
|
|
// really be using our own Marshal/Unmarshal implementations otherwise this may prove to be a CPU bottleneck.
|
|
|
|
// This also applies to NewJoinResponse, NewInviteResponse and NewLeaveResponse.
|
2017-04-13 16:56:46 +01:00
|
|
|
res.AccountData.Events = make([]gomatrixserverlib.ClientEvent, 0)
|
|
|
|
res.Presence.Events = make([]gomatrixserverlib.ClientEvent, 0)
|
2017-04-11 11:52:26 +01:00
|
|
|
|
|
|
|
return &res
|
|
|
|
}
|
|
|
|
|
2017-10-16 13:34:08 +01:00
|
|
|
// IsEmpty returns true if the response is empty, i.e. used to decided whether
|
|
|
|
// to return the response immediately to the client or to wait for more data.
|
|
|
|
func (r *Response) IsEmpty() bool {
|
|
|
|
return len(r.Rooms.Join) == 0 &&
|
|
|
|
len(r.Rooms.Invite) == 0 &&
|
|
|
|
len(r.Rooms.Leave) == 0 &&
|
|
|
|
len(r.AccountData.Events) == 0 &&
|
|
|
|
len(r.Presence.Events) == 0
|
|
|
|
}
|
|
|
|
|
2017-04-11 11:52:26 +01:00
|
|
|
// JoinResponse represents a /sync response for a room which is under the 'join' key.
|
|
|
|
type JoinResponse struct {
|
|
|
|
State struct {
|
2017-04-13 16:56:46 +01:00
|
|
|
Events []gomatrixserverlib.ClientEvent `json:"events"`
|
2017-04-11 11:52:26 +01:00
|
|
|
} `json:"state"`
|
|
|
|
Timeline struct {
|
2017-04-13 16:56:46 +01:00
|
|
|
Events []gomatrixserverlib.ClientEvent `json:"events"`
|
|
|
|
Limited bool `json:"limited"`
|
|
|
|
PrevBatch string `json:"prev_batch"`
|
2017-04-11 11:52:26 +01:00
|
|
|
} `json:"timeline"`
|
|
|
|
Ephemeral struct {
|
2017-04-13 16:56:46 +01:00
|
|
|
Events []gomatrixserverlib.ClientEvent `json:"events"`
|
2017-04-11 11:52:26 +01:00
|
|
|
} `json:"ephemeral"`
|
|
|
|
AccountData struct {
|
2017-04-13 16:56:46 +01:00
|
|
|
Events []gomatrixserverlib.ClientEvent `json:"events"`
|
2017-04-11 11:52:26 +01:00
|
|
|
} `json:"account_data"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewJoinResponse creates an empty response with initialised arrays.
|
|
|
|
func NewJoinResponse() *JoinResponse {
|
|
|
|
res := JoinResponse{}
|
2017-04-13 16:56:46 +01:00
|
|
|
res.State.Events = make([]gomatrixserverlib.ClientEvent, 0)
|
|
|
|
res.Timeline.Events = make([]gomatrixserverlib.ClientEvent, 0)
|
|
|
|
res.Ephemeral.Events = make([]gomatrixserverlib.ClientEvent, 0)
|
|
|
|
res.AccountData.Events = make([]gomatrixserverlib.ClientEvent, 0)
|
2017-04-11 11:52:26 +01:00
|
|
|
return &res
|
|
|
|
}
|
|
|
|
|
|
|
|
// InviteResponse represents a /sync response for a room which is under the 'invite' key.
|
|
|
|
type InviteResponse struct {
|
|
|
|
InviteState struct {
|
2017-05-15 17:41:54 +01:00
|
|
|
Events []gomatrixserverlib.ClientEvent `json:"events"`
|
2017-04-11 11:52:26 +01:00
|
|
|
} `json:"invite_state"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewInviteResponse creates an empty response with initialised arrays.
|
|
|
|
func NewInviteResponse() *InviteResponse {
|
|
|
|
res := InviteResponse{}
|
2017-04-13 16:56:46 +01:00
|
|
|
res.InviteState.Events = make([]gomatrixserverlib.ClientEvent, 0)
|
2017-04-11 11:52:26 +01:00
|
|
|
return &res
|
|
|
|
}
|
|
|
|
|
|
|
|
// LeaveResponse represents a /sync response for a room which is under the 'leave' key.
|
|
|
|
type LeaveResponse struct {
|
|
|
|
State struct {
|
2017-04-13 16:56:46 +01:00
|
|
|
Events []gomatrixserverlib.ClientEvent `json:"events"`
|
2017-04-11 11:52:26 +01:00
|
|
|
} `json:"state"`
|
|
|
|
Timeline struct {
|
2017-04-13 16:56:46 +01:00
|
|
|
Events []gomatrixserverlib.ClientEvent `json:"events"`
|
|
|
|
Limited bool `json:"limited"`
|
|
|
|
PrevBatch string `json:"prev_batch"`
|
2017-04-11 11:52:26 +01:00
|
|
|
} `json:"timeline"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewLeaveResponse creates an empty response with initialised arrays.
|
|
|
|
func NewLeaveResponse() *LeaveResponse {
|
|
|
|
res := LeaveResponse{}
|
2017-04-13 16:56:46 +01:00
|
|
|
res.State.Events = make([]gomatrixserverlib.ClientEvent, 0)
|
|
|
|
res.Timeline.Events = make([]gomatrixserverlib.ClientEvent, 0)
|
2017-04-11 11:52:26 +01:00
|
|
|
return &res
|
|
|
|
}
|