mirror of
https://github.com/vector-im/hydrogen-web.git
synced 2024-12-23 11:35:04 +01:00
create user & device identity stores
This commit is contained in:
parent
4ef5d4b3b8
commit
8b7fdb2c61
@ -22,6 +22,8 @@ export const STORE_NAMES = Object.freeze([
|
|||||||
"timelineEvents",
|
"timelineEvents",
|
||||||
"timelineFragments",
|
"timelineFragments",
|
||||||
"pendingEvents",
|
"pendingEvents",
|
||||||
|
"userIdentities",
|
||||||
|
"deviceIdentities",
|
||||||
]);
|
]);
|
||||||
|
|
||||||
export const STORE_MAP = Object.freeze(STORE_NAMES.reduce((nameMap, name) => {
|
export const STORE_MAP = Object.freeze(STORE_NAMES.reduce((nameMap, name) => {
|
||||||
|
@ -24,6 +24,8 @@ import {RoomStateStore} from "./stores/RoomStateStore.js";
|
|||||||
import {RoomMemberStore} from "./stores/RoomMemberStore.js";
|
import {RoomMemberStore} from "./stores/RoomMemberStore.js";
|
||||||
import {TimelineFragmentStore} from "./stores/TimelineFragmentStore.js";
|
import {TimelineFragmentStore} from "./stores/TimelineFragmentStore.js";
|
||||||
import {PendingEventStore} from "./stores/PendingEventStore.js";
|
import {PendingEventStore} from "./stores/PendingEventStore.js";
|
||||||
|
import {UserIdentityStore} from "./stores/UserIdentityStore.js";
|
||||||
|
import {DeviceIdentityStore} from "./stores/DeviceIdentityStore.js";
|
||||||
|
|
||||||
export class Transaction {
|
export class Transaction {
|
||||||
constructor(txn, allowedStoreNames) {
|
constructor(txn, allowedStoreNames) {
|
||||||
@ -81,6 +83,14 @@ export class Transaction {
|
|||||||
return this._store("pendingEvents", idbStore => new PendingEventStore(idbStore));
|
return this._store("pendingEvents", idbStore => new PendingEventStore(idbStore));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
get userIdentities() {
|
||||||
|
return this._store("userIdentities", idbStore => new UserIdentityStore(idbStore));
|
||||||
|
}
|
||||||
|
|
||||||
|
get deviceIdentities() {
|
||||||
|
return this._store("deviceIdentities", idbStore => new DeviceIdentityStore(idbStore));
|
||||||
|
}
|
||||||
|
|
||||||
complete() {
|
complete() {
|
||||||
return txnAsPromise(this._txn);
|
return txnAsPromise(this._txn);
|
||||||
}
|
}
|
||||||
|
@ -9,6 +9,7 @@ export const schema = [
|
|||||||
createInitialStores,
|
createInitialStores,
|
||||||
createMemberStore,
|
createMemberStore,
|
||||||
migrateSession,
|
migrateSession,
|
||||||
|
createIdentityStores,
|
||||||
];
|
];
|
||||||
// TODO: how to deal with git merge conflicts of this array?
|
// TODO: how to deal with git merge conflicts of this array?
|
||||||
|
|
||||||
@ -46,7 +47,7 @@ async function createMemberStore(db, txn) {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
//v3
|
||||||
async function migrateSession(db, txn) {
|
async function migrateSession(db, txn) {
|
||||||
const session = txn.objectStore("session");
|
const session = txn.objectStore("session");
|
||||||
try {
|
try {
|
||||||
@ -64,3 +65,8 @@ async function migrateSession(db, txn) {
|
|||||||
console.error("could not migrate session", err.stack);
|
console.error("could not migrate session", err.stack);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
//v4
|
||||||
|
function createIdentityStores(db) {
|
||||||
|
db.createObjectStore("userIdentities", {keyPath: "userId"});
|
||||||
|
db.createObjectStore("deviceIdentities", {keyPath: "key"});
|
||||||
|
}
|
||||||
|
41
src/matrix/storage/idb/stores/DeviceIdentityStore.js
Normal file
41
src/matrix/storage/idb/stores/DeviceIdentityStore.js
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
/*
|
||||||
|
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.
|
||||||
|
*/
|
||||||
|
|
||||||
|
function encodeKey(userId, deviceId) {
|
||||||
|
return `${userId}|${deviceId}`;
|
||||||
|
}
|
||||||
|
|
||||||
|
export class DeviceIdentityStore {
|
||||||
|
constructor(store) {
|
||||||
|
this._store = store;
|
||||||
|
}
|
||||||
|
|
||||||
|
getAllForUserId(userId) {
|
||||||
|
const range = IDBKeyRange.lowerBound(encodeKey(userId, ""));
|
||||||
|
return this._store.selectWhile(range, device => {
|
||||||
|
return device.userId === userId;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
get(userId, deviceId) {
|
||||||
|
return this._store.get(encodeKey(userId, deviceId));
|
||||||
|
}
|
||||||
|
|
||||||
|
set(deviceIdentity) {
|
||||||
|
deviceIdentity.key = encodeKey(deviceIdentity.userId, deviceIdentity.deviceId);
|
||||||
|
return this._store.set(deviceIdentity);
|
||||||
|
}
|
||||||
|
}
|
33
src/matrix/storage/idb/stores/UserIdentityStore.js
Normal file
33
src/matrix/storage/idb/stores/UserIdentityStore.js
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
/*
|
||||||
|
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.
|
||||||
|
*/
|
||||||
|
|
||||||
|
export class UserIdentityStore {
|
||||||
|
constructor(store) {
|
||||||
|
this._store = store;
|
||||||
|
}
|
||||||
|
|
||||||
|
get(userId) {
|
||||||
|
return this._store.get(userId);
|
||||||
|
}
|
||||||
|
|
||||||
|
set(userIdentity) {
|
||||||
|
return this._store.set(userIdentity);
|
||||||
|
}
|
||||||
|
|
||||||
|
remove(userId) {
|
||||||
|
return this._eventStore.delete(userId);
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user