mirror of
https://github.com/matrix-org/dendrite.git
synced 2025-12-17 03:43:11 -06:00
45 lines
1.4 KiB
Go
45 lines
1.4 KiB
Go
package api
|
|
|
|
import (
|
|
"errors"
|
|
"net/http"
|
|
|
|
"github.com/matrix-org/dendrite/common/caching"
|
|
fsAPI "github.com/matrix-org/dendrite/federationsender/api"
|
|
)
|
|
|
|
type httpRoomserverInternalAPI struct {
|
|
roomserverURL string
|
|
httpClient *http.Client
|
|
// The federation sender API allows us to send federation
|
|
// requests from the new perform input requests, still TODO.
|
|
fsInputAPI fsAPI.FederationSenderInternalAPI
|
|
immutableCache caching.ImmutableCache
|
|
}
|
|
|
|
// NewRoomserverInputAPIHTTP creates a RoomserverInputAPI implemented by talking to a HTTP POST API.
|
|
// If httpClient is nil an error is returned
|
|
func NewRoomserverInternalAPIHTTP(
|
|
roomserverURL string,
|
|
httpClient *http.Client,
|
|
//fsInputAPI fsAPI.FederationSenderInternalAPI,
|
|
immutableCache caching.ImmutableCache,
|
|
) (RoomserverInternalAPI, error) {
|
|
if httpClient == nil {
|
|
return nil, errors.New("NewRoomserverInternalAPIHTTP: httpClient is <nil>")
|
|
}
|
|
return &httpRoomserverInternalAPI{
|
|
roomserverURL: roomserverURL,
|
|
httpClient: httpClient,
|
|
//fsInputAPI: fsInputAPI,
|
|
immutableCache: immutableCache,
|
|
}, nil
|
|
}
|
|
|
|
// SetFederationSenderInputAPI passes in a federation sender input API reference
|
|
// so that we can avoid the chicken-and-egg problem of both the roomserver input API
|
|
// and the federation sender input API being interdependent.
|
|
func (h *httpRoomserverInternalAPI) SetFederationSenderAPI(fsInputAPI fsAPI.FederationSenderInternalAPI) {
|
|
h.fsInputAPI = fsInputAPI
|
|
}
|