2017-10-10 14:28:49 +01:00
|
|
|
// Copyright 2017 Jan Christian Grünhage
|
|
|
|
//
|
|
|
|
// 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-10-11 18:16:53 +01:00
|
|
|
package routing
|
2017-10-10 14:28:49 +01:00
|
|
|
|
|
|
|
import (
|
2020-06-26 15:34:41 +01:00
|
|
|
"encoding/json"
|
2022-08-05 10:26:59 +01:00
|
|
|
"io"
|
2017-10-10 14:28:49 +01:00
|
|
|
"net/http"
|
|
|
|
|
2022-08-05 10:12:41 +01:00
|
|
|
"github.com/matrix-org/gomatrixserverlib"
|
|
|
|
"github.com/matrix-org/util"
|
|
|
|
"github.com/tidwall/gjson"
|
|
|
|
|
2017-10-10 14:28:49 +01:00
|
|
|
"github.com/matrix-org/dendrite/clientapi/jsonerror"
|
2020-06-26 15:34:41 +01:00
|
|
|
"github.com/matrix-org/dendrite/syncapi/storage"
|
|
|
|
"github.com/matrix-org/dendrite/syncapi/sync"
|
2020-06-16 14:10:55 +01:00
|
|
|
"github.com/matrix-org/dendrite/userapi/api"
|
2017-10-10 14:28:49 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
// GetFilter implements GET /_matrix/client/r0/user/{userId}/filter/{filterId}
|
|
|
|
func GetFilter(
|
2020-06-26 15:34:41 +01:00
|
|
|
req *http.Request, device *api.Device, syncDB storage.Database, userID string, filterID string,
|
2017-10-10 14:28:49 +01:00
|
|
|
) util.JSONResponse {
|
|
|
|
if userID != device.UserID {
|
|
|
|
return util.JSONResponse{
|
2018-03-13 15:55:45 +00:00
|
|
|
Code: http.StatusForbidden,
|
2017-10-10 14:28:49 +01:00
|
|
|
JSON: jsonerror.Forbidden("Cannot get filters for other users"),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
localpart, _, err := gomatrixserverlib.SplitID('@', userID)
|
|
|
|
if err != nil {
|
2020-03-02 16:20:44 +00:00
|
|
|
util.GetLogger(req.Context()).WithError(err).Error("gomatrixserverlib.SplitID failed")
|
|
|
|
return jsonerror.InternalServerError()
|
2017-10-10 14:28:49 +01:00
|
|
|
}
|
|
|
|
|
2022-04-26 16:58:20 +01:00
|
|
|
filter := gomatrixserverlib.DefaultFilter()
|
|
|
|
if err := syncDB.GetFilter(req.Context(), &filter, localpart, filterID); err != nil {
|
2017-10-10 14:28:49 +01:00
|
|
|
//TODO better error handling. This error message is *probably* right,
|
|
|
|
// but if there are obscure db errors, this will also be returned,
|
|
|
|
// even though it is not correct.
|
|
|
|
return util.JSONResponse{
|
2018-03-13 15:55:45 +00:00
|
|
|
Code: http.StatusBadRequest,
|
2017-10-10 14:28:49 +01:00
|
|
|
JSON: jsonerror.NotFound("No such filter"),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return util.JSONResponse{
|
2018-03-13 15:55:45 +00:00
|
|
|
Code: http.StatusOK,
|
2017-10-10 14:28:49 +01:00
|
|
|
JSON: filter,
|
|
|
|
}
|
|
|
|
}
|
2017-10-11 18:16:53 +01:00
|
|
|
|
|
|
|
type filterResponse struct {
|
|
|
|
FilterID string `json:"filter_id"`
|
|
|
|
}
|
|
|
|
|
2022-08-05 10:12:41 +01:00
|
|
|
// PutFilter implements
|
|
|
|
//
|
|
|
|
// POST /_matrix/client/r0/user/{userId}/filter
|
2017-10-11 18:16:53 +01:00
|
|
|
func PutFilter(
|
2020-06-26 15:34:41 +01:00
|
|
|
req *http.Request, device *api.Device, syncDB storage.Database, userID string,
|
2017-10-11 18:16:53 +01:00
|
|
|
) util.JSONResponse {
|
|
|
|
if userID != device.UserID {
|
|
|
|
return util.JSONResponse{
|
2018-03-13 15:55:45 +00:00
|
|
|
Code: http.StatusForbidden,
|
2017-10-11 18:16:53 +01:00
|
|
|
JSON: jsonerror.Forbidden("Cannot create filters for other users"),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
localpart, _, err := gomatrixserverlib.SplitID('@', userID)
|
|
|
|
if err != nil {
|
2020-03-02 16:20:44 +00:00
|
|
|
util.GetLogger(req.Context()).WithError(err).Error("gomatrixserverlib.SplitID failed")
|
|
|
|
return jsonerror.InternalServerError()
|
2017-10-11 18:16:53 +01:00
|
|
|
}
|
|
|
|
|
2019-07-24 17:08:51 +01:00
|
|
|
var filter gomatrixserverlib.Filter
|
2017-10-11 18:16:53 +01:00
|
|
|
|
2020-06-26 15:34:41 +01:00
|
|
|
defer req.Body.Close() // nolint:errcheck
|
2022-08-05 10:26:59 +01:00
|
|
|
body, err := io.ReadAll(req.Body)
|
2020-06-26 15:34:41 +01:00
|
|
|
if err != nil {
|
|
|
|
return util.JSONResponse{
|
|
|
|
Code: http.StatusBadRequest,
|
|
|
|
JSON: jsonerror.BadJSON("The request body could not be read. " + err.Error()),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if err = json.Unmarshal(body, &filter); err != nil {
|
|
|
|
return util.JSONResponse{
|
|
|
|
Code: http.StatusBadRequest,
|
|
|
|
JSON: jsonerror.BadJSON("The request body could not be decoded into valid JSON. " + err.Error()),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// the filter `limit` is `int` which defaults to 0 if not set which is not what we want. We want to use the default
|
|
|
|
// limit if it is unset, which is what this does.
|
|
|
|
limitRes := gjson.GetBytes(body, "room.timeline.limit")
|
|
|
|
if !limitRes.Exists() {
|
|
|
|
util.GetLogger(req.Context()).Infof("missing timeline limit, using default")
|
|
|
|
filter.Room.Timeline.Limit = sync.DefaultTimelineLimit
|
2017-10-11 18:16:53 +01:00
|
|
|
}
|
|
|
|
|
2019-07-24 17:08:51 +01:00
|
|
|
// Validate generates a user-friendly error
|
|
|
|
if err = filter.Validate(); err != nil {
|
2017-10-11 18:16:53 +01:00
|
|
|
return util.JSONResponse{
|
2018-03-13 15:55:45 +00:00
|
|
|
Code: http.StatusBadRequest,
|
2019-07-24 17:08:51 +01:00
|
|
|
JSON: jsonerror.BadJSON("Invalid filter: " + err.Error()),
|
2017-10-11 18:16:53 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-26 15:34:41 +01:00
|
|
|
filterID, err := syncDB.PutFilter(req.Context(), localpart, &filter)
|
2017-10-11 18:16:53 +01:00
|
|
|
if err != nil {
|
2020-06-26 15:34:41 +01:00
|
|
|
util.GetLogger(req.Context()).WithError(err).Error("syncDB.PutFilter failed")
|
2020-03-02 16:20:44 +00:00
|
|
|
return jsonerror.InternalServerError()
|
2017-10-11 18:16:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return util.JSONResponse{
|
2018-03-13 15:55:45 +00:00
|
|
|
Code: http.StatusOK,
|
2017-10-11 18:16:53 +01:00
|
|
|
JSON: filterResponse{FilterID: filterID},
|
|
|
|
}
|
|
|
|
}
|