mirror of
https://github.com/1f349/dendrite.git
synced 2024-11-10 06:53:00 +00:00
b367cfeddf
Implements the following endpoints ``` GET /_matrix/client/v3/thirdparty/protocols GET /_matrix/client/v3/thirdparty/protocols/{protocol} GET /_matrix/client/v3/thirdparty/location GET /_matrix/client/v3/thirdparty/location/{protocol} GET /_matrix/client/v3/thirdparty/user GET /_matrix/client/v3/thirdparty/user/{protocol} ```
85 lines
2.6 KiB
Go
85 lines
2.6 KiB
Go
package inthttp
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"net/http"
|
|
|
|
"github.com/matrix-org/dendrite/appservice/api"
|
|
"github.com/matrix-org/dendrite/internal/httputil"
|
|
)
|
|
|
|
// HTTP paths for the internal HTTP APIs
|
|
const (
|
|
AppServiceRoomAliasExistsPath = "/appservice/RoomAliasExists"
|
|
AppServiceUserIDExistsPath = "/appservice/UserIDExists"
|
|
AppServiceLocationsPath = "/appservice/locations"
|
|
AppServiceUserPath = "/appservice/users"
|
|
AppServiceProtocolsPath = "/appservice/protocols"
|
|
)
|
|
|
|
// httpAppServiceQueryAPI contains the URL to an appservice query API and a
|
|
// reference to a httpClient used to reach it
|
|
type httpAppServiceQueryAPI struct {
|
|
appserviceURL string
|
|
httpClient *http.Client
|
|
}
|
|
|
|
// NewAppserviceClient creates a AppServiceQueryAPI implemented by talking
|
|
// to a HTTP POST API.
|
|
// If httpClient is nil an error is returned
|
|
func NewAppserviceClient(
|
|
appserviceURL string,
|
|
httpClient *http.Client,
|
|
) (api.AppServiceInternalAPI, error) {
|
|
if httpClient == nil {
|
|
return nil, errors.New("NewRoomserverAliasAPIHTTP: httpClient is <nil>")
|
|
}
|
|
return &httpAppServiceQueryAPI{appserviceURL, httpClient}, nil
|
|
}
|
|
|
|
// RoomAliasExists implements AppServiceQueryAPI
|
|
func (h *httpAppServiceQueryAPI) RoomAliasExists(
|
|
ctx context.Context,
|
|
request *api.RoomAliasExistsRequest,
|
|
response *api.RoomAliasExistsResponse,
|
|
) error {
|
|
return httputil.CallInternalRPCAPI(
|
|
"RoomAliasExists", h.appserviceURL+AppServiceRoomAliasExistsPath,
|
|
h.httpClient, ctx, request, response,
|
|
)
|
|
}
|
|
|
|
// UserIDExists implements AppServiceQueryAPI
|
|
func (h *httpAppServiceQueryAPI) UserIDExists(
|
|
ctx context.Context,
|
|
request *api.UserIDExistsRequest,
|
|
response *api.UserIDExistsResponse,
|
|
) error {
|
|
return httputil.CallInternalRPCAPI(
|
|
"UserIDExists", h.appserviceURL+AppServiceUserIDExistsPath,
|
|
h.httpClient, ctx, request, response,
|
|
)
|
|
}
|
|
|
|
func (h *httpAppServiceQueryAPI) Locations(ctx context.Context, request *api.LocationRequest, response *api.LocationResponse) error {
|
|
return httputil.CallInternalRPCAPI(
|
|
"ASLocation", h.appserviceURL+AppServiceLocationsPath,
|
|
h.httpClient, ctx, request, response,
|
|
)
|
|
}
|
|
|
|
func (h *httpAppServiceQueryAPI) User(ctx context.Context, request *api.UserRequest, response *api.UserResponse) error {
|
|
return httputil.CallInternalRPCAPI(
|
|
"ASUser", h.appserviceURL+AppServiceUserPath,
|
|
h.httpClient, ctx, request, response,
|
|
)
|
|
}
|
|
|
|
func (h *httpAppServiceQueryAPI) Protocols(ctx context.Context, request *api.ProtocolRequest, response *api.ProtocolResponse) error {
|
|
return httputil.CallInternalRPCAPI(
|
|
"ASProtocols", h.appserviceURL+AppServiceProtocolsPath,
|
|
h.httpClient, ctx, request, response,
|
|
)
|
|
}
|