fix(db): retain name and description values upon refresh
This commit is contained in:
parent
7e5f3400ef
commit
11e4935055
1 changed files with 16 additions and 39 deletions
49
src/db.rs
49
src/db.rs
|
@ -488,13 +488,13 @@ mod db_impl {
|
||||||
Err(e) => return Err(e.into()),
|
Err(e) => return Err(e.into()),
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// 4. Item insertion
|
||||||
let max_order: i32 = tx.query_row(
|
let max_order: i32 = tx.query_row(
|
||||||
"SELECT COALESCE(MAX(item_order), 0) FROM items WHERE url_id = ?",
|
"SELECT COALESCE(MAX(item_order), 0) FROM items WHERE url_id = ?",
|
||||||
[url_id],
|
[url_id],
|
||||||
|row| row.get(0),
|
|row| row.get(0),
|
||||||
)?;
|
)?;
|
||||||
|
|
||||||
// 4. Item insertion
|
|
||||||
log!("[DB] Upserting item");
|
log!("[DB] Upserting item");
|
||||||
tx.execute(
|
tx.execute(
|
||||||
"INSERT INTO items (id, url_id, wikidata_id, item_order)
|
"INSERT INTO items (id, url_id, wikidata_id, item_order)
|
||||||
|
@ -512,7 +512,7 @@ mod db_impl {
|
||||||
)?;
|
)?;
|
||||||
log!("[DB] Item upserted successfully");
|
log!("[DB] Item upserted successfully");
|
||||||
|
|
||||||
// Combine core properties with custom ones
|
// property handling
|
||||||
let core_properties = vec![
|
let core_properties = vec![
|
||||||
("name", &item.name),
|
("name", &item.name),
|
||||||
("description", &item.description)
|
("description", &item.description)
|
||||||
|
@ -532,10 +532,9 @@ mod db_impl {
|
||||||
)?;
|
)?;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Property handling with enhanced logging
|
// Property synchronization
|
||||||
log!("[DB] Synchronizing properties for item {}", item.id);
|
log!("[DB] Synchronizing properties for item {}", item.id);
|
||||||
let existing_props = {
|
let existing_props = {
|
||||||
// Prepare statement and collect existing properties
|
|
||||||
let mut stmt = tx.prepare(
|
let mut stmt = tx.prepare(
|
||||||
"SELECT p.name, ip.value
|
"SELECT p.name, ip.value
|
||||||
FROM item_properties ip
|
FROM item_properties ip
|
||||||
|
@ -550,40 +549,18 @@ mod db_impl {
|
||||||
mapped_rows.collect::<Result<HashMap<String, String>, _>>()?
|
mapped_rows.collect::<Result<HashMap<String, String>, _>>()?
|
||||||
};
|
};
|
||||||
|
|
||||||
for (prop, value) in &item.custom_properties {
|
// Include core properties in current_props check
|
||||||
// Update existing or insert new
|
let mut current_props: HashSet<&str> = item.custom_properties.keys()
|
||||||
let prop_id = self.get_or_create_property(&mut tx, prop).await?;
|
.map(|s| s.as_str())
|
||||||
if let Some(existing_value) = existing_props.get(prop) {
|
.collect();
|
||||||
if existing_value != value {
|
current_props.insert("name");
|
||||||
log!(
|
current_props.insert("description");
|
||||||
"[DB] Updating property {} from '{}' to '{}'",
|
|
||||||
prop,
|
|
||||||
existing_value,
|
|
||||||
value
|
|
||||||
);
|
|
||||||
tx.execute(
|
|
||||||
"UPDATE item_properties
|
|
||||||
SET value = ?
|
|
||||||
WHERE item_id = ?
|
|
||||||
AND property_id = (SELECT id FROM properties WHERE name = ?)",
|
|
||||||
rusqlite::params![value, &item.id, prop],
|
|
||||||
)?;
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
log!("[DB] Adding new property {}", prop);
|
|
||||||
tx.execute(
|
|
||||||
"INSERT INTO item_properties (item_id, property_id, value)
|
|
||||||
VALUES (?, ?, ?)",
|
|
||||||
rusqlite::params![&item.id, prop_id, value],
|
|
||||||
)?;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// Remove deleted properties
|
// Cleanup with core property protection
|
||||||
let current_props: HashSet<&str> =
|
|
||||||
item.custom_properties.keys().map(|s| s.as_str()).collect();
|
|
||||||
for (existing_prop, _) in existing_props {
|
for (existing_prop, _) in existing_props {
|
||||||
if !current_props.contains(existing_prop.as_str()) {
|
if !current_props.contains(existing_prop.as_str())
|
||||||
|
&& !["name", "description"].contains(&existing_prop.as_str())
|
||||||
|
{
|
||||||
log!("[DB] Removing deleted property {}", existing_prop);
|
log!("[DB] Removing deleted property {}", existing_prop);
|
||||||
tx.execute(
|
tx.execute(
|
||||||
"DELETE FROM item_properties
|
"DELETE FROM item_properties
|
||||||
|
|
Loading…
Add table
Reference in a new issue