2020-06-04 15:43:07 +01:00
|
|
|
package inthttp
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"errors"
|
|
|
|
"net/http"
|
|
|
|
|
|
|
|
"github.com/matrix-org/dendrite/appservice/api"
|
2020-06-12 14:55:57 +01:00
|
|
|
"github.com/matrix-org/dendrite/internal/httputil"
|
2020-06-04 15:43:07 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
// HTTP paths for the internal HTTP APIs
|
|
|
|
const (
|
|
|
|
AppServiceRoomAliasExistsPath = "/appservice/RoomAliasExists"
|
|
|
|
AppServiceUserIDExistsPath = "/appservice/UserIDExists"
|
2022-11-02 10:17:53 +00:00
|
|
|
AppServiceLocationsPath = "/appservice/locations"
|
|
|
|
AppServiceUserPath = "/appservice/users"
|
|
|
|
AppServiceProtocolsPath = "/appservice/protocols"
|
2020-06-04 15:43:07 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
// 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,
|
2022-05-06 12:39:26 +01:00
|
|
|
) (api.AppServiceInternalAPI, error) {
|
2020-06-04 15:43:07 +01:00
|
|
|
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 {
|
2022-08-11 15:29:33 +01:00
|
|
|
return httputil.CallInternalRPCAPI(
|
|
|
|
"RoomAliasExists", h.appserviceURL+AppServiceRoomAliasExistsPath,
|
|
|
|
h.httpClient, ctx, request, response,
|
|
|
|
)
|
2020-06-04 15:43:07 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// UserIDExists implements AppServiceQueryAPI
|
|
|
|
func (h *httpAppServiceQueryAPI) UserIDExists(
|
|
|
|
ctx context.Context,
|
|
|
|
request *api.UserIDExistsRequest,
|
|
|
|
response *api.UserIDExistsResponse,
|
|
|
|
) error {
|
2022-08-11 15:29:33 +01:00
|
|
|
return httputil.CallInternalRPCAPI(
|
|
|
|
"UserIDExists", h.appserviceURL+AppServiceUserIDExistsPath,
|
|
|
|
h.httpClient, ctx, request, response,
|
|
|
|
)
|
2020-06-04 15:43:07 +01:00
|
|
|
}
|
2022-11-02 10:17:53 +00:00
|
|
|
|
|
|
|
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,
|
|
|
|
)
|
|
|
|
}
|