2020-06-04 09:43:07 -05:00
|
|
|
package inthttp
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/gorilla/mux"
|
2022-11-02 05:17:53 -05:00
|
|
|
|
2020-06-04 09:43:07 -05:00
|
|
|
"github.com/matrix-org/dendrite/appservice/api"
|
2020-06-12 08:55:57 -05:00
|
|
|
"github.com/matrix-org/dendrite/internal/httputil"
|
2020-06-04 09:43:07 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
// AddRoutes adds the AppServiceQueryAPI handlers to the http.ServeMux.
|
2022-12-05 06:53:36 -06:00
|
|
|
func AddRoutes(a api.AppServiceInternalAPI, internalAPIMux *mux.Router, enableMetrics bool) {
|
2020-06-04 09:43:07 -05:00
|
|
|
internalAPIMux.Handle(
|
|
|
|
AppServiceRoomAliasExistsPath,
|
2022-12-05 06:53:36 -06:00
|
|
|
httputil.MakeInternalRPCAPI("AppserviceRoomAliasExists", enableMetrics, a.RoomAliasExists),
|
2020-06-04 09:43:07 -05:00
|
|
|
)
|
2022-08-11 09:29:33 -05:00
|
|
|
|
2020-06-04 09:43:07 -05:00
|
|
|
internalAPIMux.Handle(
|
|
|
|
AppServiceUserIDExistsPath,
|
2022-12-05 06:53:36 -06:00
|
|
|
httputil.MakeInternalRPCAPI("AppserviceUserIDExists", enableMetrics, a.UserIDExists),
|
2020-06-04 09:43:07 -05:00
|
|
|
)
|
2022-11-02 05:17:53 -05:00
|
|
|
|
|
|
|
internalAPIMux.Handle(
|
|
|
|
AppServiceProtocolsPath,
|
2022-12-05 06:53:36 -06:00
|
|
|
httputil.MakeInternalRPCAPI("AppserviceProtocols", enableMetrics, a.Protocols),
|
2022-11-02 05:17:53 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
internalAPIMux.Handle(
|
|
|
|
AppServiceLocationsPath,
|
2022-12-05 06:53:36 -06:00
|
|
|
httputil.MakeInternalRPCAPI("AppserviceLocations", enableMetrics, a.Locations),
|
2022-11-02 05:17:53 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
internalAPIMux.Handle(
|
|
|
|
AppServiceUserPath,
|
2022-12-05 06:53:36 -06:00
|
|
|
httputil.MakeInternalRPCAPI("AppserviceUser", enableMetrics, a.User),
|
2022-11-02 05:17:53 -05:00
|
|
|
)
|
2020-06-04 09:43:07 -05:00
|
|
|
}
|