Add peer-to-peer support into Dendrite via libp2p and fetch (#880)
* Use a fork of pq which supports userCurrent on wasm
* Use sqlite3_js driver when running in JS
* Add cmd/dendritejs to pull in sqlite3_js driver for wasm only
* Update to latest go-sqlite-js version
* Replace prometheus with a stub. sigh
* Hard-code a config and don't use opentracing
* Latest go-sqlite3-js version
* Generate a key for now
* Listen for fetch traffic rather than HTTP
* Latest hacks for js
* libp2p support
* More libp2p
* Fork gjson to allow us to enforce auth checks as before
Previously, all events would come down redacted because the hash
checks would fail. They would fail because sjson.DeleteBytes didn't
remove keys not used for hashing. This didn't work because of a build
tag which included a file which no-oped the index returned.
See https://github.com/tidwall/gjson/issues/157
When it's resolved, let's go back to mainline.
* Use gjson@1.6.0 as it fixes https://github.com/tidwall/gjson/issues/157
* Use latest gomatrixserverlib for sig checks
* Fix a bug which could cause exclude_from_sync to not be set
Caused when sending events over federation.
* Use query variadic to make lookups actually work!
* Latest gomatrixserverlib
* Add notes on getting p2p up and running
Partly so I don't forget myself!
* refactor: Move p2p specific stuff to cmd/dendritejs
This is important or else the normal build of dendrite will fail
because the p2p libraries depend on syscall/js which doesn't work
on normal builds.
Also, clean up main.go to read a bit better.
* Update ho-http-js-libp2p to return errors from RoundTrip
* Add an LRU cache around the key DB
We actually need this for P2P because otherwise we can *segfault*
with things like: "runtime: unexpected return pc for runtime.handleEvent"
where the event is a `syscall/js` event, caused by spamming sql.js
caused by "Checking event signatures for 14 events of room state" which
hammers the key DB repeatedly in quick succession.
Using a cache fixes this, though the underlying cause is probably a bug
in the version of Go I'm on (1.13.7)
* breaking: Add Tracing.Enabled to toggle whether we do opentracing
Defaults to false, which is why this is a breaking change. We need
this flag because WASM builds cannot do opentracing.
* Start adding conditional builds for wasm to handle lib/pq
The general idea here is to have the wasm build have a `NewXXXDatabase`
that doesn't import any postgres package and hence we never import
`lib/pq`, which doesn't work under WASM (undefined `userCurrent`).
* Remove lib/pq for wasm for syncapi
* Add conditional building to remaining storage APIs
* Update build script to set env vars correctly for dendritejs
* sqlite bug fixes
* Docs
* Add a no-op main for dendritejs when not building under wasm
* Use the real prometheus, even for WASM
Instead, the dendrite-sw.js must mock out `process.pid` and
`fs.stat` - which must invoke the callback with an error (e.g `EINVAL`)
in order for it to work:
```
global.process = {
pid: 1,
};
global.fs.stat = function(path, cb) {
cb({
code: "EINVAL",
});
}
```
* Linting
2020-03-06 10:23:55 +00:00
// Copyright 2020 The Matrix.org Foundation C.I.C.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
2022-02-18 11:31:05 +00:00
package storage
Add peer-to-peer support into Dendrite via libp2p and fetch (#880)
* Use a fork of pq which supports userCurrent on wasm
* Use sqlite3_js driver when running in JS
* Add cmd/dendritejs to pull in sqlite3_js driver for wasm only
* Update to latest go-sqlite-js version
* Replace prometheus with a stub. sigh
* Hard-code a config and don't use opentracing
* Latest go-sqlite3-js version
* Generate a key for now
* Listen for fetch traffic rather than HTTP
* Latest hacks for js
* libp2p support
* More libp2p
* Fork gjson to allow us to enforce auth checks as before
Previously, all events would come down redacted because the hash
checks would fail. They would fail because sjson.DeleteBytes didn't
remove keys not used for hashing. This didn't work because of a build
tag which included a file which no-oped the index returned.
See https://github.com/tidwall/gjson/issues/157
When it's resolved, let's go back to mainline.
* Use gjson@1.6.0 as it fixes https://github.com/tidwall/gjson/issues/157
* Use latest gomatrixserverlib for sig checks
* Fix a bug which could cause exclude_from_sync to not be set
Caused when sending events over federation.
* Use query variadic to make lookups actually work!
* Latest gomatrixserverlib
* Add notes on getting p2p up and running
Partly so I don't forget myself!
* refactor: Move p2p specific stuff to cmd/dendritejs
This is important or else the normal build of dendrite will fail
because the p2p libraries depend on syscall/js which doesn't work
on normal builds.
Also, clean up main.go to read a bit better.
* Update ho-http-js-libp2p to return errors from RoundTrip
* Add an LRU cache around the key DB
We actually need this for P2P because otherwise we can *segfault*
with things like: "runtime: unexpected return pc for runtime.handleEvent"
where the event is a `syscall/js` event, caused by spamming sql.js
caused by "Checking event signatures for 14 events of room state" which
hammers the key DB repeatedly in quick succession.
Using a cache fixes this, though the underlying cause is probably a bug
in the version of Go I'm on (1.13.7)
* breaking: Add Tracing.Enabled to toggle whether we do opentracing
Defaults to false, which is why this is a breaking change. We need
this flag because WASM builds cannot do opentracing.
* Start adding conditional builds for wasm to handle lib/pq
The general idea here is to have the wasm build have a `NewXXXDatabase`
that doesn't import any postgres package and hence we never import
`lib/pq`, which doesn't work under WASM (undefined `userCurrent`).
* Remove lib/pq for wasm for syncapi
* Add conditional building to remaining storage APIs
* Update build script to set env vars correctly for dendritejs
* sqlite bug fixes
* Docs
* Add a no-op main for dendritejs when not building under wasm
* Use the real prometheus, even for WASM
Instead, the dendrite-sw.js must mock out `process.pid` and
`fs.stat` - which must invoke the callback with an error (e.g `EINVAL`)
in order for it to work:
```
global.process = {
pid: 1,
};
global.fs.stat = function(path, cb) {
cb({
code: "EINVAL",
});
}
```
* Linting
2020-03-06 10:23:55 +00:00
import (
"context"
2020-06-18 18:36:03 +01:00
"encoding/json"
Add peer-to-peer support into Dendrite via libp2p and fetch (#880)
* Use a fork of pq which supports userCurrent on wasm
* Use sqlite3_js driver when running in JS
* Add cmd/dendritejs to pull in sqlite3_js driver for wasm only
* Update to latest go-sqlite-js version
* Replace prometheus with a stub. sigh
* Hard-code a config and don't use opentracing
* Latest go-sqlite3-js version
* Generate a key for now
* Listen for fetch traffic rather than HTTP
* Latest hacks for js
* libp2p support
* More libp2p
* Fork gjson to allow us to enforce auth checks as before
Previously, all events would come down redacted because the hash
checks would fail. They would fail because sjson.DeleteBytes didn't
remove keys not used for hashing. This didn't work because of a build
tag which included a file which no-oped the index returned.
See https://github.com/tidwall/gjson/issues/157
When it's resolved, let's go back to mainline.
* Use gjson@1.6.0 as it fixes https://github.com/tidwall/gjson/issues/157
* Use latest gomatrixserverlib for sig checks
* Fix a bug which could cause exclude_from_sync to not be set
Caused when sending events over federation.
* Use query variadic to make lookups actually work!
* Latest gomatrixserverlib
* Add notes on getting p2p up and running
Partly so I don't forget myself!
* refactor: Move p2p specific stuff to cmd/dendritejs
This is important or else the normal build of dendrite will fail
because the p2p libraries depend on syscall/js which doesn't work
on normal builds.
Also, clean up main.go to read a bit better.
* Update ho-http-js-libp2p to return errors from RoundTrip
* Add an LRU cache around the key DB
We actually need this for P2P because otherwise we can *segfault*
with things like: "runtime: unexpected return pc for runtime.handleEvent"
where the event is a `syscall/js` event, caused by spamming sql.js
caused by "Checking event signatures for 14 events of room state" which
hammers the key DB repeatedly in quick succession.
Using a cache fixes this, though the underlying cause is probably a bug
in the version of Go I'm on (1.13.7)
* breaking: Add Tracing.Enabled to toggle whether we do opentracing
Defaults to false, which is why this is a breaking change. We need
this flag because WASM builds cannot do opentracing.
* Start adding conditional builds for wasm to handle lib/pq
The general idea here is to have the wasm build have a `NewXXXDatabase`
that doesn't import any postgres package and hence we never import
`lib/pq`, which doesn't work under WASM (undefined `userCurrent`).
* Remove lib/pq for wasm for syncapi
* Add conditional building to remaining storage APIs
* Update build script to set env vars correctly for dendritejs
* sqlite bug fixes
* Docs
* Add a no-op main for dendritejs when not building under wasm
* Use the real prometheus, even for WASM
Instead, the dendrite-sw.js must mock out `process.pid` and
`fs.stat` - which must invoke the callback with an error (e.g `EINVAL`)
in order for it to work:
```
global.process = {
pid: 1,
};
global.fs.stat = function(path, cb) {
cb({
code: "EINVAL",
});
}
```
* Linting
2020-03-06 10:23:55 +00:00
"errors"
2022-11-02 10:18:11 +00:00
"github.com/matrix-org/gomatrixserverlib"
2023-04-06 09:55:01 +01:00
"github.com/matrix-org/gomatrixserverlib/fclient"
2023-04-19 15:50:33 +01:00
"github.com/matrix-org/gomatrixserverlib/spec"
2022-11-02 10:18:11 +00:00
Add peer-to-peer support into Dendrite via libp2p and fetch (#880)
* Use a fork of pq which supports userCurrent on wasm
* Use sqlite3_js driver when running in JS
* Add cmd/dendritejs to pull in sqlite3_js driver for wasm only
* Update to latest go-sqlite-js version
* Replace prometheus with a stub. sigh
* Hard-code a config and don't use opentracing
* Latest go-sqlite3-js version
* Generate a key for now
* Listen for fetch traffic rather than HTTP
* Latest hacks for js
* libp2p support
* More libp2p
* Fork gjson to allow us to enforce auth checks as before
Previously, all events would come down redacted because the hash
checks would fail. They would fail because sjson.DeleteBytes didn't
remove keys not used for hashing. This didn't work because of a build
tag which included a file which no-oped the index returned.
See https://github.com/tidwall/gjson/issues/157
When it's resolved, let's go back to mainline.
* Use gjson@1.6.0 as it fixes https://github.com/tidwall/gjson/issues/157
* Use latest gomatrixserverlib for sig checks
* Fix a bug which could cause exclude_from_sync to not be set
Caused when sending events over federation.
* Use query variadic to make lookups actually work!
* Latest gomatrixserverlib
* Add notes on getting p2p up and running
Partly so I don't forget myself!
* refactor: Move p2p specific stuff to cmd/dendritejs
This is important or else the normal build of dendrite will fail
because the p2p libraries depend on syscall/js which doesn't work
on normal builds.
Also, clean up main.go to read a bit better.
* Update ho-http-js-libp2p to return errors from RoundTrip
* Add an LRU cache around the key DB
We actually need this for P2P because otherwise we can *segfault*
with things like: "runtime: unexpected return pc for runtime.handleEvent"
where the event is a `syscall/js` event, caused by spamming sql.js
caused by "Checking event signatures for 14 events of room state" which
hammers the key DB repeatedly in quick succession.
Using a cache fixes this, though the underlying cause is probably a bug
in the version of Go I'm on (1.13.7)
* breaking: Add Tracing.Enabled to toggle whether we do opentracing
Defaults to false, which is why this is a breaking change. We need
this flag because WASM builds cannot do opentracing.
* Start adding conditional builds for wasm to handle lib/pq
The general idea here is to have the wasm build have a `NewXXXDatabase`
that doesn't import any postgres package and hence we never import
`lib/pq`, which doesn't work under WASM (undefined `userCurrent`).
* Remove lib/pq for wasm for syncapi
* Add conditional building to remaining storage APIs
* Update build script to set env vars correctly for dendritejs
* sqlite bug fixes
* Docs
* Add a no-op main for dendritejs when not building under wasm
* Use the real prometheus, even for WASM
Instead, the dendrite-sw.js must mock out `process.pid` and
`fs.stat` - which must invoke the callback with an error (e.g `EINVAL`)
in order for it to work:
```
global.process = {
pid: 1,
};
global.fs.stat = function(path, cb) {
cb({
code: "EINVAL",
});
}
```
* Linting
2020-03-06 10:23:55 +00:00
"github.com/matrix-org/dendrite/clientapi/auth/authtypes"
2022-09-09 12:56:33 +01:00
"github.com/matrix-org/dendrite/internal/pushrules"
2020-06-17 11:22:26 +01:00
"github.com/matrix-org/dendrite/userapi/api"
2022-03-03 11:40:53 +00:00
"github.com/matrix-org/dendrite/userapi/storage/tables"
2022-05-04 18:04:28 +01:00
"github.com/matrix-org/dendrite/userapi/types"
Add peer-to-peer support into Dendrite via libp2p and fetch (#880)
* Use a fork of pq which supports userCurrent on wasm
* Use sqlite3_js driver when running in JS
* Add cmd/dendritejs to pull in sqlite3_js driver for wasm only
* Update to latest go-sqlite-js version
* Replace prometheus with a stub. sigh
* Hard-code a config and don't use opentracing
* Latest go-sqlite3-js version
* Generate a key for now
* Listen for fetch traffic rather than HTTP
* Latest hacks for js
* libp2p support
* More libp2p
* Fork gjson to allow us to enforce auth checks as before
Previously, all events would come down redacted because the hash
checks would fail. They would fail because sjson.DeleteBytes didn't
remove keys not used for hashing. This didn't work because of a build
tag which included a file which no-oped the index returned.
See https://github.com/tidwall/gjson/issues/157
When it's resolved, let's go back to mainline.
* Use gjson@1.6.0 as it fixes https://github.com/tidwall/gjson/issues/157
* Use latest gomatrixserverlib for sig checks
* Fix a bug which could cause exclude_from_sync to not be set
Caused when sending events over federation.
* Use query variadic to make lookups actually work!
* Latest gomatrixserverlib
* Add notes on getting p2p up and running
Partly so I don't forget myself!
* refactor: Move p2p specific stuff to cmd/dendritejs
This is important or else the normal build of dendrite will fail
because the p2p libraries depend on syscall/js which doesn't work
on normal builds.
Also, clean up main.go to read a bit better.
* Update ho-http-js-libp2p to return errors from RoundTrip
* Add an LRU cache around the key DB
We actually need this for P2P because otherwise we can *segfault*
with things like: "runtime: unexpected return pc for runtime.handleEvent"
where the event is a `syscall/js` event, caused by spamming sql.js
caused by "Checking event signatures for 14 events of room state" which
hammers the key DB repeatedly in quick succession.
Using a cache fixes this, though the underlying cause is probably a bug
in the version of Go I'm on (1.13.7)
* breaking: Add Tracing.Enabled to toggle whether we do opentracing
Defaults to false, which is why this is a breaking change. We need
this flag because WASM builds cannot do opentracing.
* Start adding conditional builds for wasm to handle lib/pq
The general idea here is to have the wasm build have a `NewXXXDatabase`
that doesn't import any postgres package and hence we never import
`lib/pq`, which doesn't work under WASM (undefined `userCurrent`).
* Remove lib/pq for wasm for syncapi
* Add conditional building to remaining storage APIs
* Update build script to set env vars correctly for dendritejs
* sqlite bug fixes
* Docs
* Add a no-op main for dendritejs when not building under wasm
* Use the real prometheus, even for WASM
Instead, the dendrite-sw.js must mock out `process.pid` and
`fs.stat` - which must invoke the callback with an error (e.g `EINVAL`)
in order for it to work:
```
global.process = {
pid: 1,
};
global.fs.stat = function(path, cb) {
cb({
code: "EINVAL",
});
}
```
* Linting
2020-03-06 10:23:55 +00:00
)
2022-03-24 21:45:44 +00:00
type Profile interface {
2023-04-19 15:50:33 +01:00
GetProfileByLocalpart ( ctx context . Context , localpart string , serverName spec . ServerName ) ( * authtypes . Profile , error )
2022-03-24 21:45:44 +00:00
SearchProfiles ( ctx context . Context , searchString string , limit int ) ( [ ] authtypes . Profile , error )
2023-04-19 15:50:33 +01:00
SetAvatarURL ( ctx context . Context , localpart string , serverName spec . ServerName , avatarURL string ) ( * authtypes . Profile , bool , error )
SetDisplayName ( ctx context . Context , localpart string , serverName spec . ServerName , displayName string ) ( * authtypes . Profile , bool , error )
2022-03-24 21:45:44 +00:00
}
2022-04-27 14:05:49 +01:00
type Account interface {
2020-06-01 18:34:29 +01:00
// CreateAccount makes a new account with the given login name and password, and creates an empty profile
// for this account. If no password is supplied, the account will be a passwordless account. If the
// account already exists, it will return nil, ErrUserExists.
2023-04-19 15:50:33 +01:00
CreateAccount ( ctx context . Context , localpart string , serverName spec . ServerName , plaintextPassword string , appserviceID string , accountType api . AccountType ) ( * api . Account , error )
GetAccountByPassword ( ctx context . Context , localpart string , serverName spec . ServerName , plaintextPassword string ) ( * api . Account , error )
GetNewNumericLocalpart ( ctx context . Context , serverName spec . ServerName ) ( int64 , error )
CheckAccountAvailability ( ctx context . Context , localpart string , serverName spec . ServerName ) ( bool , error )
GetAccountByLocalpart ( ctx context . Context , localpart string , serverName spec . ServerName ) ( * api . Account , error )
DeactivateAccount ( ctx context . Context , localpart string , serverName spec . ServerName ) ( err error )
SetPassword ( ctx context . Context , localpart string , serverName spec . ServerName , plaintextPassword string ) error
2022-04-27 14:05:49 +01:00
}
type AccountData interface {
2023-04-19 15:50:33 +01:00
SaveAccountData ( ctx context . Context , localpart string , serverName spec . ServerName , roomID , dataType string , content json . RawMessage ) error
GetAccountData ( ctx context . Context , localpart string , serverName spec . ServerName ) ( global map [ string ] json . RawMessage , rooms map [ string ] map [ string ] json . RawMessage , err error )
2020-06-16 17:39:56 +01:00
// GetAccountDataByType returns account data matching a given
// localpart, room ID and type.
// If no account data could be found, returns nil
// Returns an error if there was an issue with the retrieval
2023-04-19 15:50:33 +01:00
GetAccountDataByType ( ctx context . Context , localpart string , serverName spec . ServerName , roomID , dataType string ) ( data json . RawMessage , err error )
QueryPushRules ( ctx context . Context , localpart string , serverName spec . ServerName ) ( * pushrules . AccountRuleSets , error )
2022-04-27 14:05:49 +01:00
}
2022-02-18 11:31:05 +00:00
2022-04-27 14:05:49 +01:00
type Device interface {
2022-02-18 11:31:05 +00:00
GetDeviceByAccessToken ( ctx context . Context , token string ) ( * api . Device , error )
2023-04-19 15:50:33 +01:00
GetDeviceByID ( ctx context . Context , localpart string , serverName spec . ServerName , deviceID string ) ( * api . Device , error )
GetDevicesByLocalpart ( ctx context . Context , localpart string , serverName spec . ServerName ) ( [ ] api . Device , error )
2022-02-18 11:31:05 +00:00
GetDevicesByID ( ctx context . Context , deviceIDs [ ] string ) ( [ ] api . Device , error )
// CreateDevice makes a new device associated with the given user ID localpart.
// If there is already a device with the same device ID for this user, that access token will be revoked
// and replaced with the given accessToken. If the given accessToken is already in use for another device,
// an error will be returned.
// If no device ID is given one is generated.
// Returns the device on success.
2023-04-19 15:50:33 +01:00
CreateDevice ( ctx context . Context , localpart string , serverName spec . ServerName , deviceID * string , accessToken string , displayName * string , ipAddr , userAgent string ) ( dev * api . Device , returnErr error )
UpdateDevice ( ctx context . Context , localpart string , serverName spec . ServerName , deviceID string , displayName * string ) error
UpdateDeviceLastSeen ( ctx context . Context , localpart string , serverName spec . ServerName , deviceID , ipAddr , userAgent string ) error
RemoveDevices ( ctx context . Context , localpart string , serverName spec . ServerName , devices [ ] string ) error
2022-02-18 11:31:05 +00:00
// RemoveAllDevices deleted all devices for this user. Returns the devices deleted.
2023-04-19 15:50:33 +01:00
RemoveAllDevices ( ctx context . Context , localpart string , serverName spec . ServerName , exceptDeviceID string ) ( devices [ ] api . Device , err error )
2022-04-27 14:05:49 +01:00
}
2022-02-18 11:31:05 +00:00
2022-04-27 14:05:49 +01:00
type KeyBackup interface {
CreateKeyBackup ( ctx context . Context , userID , algorithm string , authData json . RawMessage ) ( version string , err error )
UpdateKeyBackupAuthData ( ctx context . Context , userID , version string , authData json . RawMessage ) ( err error )
DeleteKeyBackup ( ctx context . Context , userID , version string ) ( exists bool , err error )
GetKeyBackup ( ctx context . Context , userID , version string ) ( versionResult , algorithm string , authData json . RawMessage , etag string , deleted bool , err error )
UpsertBackupKeys ( ctx context . Context , version , userID string , uploads [ ] api . InternalKeyBackupSession ) ( count int64 , etag string , err error )
GetBackupKeys ( ctx context . Context , version , userID , filterRoomID , filterSessionID string ) ( result map [ string ] map [ string ] api . KeyBackupSession , err error )
CountBackupKeys ( ctx context . Context , version , userID string ) ( count int64 , err error )
}
type LoginToken interface {
2022-02-18 11:31:05 +00:00
// CreateLoginToken generates a token, stores and returns it. The lifetime is
2023-02-20 13:58:03 +00:00
// determined by the loginTokenLifetime given to the UserDatabase constructor.
2022-02-18 11:31:05 +00:00
CreateLoginToken ( ctx context . Context , data * api . LoginTokenData ) ( * api . LoginTokenMetadata , error )
// RemoveLoginToken removes the named token (and may clean up other expired tokens).
RemoveLoginToken ( ctx context . Context , token string ) error
// GetLoginTokenDataByToken returns the data associated with the given token.
// May return sql.ErrNoRows.
GetLoginTokenDataByToken ( ctx context . Context , token string ) ( * api . LoginTokenData , error )
2022-04-27 14:05:49 +01:00
}
type OpenID interface {
CreateOpenIDToken ( ctx context . Context , token , userID string ) ( exp int64 , err error )
GetOpenIDTokenAttributes ( ctx context . Context , token string ) ( * api . OpenIDTokenAttributes , error )
}
2022-03-03 11:40:53 +00:00
2022-04-27 14:05:49 +01:00
type Pusher interface {
2023-04-19 15:50:33 +01:00
UpsertPusher ( ctx context . Context , p api . Pusher , localpart string , serverName spec . ServerName ) error
GetPushers ( ctx context . Context , localpart string , serverName spec . ServerName ) ( [ ] api . Pusher , error )
RemovePusher ( ctx context . Context , appid , pushkey , localpart string , serverName spec . ServerName ) error
2022-04-27 14:05:49 +01:00
RemovePushers ( ctx context . Context , appid , pushkey string ) error
}
type ThreePID interface {
2023-04-19 15:50:33 +01:00
SaveThreePIDAssociation ( ctx context . Context , threepid , localpart string , serverName spec . ServerName , medium string ) ( err error )
2022-04-27 14:05:49 +01:00
RemoveThreePIDAssociation ( ctx context . Context , threepid string , medium string ) ( err error )
2023-04-19 15:50:33 +01:00
GetLocalpartForThreePID ( ctx context . Context , threepid string , medium string ) ( localpart string , serverName spec . ServerName , err error )
GetThreePIDsForLocalpart ( ctx context . Context , localpart string , serverName spec . ServerName ) ( threepids [ ] authtypes . ThreePID , err error )
2022-04-27 14:05:49 +01:00
}
type Notification interface {
2023-04-19 15:50:33 +01:00
InsertNotification ( ctx context . Context , localpart string , serverName spec . ServerName , eventID string , pos uint64 , tweaks map [ string ] interface { } , n * api . Notification ) error
DeleteNotificationsUpTo ( ctx context . Context , localpart string , serverName spec . ServerName , roomID string , pos uint64 ) ( affected bool , err error )
SetNotificationsRead ( ctx context . Context , localpart string , serverName spec . ServerName , roomID string , pos uint64 , read bool ) ( affected bool , err error )
GetNotifications ( ctx context . Context , localpart string , serverName spec . ServerName , fromID int64 , limit int , filter tables . NotificationFilter ) ( [ ] * api . Notification , int64 , error )
GetNotificationCount ( ctx context . Context , localpart string , serverName spec . ServerName , filter tables . NotificationFilter ) ( int64 , error )
GetRoomNotificationCounts ( ctx context . Context , localpart string , serverName spec . ServerName , roomID string ) ( total int64 , highlight int64 , _ error )
2022-03-03 16:45:06 +00:00
DeleteOldNotifications ( ctx context . Context ) error
2022-04-27 14:05:49 +01:00
}
2022-03-03 11:40:53 +00:00
2023-02-20 13:58:03 +00:00
type UserDatabase interface {
2022-04-27 14:05:49 +01:00
Account
AccountData
Device
KeyBackup
LoginToken
Notification
OpenID
Profile
Pusher
2022-05-04 18:04:28 +01:00
Statistics
2022-04-27 14:05:49 +01:00
ThreePID
Add peer-to-peer support into Dendrite via libp2p and fetch (#880)
* Use a fork of pq which supports userCurrent on wasm
* Use sqlite3_js driver when running in JS
* Add cmd/dendritejs to pull in sqlite3_js driver for wasm only
* Update to latest go-sqlite-js version
* Replace prometheus with a stub. sigh
* Hard-code a config and don't use opentracing
* Latest go-sqlite3-js version
* Generate a key for now
* Listen for fetch traffic rather than HTTP
* Latest hacks for js
* libp2p support
* More libp2p
* Fork gjson to allow us to enforce auth checks as before
Previously, all events would come down redacted because the hash
checks would fail. They would fail because sjson.DeleteBytes didn't
remove keys not used for hashing. This didn't work because of a build
tag which included a file which no-oped the index returned.
See https://github.com/tidwall/gjson/issues/157
When it's resolved, let's go back to mainline.
* Use gjson@1.6.0 as it fixes https://github.com/tidwall/gjson/issues/157
* Use latest gomatrixserverlib for sig checks
* Fix a bug which could cause exclude_from_sync to not be set
Caused when sending events over federation.
* Use query variadic to make lookups actually work!
* Latest gomatrixserverlib
* Add notes on getting p2p up and running
Partly so I don't forget myself!
* refactor: Move p2p specific stuff to cmd/dendritejs
This is important or else the normal build of dendrite will fail
because the p2p libraries depend on syscall/js which doesn't work
on normal builds.
Also, clean up main.go to read a bit better.
* Update ho-http-js-libp2p to return errors from RoundTrip
* Add an LRU cache around the key DB
We actually need this for P2P because otherwise we can *segfault*
with things like: "runtime: unexpected return pc for runtime.handleEvent"
where the event is a `syscall/js` event, caused by spamming sql.js
caused by "Checking event signatures for 14 events of room state" which
hammers the key DB repeatedly in quick succession.
Using a cache fixes this, though the underlying cause is probably a bug
in the version of Go I'm on (1.13.7)
* breaking: Add Tracing.Enabled to toggle whether we do opentracing
Defaults to false, which is why this is a breaking change. We need
this flag because WASM builds cannot do opentracing.
* Start adding conditional builds for wasm to handle lib/pq
The general idea here is to have the wasm build have a `NewXXXDatabase`
that doesn't import any postgres package and hence we never import
`lib/pq`, which doesn't work under WASM (undefined `userCurrent`).
* Remove lib/pq for wasm for syncapi
* Add conditional building to remaining storage APIs
* Update build script to set env vars correctly for dendritejs
* sqlite bug fixes
* Docs
* Add a no-op main for dendritejs when not building under wasm
* Use the real prometheus, even for WASM
Instead, the dendrite-sw.js must mock out `process.pid` and
`fs.stat` - which must invoke the callback with an error (e.g `EINVAL`)
in order for it to work:
```
global.process = {
pid: 1,
};
global.fs.stat = function(path, cb) {
cb({
code: "EINVAL",
});
}
```
* Linting
2020-03-06 10:23:55 +00:00
}
2023-02-20 13:58:03 +00:00
type KeyChangeDatabase interface {
// StoreKeyChange stores key change metadata and returns the device change ID which represents the position in the /sync stream for this device change.
// `userID` is the the user who has changed their keys in some way.
StoreKeyChange ( ctx context . Context , userID string ) ( int64 , error )
}
type KeyDatabase interface {
KeyChangeDatabase
// ExistingOneTimeKeys returns a map of keyIDWithAlgorithm to key JSON for the given parameters. If no keys exist with this combination
// of user/device/key/algorithm 4-uple then it is omitted from the map. Returns an error when failing to communicate with the database.
ExistingOneTimeKeys ( ctx context . Context , userID , deviceID string , keyIDsWithAlgorithms [ ] string ) ( map [ string ] json . RawMessage , error )
// StoreOneTimeKeys persists the given one-time keys.
StoreOneTimeKeys ( ctx context . Context , keys api . OneTimeKeys ) ( * api . OneTimeKeysCount , error )
// OneTimeKeysCount returns a count of all OTKs for this device.
OneTimeKeysCount ( ctx context . Context , userID , deviceID string ) ( * api . OneTimeKeysCount , error )
// DeviceKeysJSON populates the KeyJSON for the given keys. If any proided `keys` have a `KeyJSON` or `StreamID` already then it will be replaced.
DeviceKeysJSON ( ctx context . Context , keys [ ] api . DeviceMessage ) error
// StoreLocalDeviceKeys persists the given keys. Keys with the same user ID and device ID will be replaced. An empty KeyJSON removes the key
// for this (user, device).
// The `StreamID` for each message is set on successful insertion. In the event the key already exists, the existing StreamID is set.
// Returns an error if there was a problem storing the keys.
StoreLocalDeviceKeys ( ctx context . Context , keys [ ] api . DeviceMessage ) error
// StoreRemoteDeviceKeys persists the given keys. Keys with the same user ID and device ID will be replaced. An empty KeyJSON removes the key
// for this (user, device). Does not modify the stream ID for keys. User IDs in `clearUserIDs` will have all their device keys deleted prior
// to insertion - use this when you have a complete snapshot of a user's keys in order to track device deletions correctly.
StoreRemoteDeviceKeys ( ctx context . Context , keys [ ] api . DeviceMessage , clearUserIDs [ ] string ) error
// PrevIDsExists returns true if all prev IDs exist for this user.
PrevIDsExists ( ctx context . Context , userID string , prevIDs [ ] int64 ) ( bool , error )
// DeviceKeysForUser returns the device keys for the device IDs given. If the length of deviceIDs is 0, all devices are selected.
// If there are some missing keys, they are omitted from the returned slice. There is no ordering on the returned slice.
DeviceKeysForUser ( ctx context . Context , userID string , deviceIDs [ ] string , includeEmpty bool ) ( [ ] api . DeviceMessage , error )
// DeleteDeviceKeys removes the device keys for a given user/device, and any accompanying
// cross-signing signatures relating to that device.
DeleteDeviceKeys ( ctx context . Context , userID string , deviceIDs [ ] gomatrixserverlib . KeyID ) error
// ClaimKeys based on the 3-uple of user_id, device_id and algorithm name. Returns the keys claimed. Returns no error if a key
// cannot be claimed or if none exist for this (user, device, algorithm), instead it is omitted from the returned slice.
ClaimKeys ( ctx context . Context , userToDeviceToAlgorithm map [ string ] map [ string ] string ) ( [ ] api . OneTimeKeys , error )
// KeyChanges returns a list of user IDs who have modified their keys from the offset given (exclusive) to the offset given (inclusive).
// A to offset of types.OffsetNewest means no upper limit.
// Returns the offset of the latest key change.
KeyChanges ( ctx context . Context , fromOffset , toOffset int64 ) ( userIDs [ ] string , latestOffset int64 , err error )
// StaleDeviceLists returns a list of user IDs ending with the domains provided who have stale device lists.
// If no domains are given, all user IDs with stale device lists are returned.
2023-04-19 15:50:33 +01:00
StaleDeviceLists ( ctx context . Context , domains [ ] spec . ServerName ) ( [ ] string , error )
2023-02-20 13:58:03 +00:00
// MarkDeviceListStale sets the stale bit for this user to isStale.
MarkDeviceListStale ( ctx context . Context , userID string , isStale bool ) error
2023-04-06 09:55:01 +01:00
CrossSigningKeysForUser ( ctx context . Context , userID string ) ( map [ fclient . CrossSigningKeyPurpose ] fclient . CrossSigningKey , error )
2023-02-20 13:58:03 +00:00
CrossSigningKeysDataForUser ( ctx context . Context , userID string ) ( types . CrossSigningKeyMap , error )
CrossSigningSigsForTarget ( ctx context . Context , originUserID , targetUserID string , targetKeyID gomatrixserverlib . KeyID ) ( types . CrossSigningSigMap , error )
StoreCrossSigningKeysForUser ( ctx context . Context , userID string , keyMap types . CrossSigningKeyMap ) error
2023-04-19 15:50:33 +01:00
StoreCrossSigningSigsForTarget ( ctx context . Context , originUserID string , originKeyID gomatrixserverlib . KeyID , targetUserID string , targetKeyID gomatrixserverlib . KeyID , signature spec . Base64Bytes ) error
2023-02-20 13:58:03 +00:00
DeleteStaleDeviceLists (
ctx context . Context ,
userIDs [ ] string ,
) error
}
2022-05-04 18:04:28 +01:00
type Statistics interface {
UserStatistics ( ctx context . Context ) ( * types . UserStatistics , * types . DatabaseEngine , error )
2023-04-19 15:50:33 +01:00
DailyRoomsMessages ( ctx context . Context , serverName spec . ServerName ) ( stats types . MessageStats , activeRooms , activeE2EERooms int64 , err error )
UpsertDailyRoomsMessages ( ctx context . Context , serverName spec . ServerName , stats types . MessageStats , activeRooms , activeE2EERooms int64 ) error
2022-05-04 18:04:28 +01:00
}
Add peer-to-peer support into Dendrite via libp2p and fetch (#880)
* Use a fork of pq which supports userCurrent on wasm
* Use sqlite3_js driver when running in JS
* Add cmd/dendritejs to pull in sqlite3_js driver for wasm only
* Update to latest go-sqlite-js version
* Replace prometheus with a stub. sigh
* Hard-code a config and don't use opentracing
* Latest go-sqlite3-js version
* Generate a key for now
* Listen for fetch traffic rather than HTTP
* Latest hacks for js
* libp2p support
* More libp2p
* Fork gjson to allow us to enforce auth checks as before
Previously, all events would come down redacted because the hash
checks would fail. They would fail because sjson.DeleteBytes didn't
remove keys not used for hashing. This didn't work because of a build
tag which included a file which no-oped the index returned.
See https://github.com/tidwall/gjson/issues/157
When it's resolved, let's go back to mainline.
* Use gjson@1.6.0 as it fixes https://github.com/tidwall/gjson/issues/157
* Use latest gomatrixserverlib for sig checks
* Fix a bug which could cause exclude_from_sync to not be set
Caused when sending events over federation.
* Use query variadic to make lookups actually work!
* Latest gomatrixserverlib
* Add notes on getting p2p up and running
Partly so I don't forget myself!
* refactor: Move p2p specific stuff to cmd/dendritejs
This is important or else the normal build of dendrite will fail
because the p2p libraries depend on syscall/js which doesn't work
on normal builds.
Also, clean up main.go to read a bit better.
* Update ho-http-js-libp2p to return errors from RoundTrip
* Add an LRU cache around the key DB
We actually need this for P2P because otherwise we can *segfault*
with things like: "runtime: unexpected return pc for runtime.handleEvent"
where the event is a `syscall/js` event, caused by spamming sql.js
caused by "Checking event signatures for 14 events of room state" which
hammers the key DB repeatedly in quick succession.
Using a cache fixes this, though the underlying cause is probably a bug
in the version of Go I'm on (1.13.7)
* breaking: Add Tracing.Enabled to toggle whether we do opentracing
Defaults to false, which is why this is a breaking change. We need
this flag because WASM builds cannot do opentracing.
* Start adding conditional builds for wasm to handle lib/pq
The general idea here is to have the wasm build have a `NewXXXDatabase`
that doesn't import any postgres package and hence we never import
`lib/pq`, which doesn't work under WASM (undefined `userCurrent`).
* Remove lib/pq for wasm for syncapi
* Add conditional building to remaining storage APIs
* Update build script to set env vars correctly for dendritejs
* sqlite bug fixes
* Docs
* Add a no-op main for dendritejs when not building under wasm
* Use the real prometheus, even for WASM
Instead, the dendrite-sw.js must mock out `process.pid` and
`fs.stat` - which must invoke the callback with an error (e.g `EINVAL`)
in order for it to work:
```
global.process = {
pid: 1,
};
global.fs.stat = function(path, cb) {
cb({
code: "EINVAL",
});
}
```
* Linting
2020-03-06 10:23:55 +00:00
// Err3PIDInUse is the error returned when trying to save an association involving
// a third-party identifier which is already associated to a local user.
2021-09-08 17:31:03 +01:00
var Err3PIDInUse = errors . New ( "this third-party identifier is already in use" )