matrix-sdk-indexeddb 0.16.1

Web's IndexedDB Storage backend for matrix-sdk
// Copyright 2024 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.

use indexed_db_futures::{error::OpenDbError, Build};

use crate::crypto_store::{keys, migrations::do_schema_upgrade, Result};

/// Perform the schema upgrade v11 to v12, adding an index on
/// `(curve_key, sender_data_type, session_id)` to `inbound_group_sessions3`.
pub(crate) async fn schema_add(name: &str) -> Result<(), OpenDbError> {
    do_schema_upgrade(name, 12, |transaction, _| {
        let object_store = transaction.object_store(keys::INBOUND_GROUP_SESSIONS_V3)?;

        object_store
            .create_index(
                keys::INBOUND_GROUP_SESSIONS_SENDER_KEY_INDEX,
                ["sender_key", "sender_data_type", "session_id"].into(),
            )
            .build()?;

        Ok(())
    })
    .await
}