Documentation ¶
Index ¶
- type DeviceKeys
- type DeviceMessage
- type InputDeviceListUpdateRequest
- type InputDeviceListUpdateResponse
- type KeyError
- type KeyInternalAPI
- type OneTimeKeys
- type OneTimeKeysCount
- type PerformClaimKeysRequest
- type PerformClaimKeysResponse
- type PerformUploadKeysRequest
- type PerformUploadKeysResponse
- type QueryDeviceMessagesRequest
- type QueryDeviceMessagesResponse
- type QueryKeyChangesRequest
- type QueryKeyChangesResponse
- type QueryKeysRequest
- type QueryKeysResponse
- type QueryOneTimeKeysRequest
- type QueryOneTimeKeysResponse
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type DeviceKeys ¶
type DeviceKeys struct { // The user who owns this device UserID string // The device ID of this device DeviceID string // The device display name DisplayName string // The raw device key JSON KeyJSON []byte }
DeviceKeys represents a set of device keys for a single device https://matrix.org/docs/spec/client_server/r0.6.1#post-matrix-client-r0-keys-upload
func (*DeviceKeys) WithStreamID ¶
func (k *DeviceKeys) WithStreamID(streamID int) DeviceMessage
WithStreamID returns a copy of this device message with the given stream ID
type DeviceMessage ¶
type DeviceMessage struct { DeviceKeys // A monotonically increasing number which represents device changes for this user. StreamID int }
DeviceMessage represents the message produced into Kafka by the key server.
type InputDeviceListUpdateRequest ¶
type InputDeviceListUpdateRequest struct {
Event gomatrixserverlib.DeviceListUpdateEvent
}
type InputDeviceListUpdateResponse ¶
type InputDeviceListUpdateResponse struct {
Error *KeyError
}
type KeyError ¶
type KeyError struct {
Err string
}
KeyError is returned if there was a problem performing/querying the server
type KeyInternalAPI ¶
type KeyInternalAPI interface { // SetUserAPI assigns a user API to query when extracting device names. SetUserAPI(i userapi.UserInternalAPI) // InputDeviceListUpdate from a federated server EDU InputDeviceListUpdate(ctx context.Context, req *InputDeviceListUpdateRequest, res *InputDeviceListUpdateResponse) PerformUploadKeys(ctx context.Context, req *PerformUploadKeysRequest, res *PerformUploadKeysResponse) // PerformClaimKeys claims one-time keys for use in pre-key messages PerformClaimKeys(ctx context.Context, req *PerformClaimKeysRequest, res *PerformClaimKeysResponse) QueryKeys(ctx context.Context, req *QueryKeysRequest, res *QueryKeysResponse) QueryKeyChanges(ctx context.Context, req *QueryKeyChangesRequest, res *QueryKeyChangesResponse) QueryOneTimeKeys(ctx context.Context, req *QueryOneTimeKeysRequest, res *QueryOneTimeKeysResponse) QueryDeviceMessages(ctx context.Context, req *QueryDeviceMessagesRequest, res *QueryDeviceMessagesResponse) }
type OneTimeKeys ¶
type OneTimeKeys struct { // The user who owns this device UserID string // The device ID of this device DeviceID string // A map of algorithm:key_id => key JSON KeyJSON map[string]json.RawMessage }
OneTimeKeys represents a set of one-time keys for a single device https://matrix.org/docs/spec/client_server/r0.6.1#post-matrix-client-r0-keys-upload
type OneTimeKeysCount ¶
type OneTimeKeysCount struct { // The user who owns this device UserID string // The device ID of this device DeviceID string // algorithm to count e.g: // { // "curve25519": 10, // "signed_curve25519": 20 // } KeyCount map[string]int }
OneTimeKeysCount represents the counts of one-time keys for a single device
type PerformClaimKeysRequest ¶
type PerformClaimKeysResponse ¶
type PerformClaimKeysResponse struct { // Map of user_id to device_id to algorithm:key_id to key JSON OneTimeKeys map[string]map[string]map[string]json.RawMessage // Map of remote server domain to error JSON Failures map[string]interface{} // Set if there was a fatal error processing this action Error *KeyError }
type PerformUploadKeysRequest ¶
type PerformUploadKeysRequest struct { DeviceKeys []DeviceKeys OneTimeKeys []OneTimeKeys // OnlyDisplayNameUpdates should be `true` if ALL the DeviceKeys are present to update // the display name for their respective device, and NOT to modify the keys. The key // itself doesn't change but it's easier to pretend upload new keys and reuse the same code paths. // Without this flag, requests to modify device display names would delete device keys. OnlyDisplayNameUpdates bool }
PerformUploadKeysRequest is the request to PerformUploadKeys
type PerformUploadKeysResponse ¶
type PerformUploadKeysResponse struct { // A fatal error when processing e.g database failures Error *KeyError // A map of user_id -> device_id -> Error for tracking failures. KeyErrors map[string]map[string]*KeyError OneTimeKeyCounts []OneTimeKeysCount }
PerformUploadKeysResponse is the response to PerformUploadKeys
func (*PerformUploadKeysResponse) KeyError ¶
func (r *PerformUploadKeysResponse) KeyError(userID, deviceID string, err *KeyError)
KeyError sets a key error field on KeyErrors
type QueryDeviceMessagesRequest ¶
type QueryDeviceMessagesRequest struct {
UserID string
}
type QueryDeviceMessagesResponse ¶
type QueryDeviceMessagesResponse struct { // The latest stream ID StreamID int Devices []DeviceMessage Error *KeyError }
type QueryKeyChangesRequest ¶
type QueryKeyChangesRequest struct { // The partition which had key events sent to Partition int32 // The offset of the last received key event, or sarama.OffsetOldest if this is from the beginning Offset int64 // The inclusive offset where to track key changes up to. Messages with this offset are included in the response. // Use sarama.OffsetNewest if the offset is unknown (then check the response Offset to avoid racing). ToOffset int64 }
type QueryKeyChangesResponse ¶
type QueryKeyChangesResponse struct { // The set of users who have had their keys change. UserIDs []string // The partition being served - useful if the partition is unknown at request time Partition int32 // The latest offset represented in this response. Offset int64 // Set if there was a problem handling the request. Error *KeyError }
type QueryKeysRequest ¶
type QueryKeysResponse ¶
type QueryOneTimeKeysRequest ¶
type QueryOneTimeKeysResponse ¶
type QueryOneTimeKeysResponse struct { // OTK key counts, in the extended /sync form described by https://matrix.org/docs/spec/client_server/r0.6.1#id84 Count OneTimeKeysCount Error *KeyError }