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