2020-05-27 09:19:24 +00:00
|
|
|
package api
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
|
|
|
"github.com/matrix-org/gomatrixserverlib"
|
|
|
|
)
|
|
|
|
|
|
|
|
type ServerKeyInternalAPI interface {
|
|
|
|
gomatrixserverlib.KeyDatabase
|
|
|
|
|
|
|
|
KeyRing() *gomatrixserverlib.KeyRing
|
|
|
|
|
|
|
|
InputPublicKeys(
|
|
|
|
ctx context.Context,
|
|
|
|
request *InputPublicKeysRequest,
|
|
|
|
response *InputPublicKeysResponse,
|
|
|
|
) error
|
|
|
|
|
|
|
|
QueryPublicKeys(
|
|
|
|
ctx context.Context,
|
|
|
|
request *QueryPublicKeysRequest,
|
|
|
|
response *QueryPublicKeysResponse,
|
|
|
|
) error
|
|
|
|
}
|
|
|
|
|
2020-06-04 15:26:35 +00:00
|
|
|
type QueryPublicKeysRequest struct {
|
|
|
|
Requests map[gomatrixserverlib.PublicKeyLookupRequest]gomatrixserverlib.Timestamp `json:"requests"`
|
2020-05-27 09:19:24 +00:00
|
|
|
}
|
|
|
|
|
2020-06-04 15:26:35 +00:00
|
|
|
type QueryPublicKeysResponse struct {
|
|
|
|
Results map[gomatrixserverlib.PublicKeyLookupRequest]gomatrixserverlib.PublicKeyLookupResult `json:"results"`
|
2020-05-27 09:19:24 +00:00
|
|
|
}
|
|
|
|
|
2020-06-04 15:26:35 +00:00
|
|
|
type InputPublicKeysRequest struct {
|
|
|
|
Keys map[gomatrixserverlib.PublicKeyLookupRequest]gomatrixserverlib.PublicKeyLookupResult `json:"keys"`
|
2020-05-27 09:19:24 +00:00
|
|
|
}
|
|
|
|
|
2020-06-04 15:26:35 +00:00
|
|
|
type InputPublicKeysResponse struct {
|
2020-05-27 09:19:24 +00:00
|
|
|
}
|