Skip to content

Commit 0ad1756

Browse files
committed
Remove folder_files tables from the SQL.
We will use external files instead; remove the logic to insert file blobs into the database when importing from v1 accounts.
1 parent 9790d35 commit 0ad1756

File tree

4 files changed

+5
-127
lines changed

4 files changed

+5
-127
lines changed

crates/database/sql_migrations/V1__base.sql

-31
Original file line numberDiff line numberDiff line change
@@ -143,37 +143,6 @@ CREATE TABLE IF NOT EXISTS folder_events
143143
CREATE INDEX IF NOT EXISTS folder_events_commit_hash_idx
144144
ON folder_events (commit_hash);
145145

146-
-- External files for a secret
147-
CREATE TABLE IF NOT EXISTS folder_files
148-
(
149-
file_id INTEGER PRIMARY KEY NOT NULL,
150-
folder_id INTEGER NOT NULL,
151-
secret_id INTEGER NOT NULL,
152-
created_at DATETIME DEFAULT CURRENT_TIMESTAMP,
153-
modified_at DATETIME DEFAULT CURRENT_TIMESTAMP,
154-
-- SHA256 hash of the encrypted file contents
155-
checksum BLOB(32) NOT NULL,
156-
-- Encrypted file contents
157-
contents BLOB NOT NULL,
158-
159-
FOREIGN KEY (folder_id) REFERENCES folders (folder_id)
160-
ON DELETE CASCADE,
161-
162-
FOREIGN KEY (secret_id) REFERENCES folder_secrets (secret_id)
163-
ON DELETE CASCADE
164-
);
165-
CREATE INDEX IF NOT EXISTS folder_files_checksum_idx
166-
ON folder_files (checksum);
167-
168-
CREATE TRIGGER
169-
update_folder_file_modified_at
170-
AFTER UPDATE OF checksum ON folder_files
171-
FOR EACH ROW
172-
BEGIN UPDATE folder_files
173-
SET modified_at = datetime('now')
174-
WHERE file_id = NEW.file_id;
175-
END;
176-
177146
-- Account level events
178147
CREATE TABLE IF NOT EXISTS account_events
179148
(

crates/database/src/db/file.rs

-68
This file was deleted.

crates/database/src/db/import.rs

+1-24
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,7 @@ use sos_vfs as vfs;
2727
use std::{collections::HashMap, path::Path};
2828

2929
#[cfg(feature = "files")]
30-
use {
31-
super::FileEntity, crate::files::list_external_files,
32-
sos_filesystem::FileEventLog as FsFileEventLog,
33-
};
30+
use sos_filesystem::FileEventLog as FsFileEventLog;
3431

3532
type AccountEventLog = FsAccountEventLog<sos_filesystem::Error>;
3633
type DeviceEventLog = FsDeviceEventLog<sos_filesystem::Error>;
@@ -142,22 +139,6 @@ pub(crate) async fn import_account(
142139
folders.push((vault, vault_meta, rows, events));
143140
}
144141

145-
#[cfg(feature = "files")]
146-
let user_files = {
147-
let mut user_files = Vec::new();
148-
let files = list_external_files(&paths).await?;
149-
for file in files {
150-
let path = paths.file_location(
151-
file.vault_id(),
152-
file.secret_id(),
153-
file.file_name().to_string(),
154-
);
155-
let buffer = vfs::read(path).await?;
156-
user_files.push((file, buffer));
157-
}
158-
user_files
159-
};
160-
161142
let account_preferences =
162143
if vfs::try_exists(paths.preferences_file()).await? {
163144
Some(vfs::read_to_string(paths.preferences_file()).await?)
@@ -236,10 +217,6 @@ pub(crate) async fn import_account(
236217
{
237218
// Create the file events
238219
event_entity.insert_file_events(account_id, file_events)?;
239-
240-
// Create the file blobs
241-
let file_entity = FileEntity::new(&tx);
242-
file_entity.insert_files(&folder_ids, user_files)?;
243220
}
244221

245222
if let Some(json_data) = account_preferences {

crates/database/src/db/mod.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
mod account;
33
mod audit;
44
mod event;
5-
#[cfg(feature = "files")]
6-
mod file;
5+
// #[cfg(feature = "files")]
6+
// mod file;
77
mod folder;
88
mod import;
99
#[cfg(feature = "preferences")]
@@ -16,8 +16,8 @@ pub use account::{AccountEntity, AccountRecord};
1616
pub(crate) use audit::AuditRow;
1717
pub use audit::{AuditEntity, AuditRecord};
1818
pub use event::{CommitRecord, EventEntity, EventTable};
19-
#[cfg(feature = "files")]
20-
pub use file::FileEntity;
19+
// #[cfg(feature = "files")]
20+
// pub use file::FileEntity;
2121
pub use folder::{FolderEntity, FolderRecord, SecretRecord};
2222
#[cfg(feature = "preferences")]
2323
pub use preference::PreferenceEntity;

0 commit comments

Comments
 (0)