2017-04-21 00:40:52 +02: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 17:06:26 +02:00
|
|
|
package routing
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
|
|
|
|
"github.com/gorilla/mux"
|
2022-09-27 18:06:49 +02:00
|
|
|
"github.com/matrix-org/gomatrixserverlib"
|
|
|
|
"github.com/matrix-org/util"
|
|
|
|
|
|
|
|
"github.com/matrix-org/dendrite/clientapi/jsonerror"
|
2022-04-22 11:38:29 +02:00
|
|
|
"github.com/matrix-org/dendrite/internal/caching"
|
2022-09-27 18:06:49 +02:00
|
|
|
"github.com/matrix-org/dendrite/internal/fulltext"
|
2020-06-12 15:55:57 +02:00
|
|
|
"github.com/matrix-org/dendrite/internal/httputil"
|
2020-01-23 18:51:10 +01:00
|
|
|
"github.com/matrix-org/dendrite/roomserver/api"
|
2020-12-02 18:41:00 +01:00
|
|
|
"github.com/matrix-org/dendrite/setup/config"
|
2017-11-15 16:42:39 +01:00
|
|
|
"github.com/matrix-org/dendrite/syncapi/storage"
|
2017-04-20 18:22:44 +02:00
|
|
|
"github.com/matrix-org/dendrite/syncapi/sync"
|
2020-06-16 15:10:55 +02:00
|
|
|
userapi "github.com/matrix-org/dendrite/userapi/api"
|
2017-04-12 17:06:26 +02:00
|
|
|
)
|
|
|
|
|
2017-08-03 16:10:39 +02:00
|
|
|
// Setup configures the given mux with sync-server listeners
|
2019-07-03 17:38:50 +02:00
|
|
|
//
|
|
|
|
// Due to Setup being used to call many other functions, a gocyclo nolint is
|
|
|
|
// applied:
|
|
|
|
// nolint: gocyclo
|
2020-01-23 18:51:10 +01:00
|
|
|
func Setup(
|
2020-08-13 13:16:37 +02:00
|
|
|
csMux *mux.Router, srp *sync.RequestPool, syncDB storage.Database,
|
2022-05-05 10:56:03 +02:00
|
|
|
userAPI userapi.SyncUserAPI,
|
|
|
|
rsAPI api.SyncRoomserverAPI,
|
2020-08-10 15:18:04 +02:00
|
|
|
cfg *config.SyncAPI,
|
2022-05-06 15:33:34 +02:00
|
|
|
lazyLoadCache caching.LazyLoadCache,
|
2023-03-17 12:09:45 +01:00
|
|
|
fts fulltext.Indexer,
|
2020-01-23 18:51:10 +01:00
|
|
|
) {
|
2022-10-13 15:50:52 +02:00
|
|
|
v1unstablemux := csMux.PathPrefix("/{apiversion:(?:v1|unstable)}/").Subrouter()
|
2022-02-18 15:14:16 +01:00
|
|
|
v3mux := csMux.PathPrefix("/{apiversion:(?:r0|v3)}/").Subrouter()
|
2017-09-22 12:34:54 +02:00
|
|
|
|
2018-07-17 00:17:03 +02:00
|
|
|
// TODO: Add AS support for all handlers below.
|
2022-02-18 15:14:16 +01:00
|
|
|
v3mux.Handle("/sync", httputil.MakeAuthAPI("sync", userAPI, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
2017-05-23 18:43:05 +02:00
|
|
|
return srp.OnIncomingSyncRequest(req, device)
|
2022-11-11 10:52:08 +01:00
|
|
|
}, httputil.WithAllowGuests())).Methods(http.MethodGet, http.MethodOptions)
|
2017-09-22 12:34:54 +02:00
|
|
|
|
2022-02-18 15:14:16 +01:00
|
|
|
v3mux.Handle("/rooms/{roomID}/messages", httputil.MakeAuthAPI("room_messages", userAPI, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
2020-06-12 15:55:57 +02:00
|
|
|
vars, err := httputil.URLDecodeMapValues(mux.Vars(req))
|
2020-01-23 18:51:10 +01:00
|
|
|
if err != nil {
|
|
|
|
return util.ErrorResponse(err)
|
|
|
|
}
|
2022-05-05 10:56:03 +02:00
|
|
|
return OnIncomingMessagesRequest(req, syncDB, vars["roomID"], device, rsAPI, cfg, srp, lazyLoadCache)
|
2022-11-11 10:52:08 +01:00
|
|
|
}, httputil.WithAllowGuests())).Methods(http.MethodGet, http.MethodOptions)
|
2020-06-26 16:34:41 +02:00
|
|
|
|
2022-10-10 12:19:16 +02:00
|
|
|
v3mux.Handle("/rooms/{roomID}/event/{eventID}",
|
|
|
|
httputil.MakeAuthAPI("rooms_get_event", userAPI, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
vars, err := httputil.URLDecodeMapValues(mux.Vars(req))
|
|
|
|
if err != nil {
|
|
|
|
return util.ErrorResponse(err)
|
|
|
|
}
|
|
|
|
return GetEvent(req, device, vars["roomID"], vars["eventID"], cfg, syncDB, rsAPI)
|
2022-11-11 10:52:08 +01:00
|
|
|
}, httputil.WithAllowGuests()),
|
2022-10-10 12:19:16 +02:00
|
|
|
).Methods(http.MethodGet, http.MethodOptions)
|
|
|
|
|
2022-02-18 15:14:16 +01:00
|
|
|
v3mux.Handle("/user/{userId}/filter",
|
2020-06-26 16:34:41 +02:00
|
|
|
httputil.MakeAuthAPI("put_filter", userAPI, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
vars, err := httputil.URLDecodeMapValues(mux.Vars(req))
|
|
|
|
if err != nil {
|
|
|
|
return util.ErrorResponse(err)
|
|
|
|
}
|
|
|
|
return PutFilter(req, device, syncDB, vars["userId"])
|
|
|
|
}),
|
|
|
|
).Methods(http.MethodPost, http.MethodOptions)
|
|
|
|
|
2022-02-18 15:14:16 +01:00
|
|
|
v3mux.Handle("/user/{userId}/filter/{filterId}",
|
2020-06-26 16:34:41 +02:00
|
|
|
httputil.MakeAuthAPI("get_filter", userAPI, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
vars, err := httputil.URLDecodeMapValues(mux.Vars(req))
|
|
|
|
if err != nil {
|
|
|
|
return util.ErrorResponse(err)
|
|
|
|
}
|
|
|
|
return GetFilter(req, device, syncDB, vars["userId"], vars["filterId"])
|
|
|
|
}),
|
|
|
|
).Methods(http.MethodGet, http.MethodOptions)
|
2020-07-30 15:52:21 +02:00
|
|
|
|
2022-02-18 15:14:16 +01:00
|
|
|
v3mux.Handle("/keys/changes", httputil.MakeAuthAPI("keys_changes", userAPI, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
2020-07-30 15:52:21 +02:00
|
|
|
return srp.OnIncomingKeyChangeRequest(req, device)
|
2022-11-11 10:52:08 +01:00
|
|
|
}, httputil.WithAllowGuests())).Methods(http.MethodGet, http.MethodOptions)
|
2022-02-21 17:12:22 +01:00
|
|
|
|
|
|
|
v3mux.Handle("/rooms/{roomId}/context/{eventId}",
|
|
|
|
httputil.MakeAuthAPI(gomatrixserverlib.Join, userAPI, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
vars, err := httputil.URLDecodeMapValues(mux.Vars(req))
|
|
|
|
if err != nil {
|
|
|
|
return util.ErrorResponse(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return Context(
|
|
|
|
req, device,
|
|
|
|
rsAPI, syncDB,
|
|
|
|
vars["roomId"], vars["eventId"],
|
2022-04-22 11:38:29 +02:00
|
|
|
lazyLoadCache,
|
2022-02-21 17:12:22 +01:00
|
|
|
)
|
2022-11-11 10:52:08 +01:00
|
|
|
}, httputil.WithAllowGuests()),
|
2022-02-21 17:12:22 +01:00
|
|
|
).Methods(http.MethodGet, http.MethodOptions)
|
2022-09-27 18:06:49 +02:00
|
|
|
|
2022-10-13 15:50:52 +02:00
|
|
|
v1unstablemux.Handle("/rooms/{roomId}/relations/{eventId}",
|
|
|
|
httputil.MakeAuthAPI(gomatrixserverlib.Join, userAPI, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
vars, err := httputil.URLDecodeMapValues(mux.Vars(req))
|
|
|
|
if err != nil {
|
|
|
|
return util.ErrorResponse(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return Relations(
|
|
|
|
req, device, syncDB, rsAPI,
|
|
|
|
vars["roomId"], vars["eventId"], "", "",
|
|
|
|
)
|
2022-11-11 10:52:08 +01:00
|
|
|
}, httputil.WithAllowGuests()),
|
2022-10-13 15:50:52 +02:00
|
|
|
).Methods(http.MethodGet, http.MethodOptions)
|
|
|
|
|
|
|
|
v1unstablemux.Handle("/rooms/{roomId}/relations/{eventId}/{relType}",
|
|
|
|
httputil.MakeAuthAPI(gomatrixserverlib.Join, userAPI, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
vars, err := httputil.URLDecodeMapValues(mux.Vars(req))
|
|
|
|
if err != nil {
|
|
|
|
return util.ErrorResponse(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return Relations(
|
|
|
|
req, device, syncDB, rsAPI,
|
|
|
|
vars["roomId"], vars["eventId"], vars["relType"], "",
|
|
|
|
)
|
2022-11-11 10:52:08 +01:00
|
|
|
}, httputil.WithAllowGuests()),
|
2022-10-13 15:50:52 +02:00
|
|
|
).Methods(http.MethodGet, http.MethodOptions)
|
|
|
|
|
|
|
|
v1unstablemux.Handle("/rooms/{roomId}/relations/{eventId}/{relType}/{eventType}",
|
|
|
|
httputil.MakeAuthAPI(gomatrixserverlib.Join, userAPI, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
vars, err := httputil.URLDecodeMapValues(mux.Vars(req))
|
|
|
|
if err != nil {
|
|
|
|
return util.ErrorResponse(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return Relations(
|
|
|
|
req, device, syncDB, rsAPI,
|
|
|
|
vars["roomId"], vars["eventId"], vars["relType"], vars["eventType"],
|
|
|
|
)
|
2022-11-11 10:52:08 +01:00
|
|
|
}, httputil.WithAllowGuests()),
|
2022-10-13 15:50:52 +02:00
|
|
|
).Methods(http.MethodGet, http.MethodOptions)
|
|
|
|
|
2022-09-27 18:06:49 +02:00
|
|
|
v3mux.Handle("/search",
|
|
|
|
httputil.MakeAuthAPI("search", userAPI, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
if !cfg.Fulltext.Enabled {
|
|
|
|
return util.JSONResponse{
|
|
|
|
Code: http.StatusNotImplemented,
|
|
|
|
JSON: jsonerror.Unknown("Search has been disabled by the server administrator."),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
var nextBatch *string
|
|
|
|
if err := req.ParseForm(); err != nil {
|
|
|
|
return jsonerror.InternalServerError()
|
|
|
|
}
|
|
|
|
if req.Form.Has("next_batch") {
|
|
|
|
nb := req.FormValue("next_batch")
|
|
|
|
nextBatch = &nb
|
|
|
|
}
|
|
|
|
return Search(req, device, syncDB, fts, nextBatch)
|
|
|
|
}),
|
|
|
|
).Methods(http.MethodPost, http.MethodOptions)
|
2022-10-25 12:39:10 +02:00
|
|
|
|
|
|
|
v3mux.Handle("/rooms/{roomID}/members",
|
|
|
|
httputil.MakeAuthAPI("rooms_members", userAPI, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
vars, err := httputil.URLDecodeMapValues(mux.Vars(req))
|
|
|
|
if err != nil {
|
|
|
|
return util.ErrorResponse(err)
|
|
|
|
}
|
|
|
|
var membership, notMembership *string
|
|
|
|
if req.URL.Query().Has("membership") {
|
|
|
|
m := req.URL.Query().Get("membership")
|
|
|
|
membership = &m
|
|
|
|
}
|
|
|
|
if req.URL.Query().Has("not_membership") {
|
|
|
|
m := req.URL.Query().Get("not_membership")
|
|
|
|
notMembership = &m
|
|
|
|
}
|
|
|
|
|
|
|
|
at := req.URL.Query().Get("at")
|
|
|
|
return GetMemberships(req, device, vars["roomID"], syncDB, rsAPI, false, membership, notMembership, at)
|
2022-11-11 10:52:08 +01:00
|
|
|
}, httputil.WithAllowGuests()),
|
2022-10-25 12:39:10 +02:00
|
|
|
).Methods(http.MethodGet, http.MethodOptions)
|
|
|
|
|
|
|
|
v3mux.Handle("/rooms/{roomID}/joined_members",
|
|
|
|
httputil.MakeAuthAPI("rooms_members", userAPI, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
vars, err := httputil.URLDecodeMapValues(mux.Vars(req))
|
|
|
|
if err != nil {
|
|
|
|
return util.ErrorResponse(err)
|
|
|
|
}
|
|
|
|
at := req.URL.Query().Get("at")
|
|
|
|
membership := gomatrixserverlib.Join
|
|
|
|
return GetMemberships(req, device, vars["roomID"], syncDB, rsAPI, true, &membership, nil, at)
|
|
|
|
}),
|
|
|
|
).Methods(http.MethodGet, http.MethodOptions)
|
2017-04-12 17:06:26 +02:00
|
|
|
}
|