Reto Brunner
deeea274da
Merge branch 'sqlite_cleanup'
...
Converts sqlite to async, providing a way forward
for migrations to actually happen
2022-11-24 09:45:01 +01:00
Reto Brunner
8095d9e88a
SearchQuery: offset is always a number
...
Fix type confusion that specified offset to be a string, it is
always a number.
2022-11-15 18:50:52 +01:00
Reto Brunner
d62dd3e62d
messageStorage: convert to async
...
Message stores are more complicated that a sync "fire and forget"
API allows for.
For starters, non trivial stores (say sqlite) can fail during init
and we want to be able to catch that.
Second, we really need to be able to run migrations and such, which
may block (and fail) the activation of the store.
On the plus side, this pushes error handling to the caller rather
than the stores, which is a good thing as that allows us to eventually
push this to the client in the UI, rather than just logging it in the
server on stdout
2022-11-02 00:01:36 +01:00
Reto Brunner
f068fd4290
sqlite: convert migrations to async
...
This removes quite a bunch of indention and callbacks
2022-11-01 22:23:47 +01:00
Reto Brunner
bbe81bb2fa
sqlite: add serialize_get
2022-11-01 22:23:47 +01:00
Reto Brunner
f04a06682d
extract migrations
2022-11-01 22:23:47 +01:00
Reto Brunner
5e1cbe32f9
sqlite: use serialize_fetchall in search
2022-11-01 22:23:47 +01:00
Reto Brunner
ee8223c200
sqlite: use serialize_fetchall in getMessages
2022-11-01 22:23:47 +01:00
Reto Brunner
cc3302e874
sqlite: create serialize_fetchall helper function
...
That puts all the serialization logic into one place and
allows us to use async / promises
2022-11-01 22:23:47 +01:00
Reto Brunner
89ee537364
sqlite: add run helper function
...
Extract the serialization logic into a single place and
consistently log errors to the console rather than a fire
and forget approach.
2022-11-01 22:23:30 +01:00
Reto Brunner
e62b169a6a
sqlite: fix docstring
2022-11-01 22:19:56 +01:00
Reto Brunner
f6b292107e
sqlite: move export to bottom of the file
...
This makes it easier to see what's getting exported, rather than
if it's interspersed randomly in the middle of the file
2022-11-01 22:19:56 +01:00
Reto Brunner
cebc6d069f
sqlite: error if sqlite isn't enabled but search() is called
...
When we assert that something can't possibly happen, we better
error out rather than jugging on with no error ;)
2022-11-01 22:19:56 +01:00
Max Leiter
dd05ee3a65
TypeScript and Vue 3 ( #4559 )
...
Co-authored-by: Eric Nemchik <eric@nemchik.com>
Co-authored-by: Pavel Djundik <xPaw@users.noreply.github.com>
2022-06-18 17:25:21 -07:00