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"
|
2018-07-17 00:17:03 +02:00
|
|
|
"github.com/matrix-org/dendrite/clientapi/auth"
|
2017-05-23 18:43:05 +02:00
|
|
|
"github.com/matrix-org/dendrite/clientapi/auth/authtypes"
|
|
|
|
"github.com/matrix-org/dendrite/clientapi/auth/storage/devices"
|
|
|
|
"github.com/matrix-org/dendrite/common"
|
2020-01-23 18:51:10 +01:00
|
|
|
"github.com/matrix-org/dendrite/common/config"
|
|
|
|
"github.com/matrix-org/dendrite/roomserver/api"
|
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-01-23 18:51:10 +01:00
|
|
|
"github.com/matrix-org/gomatrixserverlib"
|
2017-04-12 17:06:26 +02:00
|
|
|
"github.com/matrix-org/util"
|
|
|
|
)
|
|
|
|
|
|
|
|
const pathPrefixR0 = "/_matrix/client/r0"
|
|
|
|
|
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(
|
|
|
|
apiMux *mux.Router, srp *sync.RequestPool, syncDB storage.Database,
|
2020-02-13 18:27:33 +01:00
|
|
|
deviceDB devices.Database, federation *gomatrixserverlib.FederationClient,
|
2020-01-23 18:51:10 +01:00
|
|
|
queryAPI api.RoomserverQueryAPI,
|
|
|
|
cfg *config.Dendrite,
|
|
|
|
) {
|
2017-04-12 17:06:26 +02:00
|
|
|
r0mux := apiMux.PathPrefix(pathPrefixR0).Subrouter()
|
2017-09-22 12:34:54 +02:00
|
|
|
|
2019-05-21 22:56:55 +02:00
|
|
|
authData := auth.Data{
|
|
|
|
AccountDB: nil,
|
|
|
|
DeviceDB: deviceDB,
|
|
|
|
AppServices: nil,
|
|
|
|
}
|
2018-07-17 00:17:03 +02:00
|
|
|
|
|
|
|
// TODO: Add AS support for all handlers below.
|
|
|
|
r0mux.Handle("/sync", common.MakeAuthAPI("sync", authData, func(req *http.Request, device *authtypes.Device) util.JSONResponse {
|
2017-05-23 18:43:05 +02:00
|
|
|
return srp.OnIncomingSyncRequest(req, device)
|
2018-03-13 16:55:45 +01:00
|
|
|
})).Methods(http.MethodGet, http.MethodOptions)
|
2017-09-22 12:34:54 +02:00
|
|
|
|
2020-01-23 18:51:10 +01:00
|
|
|
r0mux.Handle("/rooms/{roomID}/messages", common.MakeAuthAPI("room_messages", authData, func(req *http.Request, device *authtypes.Device) util.JSONResponse {
|
|
|
|
vars, err := common.URLDecodeMapValues(mux.Vars(req))
|
|
|
|
if err != nil {
|
|
|
|
return util.ErrorResponse(err)
|
|
|
|
}
|
|
|
|
return OnIncomingMessagesRequest(req, syncDB, vars["roomID"], federation, queryAPI, cfg)
|
|
|
|
})).Methods(http.MethodGet, http.MethodOptions)
|
2017-04-12 17:06:26 +02:00
|
|
|
}
|