2017-04-20 22:40:52 +00: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-18 09:32:32 +00:00
|
|
|
package sync
|
|
|
|
|
|
|
|
import (
|
2017-09-18 13:15:27 +00:00
|
|
|
"context"
|
2017-04-18 09:32:32 +00:00
|
|
|
"net/http"
|
|
|
|
"strconv"
|
|
|
|
"time"
|
2017-05-17 14:38:24 +00:00
|
|
|
|
2017-12-15 15:42:55 +00:00
|
|
|
"github.com/matrix-org/dendrite/clientapi/auth/authtypes"
|
|
|
|
|
2017-05-17 14:38:24 +00:00
|
|
|
"github.com/matrix-org/dendrite/syncapi/types"
|
|
|
|
"github.com/matrix-org/util"
|
2017-11-16 10:12:02 +00:00
|
|
|
log "github.com/sirupsen/logrus"
|
2017-04-18 09:32:32 +00:00
|
|
|
)
|
|
|
|
|
2019-01-10 10:28:13 +00:00
|
|
|
const defaultSyncTimeout = time.Duration(0)
|
2017-04-18 09:32:32 +00:00
|
|
|
const defaultTimelineLimit = 20
|
|
|
|
|
|
|
|
// syncRequest represents a /sync request, with sensible defaults/sanity checks applied.
|
|
|
|
type syncRequest struct {
|
2017-09-18 13:15:27 +00:00
|
|
|
ctx context.Context
|
2017-12-15 15:42:55 +00:00
|
|
|
device authtypes.Device
|
2017-04-18 09:32:32 +00:00
|
|
|
limit int
|
|
|
|
timeout time.Duration
|
2020-05-13 11:14:50 +00:00
|
|
|
since *types.StreamingToken // nil means that no since token was supplied
|
2017-04-18 09:32:32 +00:00
|
|
|
wantFullState bool
|
2017-05-17 14:38:24 +00:00
|
|
|
log *log.Entry
|
2017-04-18 09:32:32 +00:00
|
|
|
}
|
|
|
|
|
2017-12-15 15:42:55 +00:00
|
|
|
func newSyncRequest(req *http.Request, device authtypes.Device) (*syncRequest, error) {
|
2017-04-18 09:32:32 +00:00
|
|
|
timeout := getTimeout(req.URL.Query().Get("timeout"))
|
|
|
|
fullState := req.URL.Query().Get("full_state")
|
|
|
|
wantFullState := fullState != "" && fullState != "false"
|
2020-05-13 11:14:50 +00:00
|
|
|
var since *types.StreamingToken
|
|
|
|
sinceStr := req.URL.Query().Get("since")
|
|
|
|
if sinceStr != "" {
|
|
|
|
tok, err := types.NewStreamTokenFromString(sinceStr)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
since = &tok
|
2017-04-18 09:32:32 +00:00
|
|
|
}
|
|
|
|
// TODO: Additional query params: set_presence, filter
|
|
|
|
return &syncRequest{
|
2017-09-18 13:15:27 +00:00
|
|
|
ctx: req.Context(),
|
2017-12-15 15:42:55 +00:00
|
|
|
device: device,
|
2017-04-18 09:32:32 +00:00
|
|
|
timeout: timeout,
|
|
|
|
since: since,
|
|
|
|
wantFullState: wantFullState,
|
|
|
|
limit: defaultTimelineLimit, // TODO: read from filter
|
2017-05-17 14:38:24 +00:00
|
|
|
log: util.GetLogger(req.Context()),
|
2017-04-18 09:32:32 +00:00
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func getTimeout(timeoutMS string) time.Duration {
|
|
|
|
if timeoutMS == "" {
|
|
|
|
return defaultSyncTimeout
|
|
|
|
}
|
|
|
|
i, err := strconv.Atoi(timeoutMS)
|
|
|
|
if err != nil {
|
|
|
|
return defaultSyncTimeout
|
|
|
|
}
|
|
|
|
return time.Duration(i) * time.Millisecond
|
|
|
|
}
|