2020-08-05 22:08:55 +05:30
|
|
|
/*
|
|
|
|
Copyright 2020 Bruno Windels <bruno@windels.cloud>
|
2021-05-06 18:53:58 +05:30
|
|
|
Copyright 2021 The Matrix.org Foundation C.I.C.
|
2020-08-05 22:08:55 +05:30
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
2021-05-06 18:53:58 +05:30
|
|
|
import {MAX_UNICODE} from "./common.js";
|
2021-05-05 22:34:26 +05:30
|
|
|
|
2021-05-31 17:22:03 +05:30
|
|
|
function encodeKey(roomId, eventType, stateKey) {
|
2021-05-31 18:38:49 +05:30
|
|
|
return `${roomId}|${eventType}|${stateKey}`;
|
2021-05-31 17:22:03 +05:30
|
|
|
}
|
|
|
|
|
2020-04-21 00:56:39 +05:30
|
|
|
export class RoomStateStore {
|
2021-05-31 18:38:49 +05:30
|
|
|
constructor(idbStore) {
|
|
|
|
this._roomStateStore = idbStore;
|
|
|
|
}
|
2019-02-11 01:55:29 +05:30
|
|
|
|
2021-05-31 18:38:49 +05:30
|
|
|
getAllForType(roomId, type) {
|
|
|
|
throw new Error("unimplemented");
|
|
|
|
}
|
2019-02-11 01:55:29 +05:30
|
|
|
|
2021-05-31 18:38:49 +05:30
|
|
|
get(roomId, type, stateKey) {
|
2021-05-31 17:22:03 +05:30
|
|
|
const key = encodeKey(roomId, type, stateKey);
|
2021-05-31 18:38:49 +05:30
|
|
|
return this._roomStateStore.get(key);
|
|
|
|
}
|
2019-02-11 01:55:29 +05:30
|
|
|
|
2021-05-31 18:38:49 +05:30
|
|
|
set(roomId, event) {
|
2021-05-31 17:22:03 +05:30
|
|
|
const key = encodeKey(roomId, event.type, event.state_key);
|
2019-06-27 01:25:33 +05:30
|
|
|
const entry = {roomId, event, key};
|
2021-05-31 18:38:49 +05:30
|
|
|
return this._roomStateStore.put(entry);
|
|
|
|
}
|
|
|
|
|
|
|
|
removeAllForRoom(roomId) {
|
|
|
|
// exclude both keys as they are theoretical min and max,
|
|
|
|
// but we should't have a match for just the room id, or room id with max
|
|
|
|
const range = IDBKeyRange.bound(roomId, `${roomId}|${MAX_UNICODE}`, true, true);
|
|
|
|
this._roomStateStore.delete(range);
|
|
|
|
}
|
2019-06-27 01:25:33 +05:30
|
|
|
}
|