2017-04-20 17:40:52 -05: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-07 08:32:42 -05:00
|
|
|
package sync
|
|
|
|
|
|
|
|
import (
|
2017-09-22 05:34:54 -05:00
|
|
|
"encoding/json"
|
2017-04-07 08:32:42 -05:00
|
|
|
"net/http"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
log "github.com/Sirupsen/logrus"
|
2017-05-23 11:43:05 -05:00
|
|
|
"github.com/matrix-org/dendrite/clientapi/auth/authtypes"
|
2017-07-26 08:53:11 -05:00
|
|
|
"github.com/matrix-org/dendrite/clientapi/auth/storage/accounts"
|
2017-04-07 08:32:42 -05:00
|
|
|
"github.com/matrix-org/dendrite/clientapi/httputil"
|
2017-04-10 09:12:18 -05:00
|
|
|
"github.com/matrix-org/dendrite/clientapi/jsonerror"
|
2017-04-20 11:22:44 -05:00
|
|
|
"github.com/matrix-org/dendrite/syncapi/storage"
|
|
|
|
"github.com/matrix-org/dendrite/syncapi/types"
|
2017-07-26 08:53:11 -05:00
|
|
|
"github.com/matrix-org/gomatrixserverlib"
|
2017-04-07 08:32:42 -05:00
|
|
|
"github.com/matrix-org/util"
|
|
|
|
)
|
|
|
|
|
|
|
|
// RequestPool manages HTTP long-poll connections for /sync
|
|
|
|
type RequestPool struct {
|
2017-07-26 08:53:11 -05:00
|
|
|
db *storage.SyncServerDatabase
|
|
|
|
accountDB *accounts.Database
|
|
|
|
notifier *Notifier
|
2017-04-10 09:12:18 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewRequestPool makes a new RequestPool
|
2017-07-26 08:53:11 -05:00
|
|
|
func NewRequestPool(db *storage.SyncServerDatabase, n *Notifier, adb *accounts.Database) *RequestPool {
|
|
|
|
return &RequestPool{db, adb, n}
|
2017-04-07 08:32:42 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// OnIncomingSyncRequest is called when a client makes a /sync request. This function MUST be
|
|
|
|
// called in a dedicated goroutine for this request. This function will block the goroutine
|
|
|
|
// until a response is ready, or it times out.
|
2017-05-23 11:43:05 -05:00
|
|
|
func (rp *RequestPool) OnIncomingSyncRequest(req *http.Request, device *authtypes.Device) util.JSONResponse {
|
2017-04-07 08:32:42 -05:00
|
|
|
// Extract values from request
|
|
|
|
logger := util.GetLogger(req.Context())
|
2017-05-23 11:43:05 -05:00
|
|
|
userID := device.UserID
|
2017-04-18 04:32:32 -05:00
|
|
|
syncReq, err := newSyncRequest(req, userID)
|
2017-04-10 09:12:18 -05:00
|
|
|
if err != nil {
|
|
|
|
return util.JSONResponse{
|
|
|
|
Code: 400,
|
|
|
|
JSON: jsonerror.Unknown(err.Error()),
|
|
|
|
}
|
|
|
|
}
|
2017-04-07 08:32:42 -05:00
|
|
|
logger.WithFields(log.Fields{
|
|
|
|
"userID": userID,
|
2017-04-18 04:32:32 -05:00
|
|
|
"since": syncReq.since,
|
|
|
|
"timeout": syncReq.timeout,
|
2017-04-07 08:32:42 -05:00
|
|
|
}).Info("Incoming /sync request")
|
|
|
|
|
2017-04-10 09:12:18 -05:00
|
|
|
// Fork off 2 goroutines: one to do the work, and one to serve as a timeout.
|
|
|
|
// Whichever returns first is the one we will serve back to the client.
|
|
|
|
timeoutChan := make(chan struct{})
|
2017-04-18 04:32:32 -05:00
|
|
|
timer := time.AfterFunc(syncReq.timeout, func() {
|
2017-04-10 09:12:18 -05:00
|
|
|
close(timeoutChan) // signal that the timeout has expired
|
|
|
|
})
|
|
|
|
|
|
|
|
done := make(chan util.JSONResponse)
|
|
|
|
go func() {
|
2017-05-12 10:56:17 -05:00
|
|
|
currentPos := rp.notifier.WaitForEvents(*syncReq)
|
|
|
|
// We stop the timer BEFORE calculating the response so the cpu work
|
|
|
|
// done to calculate the response is not timed. This stops us from
|
|
|
|
// doing lots of work then timing out and sending back an empty response.
|
2017-04-10 09:12:18 -05:00
|
|
|
timer.Stop()
|
2017-05-12 10:56:17 -05:00
|
|
|
syncData, err := rp.currentSyncForUser(*syncReq, currentPos)
|
2017-04-10 09:12:18 -05:00
|
|
|
var res util.JSONResponse
|
|
|
|
if err != nil {
|
|
|
|
res = httputil.LogThenError(req, err)
|
|
|
|
} else {
|
2017-08-02 10:21:35 -05:00
|
|
|
syncData, err = rp.appendAccountData(syncData, device.UserID, *syncReq, currentPos)
|
2017-07-26 08:53:11 -05:00
|
|
|
if err != nil {
|
|
|
|
res = httputil.LogThenError(req, err)
|
|
|
|
} else {
|
|
|
|
res = util.JSONResponse{
|
|
|
|
Code: 200,
|
|
|
|
JSON: syncData,
|
|
|
|
}
|
2017-04-10 09:12:18 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
done <- res
|
|
|
|
close(done)
|
|
|
|
}()
|
|
|
|
|
|
|
|
select {
|
|
|
|
case <-timeoutChan: // timeout fired
|
|
|
|
return util.JSONResponse{
|
|
|
|
Code: 200,
|
2017-04-18 04:32:32 -05:00
|
|
|
JSON: types.NewResponse(syncReq.since),
|
2017-04-10 09:12:18 -05:00
|
|
|
}
|
|
|
|
case res := <-done: // received a response
|
|
|
|
return res
|
2017-04-07 08:32:42 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-09-22 05:34:54 -05:00
|
|
|
type stateEventInStateResp struct {
|
|
|
|
gomatrixserverlib.ClientEvent
|
|
|
|
PrevContent json.RawMessage `json:"prev_content,omitempty"`
|
|
|
|
ReplacesState string `json:"replaces_state,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// OnIncomingStateRequest is called when a client makes a /rooms/{roomID}/state
|
|
|
|
// request. It will fetch all the state events from the specified room and will
|
|
|
|
// append the necessary keys to them if applicable before returning them.
|
|
|
|
// Returns an error if something went wrong in the process.
|
|
|
|
// TODO: Check if the user is in the room. If not, check if the room's history
|
|
|
|
// is publicly visible. Current behaviour is returning an empty array if the
|
|
|
|
// user cannot see the room's history.
|
|
|
|
func (rp *RequestPool) OnIncomingStateRequest(req *http.Request, roomID string) util.JSONResponse {
|
|
|
|
stateEvents, err := rp.db.GetStateEventsForRoom(req.Context(), roomID)
|
|
|
|
if err != nil {
|
|
|
|
return httputil.LogThenError(req, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
resp := []stateEventInStateResp{}
|
|
|
|
// Fill the prev_content and replaces_state keys if necessary
|
|
|
|
for _, event := range stateEvents {
|
|
|
|
stateEvent := stateEventInStateResp{
|
|
|
|
ClientEvent: gomatrixserverlib.ToClientEvent(event, gomatrixserverlib.FormatAll),
|
|
|
|
}
|
|
|
|
var prevEventRef types.PrevEventRef
|
|
|
|
if len(event.Unsigned()) > 0 {
|
|
|
|
if err := json.Unmarshal(event.Unsigned(), &prevEventRef); err != nil {
|
|
|
|
return httputil.LogThenError(req, err)
|
|
|
|
}
|
|
|
|
// Fills the previous state event ID if the state event replaces another
|
|
|
|
// state event
|
|
|
|
if len(prevEventRef.ReplacesState) > 0 {
|
|
|
|
stateEvent.ReplacesState = prevEventRef.ReplacesState
|
|
|
|
}
|
|
|
|
// Fill the previous event if the state event references a previous event
|
|
|
|
if prevEventRef.PrevContent != nil {
|
|
|
|
stateEvent.PrevContent = prevEventRef.PrevContent
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
resp = append(resp, stateEvent)
|
|
|
|
}
|
|
|
|
|
|
|
|
return util.JSONResponse{
|
|
|
|
Code: 200,
|
|
|
|
JSON: resp,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-12 10:56:17 -05:00
|
|
|
func (rp *RequestPool) currentSyncForUser(req syncRequest, currentPos types.StreamPosition) (*types.Response, error) {
|
2017-04-11 05:52:26 -05:00
|
|
|
// TODO: handle ignored users
|
2017-05-15 09:18:08 -05:00
|
|
|
if req.since == types.StreamPosition(0) {
|
2017-09-18 10:52:22 -05:00
|
|
|
return rp.db.CompleteSync(req.ctx, req.userID, req.limit)
|
2017-04-11 05:52:26 -05:00
|
|
|
}
|
2017-09-18 10:52:22 -05:00
|
|
|
return rp.db.IncrementalSync(req.ctx, req.userID, req.since, currentPos, req.limit)
|
2017-04-07 08:32:42 -05:00
|
|
|
}
|
2017-07-26 08:53:11 -05:00
|
|
|
|
2017-08-02 10:21:35 -05:00
|
|
|
func (rp *RequestPool) appendAccountData(
|
|
|
|
data *types.Response, userID string, req syncRequest, currentPos types.StreamPosition,
|
|
|
|
) (*types.Response, error) {
|
2017-09-22 05:34:54 -05:00
|
|
|
// TODO: Account data doesn't have a sync position of its own, meaning that
|
|
|
|
// account data might be sent multiple time to the client if multiple account
|
|
|
|
// data keys were set between two message. This isn't a huge issue since the
|
|
|
|
// duplicate data doesn't represent a huge quantity of data, but an optimisation
|
|
|
|
// here would be making sure each data is sent only once to the client.
|
2017-07-26 08:53:11 -05:00
|
|
|
localpart, _, err := gomatrixserverlib.SplitID('@', userID)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2017-08-02 10:21:35 -05:00
|
|
|
if req.since == types.StreamPosition(0) {
|
|
|
|
// If this is the initial sync, we don't need to check if a data has
|
|
|
|
// already been sent. Instead, we send the whole batch.
|
|
|
|
var global []gomatrixserverlib.ClientEvent
|
|
|
|
var rooms map[string][]gomatrixserverlib.ClientEvent
|
2017-09-18 08:15:27 -05:00
|
|
|
global, rooms, err = rp.accountDB.GetAccountData(req.ctx, localpart)
|
2017-08-02 10:21:35 -05:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
data.AccountData.Events = global
|
|
|
|
|
|
|
|
for r, j := range data.Rooms.Join {
|
|
|
|
if len(rooms[r]) > 0 {
|
|
|
|
j.AccountData.Events = rooms[r]
|
|
|
|
data.Rooms.Join[r] = j
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return data, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Sync is not initial, get all account data since the latest sync
|
2017-09-18 10:52:22 -05:00
|
|
|
dataTypes, err := rp.db.GetAccountDataInRange(req.ctx, userID, req.since, currentPos)
|
2017-07-26 08:53:11 -05:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2017-08-02 10:21:35 -05:00
|
|
|
if len(dataTypes) == 0 {
|
|
|
|
return data, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Iterate over the rooms
|
|
|
|
for roomID, dataTypes := range dataTypes {
|
|
|
|
events := []gomatrixserverlib.ClientEvent{}
|
|
|
|
// Request the missing data from the database
|
|
|
|
for _, dataType := range dataTypes {
|
2017-09-18 08:15:27 -05:00
|
|
|
evs, err := rp.accountDB.GetAccountDataByType(
|
|
|
|
req.ctx, localpart, roomID, dataType,
|
|
|
|
)
|
2017-08-02 10:21:35 -05:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
events = append(events, evs...)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Append the data to the response
|
|
|
|
if len(roomID) > 0 {
|
|
|
|
jr := data.Rooms.Join[roomID]
|
|
|
|
jr.AccountData.Events = events
|
|
|
|
data.Rooms.Join[roomID] = jr
|
|
|
|
} else {
|
|
|
|
data.AccountData.Events = events
|
2017-07-26 08:53:11 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return data, nil
|
|
|
|
}
|