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-12 15:06:26 +00:00
|
|
|
package routing
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
|
|
|
|
"github.com/gorilla/mux"
|
2020-05-21 13:40:13 +00:00
|
|
|
"github.com/matrix-org/dendrite/internal/config"
|
2020-06-12 13:55:57 +00:00
|
|
|
"github.com/matrix-org/dendrite/internal/httputil"
|
2020-01-23 17:51:10 +00:00
|
|
|
"github.com/matrix-org/dendrite/roomserver/api"
|
2017-11-15 15:42:39 +00:00
|
|
|
"github.com/matrix-org/dendrite/syncapi/storage"
|
2017-04-20 16:22:44 +00:00
|
|
|
"github.com/matrix-org/dendrite/syncapi/sync"
|
2020-06-16 13:10:55 +00:00
|
|
|
userapi "github.com/matrix-org/dendrite/userapi/api"
|
2020-01-23 17:51:10 +00:00
|
|
|
"github.com/matrix-org/gomatrixserverlib"
|
2017-04-12 15:06:26 +00:00
|
|
|
"github.com/matrix-org/util"
|
|
|
|
)
|
|
|
|
|
2017-08-03 14:10:39 +00:00
|
|
|
// Setup configures the given mux with sync-server listeners
|
2019-07-03 15:38:50 +00:00
|
|
|
//
|
|
|
|
// Due to Setup being used to call many other functions, a gocyclo nolint is
|
|
|
|
// applied:
|
|
|
|
// nolint: gocyclo
|
2020-01-23 17:51:10 +00:00
|
|
|
func Setup(
|
2020-08-13 11:16:37 +00:00
|
|
|
csMux *mux.Router, srp *sync.RequestPool, syncDB storage.Database,
|
2020-06-16 13:10:55 +00:00
|
|
|
userAPI userapi.UserInternalAPI, federation *gomatrixserverlib.FederationClient,
|
2020-05-01 09:48:17 +00:00
|
|
|
rsAPI api.RoomserverInternalAPI,
|
2020-08-10 13:18:04 +00:00
|
|
|
cfg *config.SyncAPI,
|
2020-01-23 17:51:10 +00:00
|
|
|
) {
|
2020-08-13 11:16:37 +00:00
|
|
|
r0mux := csMux.PathPrefix("/r0").Subrouter()
|
2017-09-22 10:34:54 +00:00
|
|
|
|
2018-07-16 22:17:03 +00:00
|
|
|
// TODO: Add AS support for all handlers below.
|
2020-06-16 13:10:55 +00:00
|
|
|
r0mux.Handle("/sync", httputil.MakeAuthAPI("sync", userAPI, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
2017-05-23 16:43:05 +00:00
|
|
|
return srp.OnIncomingSyncRequest(req, device)
|
2018-03-13 15:55:45 +00:00
|
|
|
})).Methods(http.MethodGet, http.MethodOptions)
|
2017-09-22 10:34:54 +00:00
|
|
|
|
2020-06-16 13:10:55 +00:00
|
|
|
r0mux.Handle("/rooms/{roomID}/messages", httputil.MakeAuthAPI("room_messages", userAPI, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
2020-06-12 13:55:57 +00:00
|
|
|
vars, err := httputil.URLDecodeMapValues(mux.Vars(req))
|
2020-01-23 17:51:10 +00:00
|
|
|
if err != nil {
|
|
|
|
return util.ErrorResponse(err)
|
|
|
|
}
|
2020-05-01 09:48:17 +00:00
|
|
|
return OnIncomingMessagesRequest(req, syncDB, vars["roomID"], federation, rsAPI, cfg)
|
2020-01-23 17:51:10 +00:00
|
|
|
})).Methods(http.MethodGet, http.MethodOptions)
|
2020-06-26 14:34:41 +00:00
|
|
|
|
|
|
|
r0mux.Handle("/user/{userId}/filter",
|
|
|
|
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)
|
|
|
|
|
|
|
|
r0mux.Handle("/user/{userId}/filter/{filterId}",
|
|
|
|
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 13:52:21 +00:00
|
|
|
|
|
|
|
r0mux.Handle("/keys/changes", httputil.MakeAuthAPI("keys_changes", userAPI, func(req *http.Request, device *userapi.Device) util.JSONResponse {
|
|
|
|
return srp.OnIncomingKeyChangeRequest(req, device)
|
|
|
|
})).Methods(http.MethodGet, http.MethodOptions)
|
2017-04-12 15:06:26 +00:00
|
|
|
}
|