File size: 12,663 Bytes
2edb151 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 | from __future__ import annotations
import json
import sqlite3
from datetime import datetime, timezone
from pathlib import Path
from typing import Any, Iterator
from app.config import Settings
from app.schemas import MatchHit, ReceiptExtract, ReceiptStatus, to_cents
try:
import sqlite_vec
from sqlite_vec import serialize_float32
except ImportError: # pragma: no cover
sqlite_vec = None
serialize_float32 = None # type: ignore[assignment]
class VecLoadError(RuntimeError):
pass
class EmbedIndexError(RuntimeError):
pass
def _utc_now() -> str:
return datetime.now(timezone.utc).replace(microsecond=0).isoformat()
def connect(path: Path) -> sqlite3.Connection:
path.parent.mkdir(parents=True, exist_ok=True)
con = sqlite3.connect(str(path))
con.row_factory = sqlite3.Row
con.execute("PRAGMA foreign_keys = ON")
if sqlite_vec is None:
raise VecLoadError("sqlite-vec is not installed")
try:
con.enable_load_extension(True)
sqlite_vec.load(con)
con.enable_load_extension(False)
except Exception as exc:
con.close()
raise VecLoadError(f"sqlite-vec load failed: {exc}") from exc
return con
def _create_vec_table(con: sqlite3.Connection, name: str, pk: str, dim: int) -> None:
ddl = (
f"CREATE VIRTUAL TABLE IF NOT EXISTS {name} USING vec0("
f"{pk} INTEGER PRIMARY KEY, embedding float[{dim}] distance_metric=cosine)"
)
try:
con.execute(ddl)
except sqlite3.OperationalError:
con.execute(
f"CREATE VIRTUAL TABLE IF NOT EXISTS {name} USING vec0("
f"{pk} INTEGER PRIMARY KEY, embedding float[{dim}])"
)
def init_schema(con: sqlite3.Connection, settings: Settings) -> None:
con.executescript(
"""
CREATE TABLE IF NOT EXISTS meta (
key TEXT PRIMARY KEY,
value TEXT NOT NULL
);
CREATE TABLE IF NOT EXISTS receipts (
id INTEGER PRIMARY KEY AUTOINCREMENT,
source_path TEXT NOT NULL,
sha256 TEXT NOT NULL UNIQUE,
status TEXT NOT NULL,
doc_kind TEXT,
category TEXT,
vendor TEXT,
receipt_date TEXT,
tax_cents INTEGER,
total_cents INTEGER,
currency TEXT,
ocr_text TEXT,
extract_json TEXT,
error TEXT,
created_at TEXT NOT NULL,
updated_at TEXT NOT NULL
);
CREATE INDEX IF NOT EXISTS idx_receipts_category ON receipts(category);
CREATE INDEX IF NOT EXISTS idx_receipts_vendor ON receipts(vendor);
CREATE INDEX IF NOT EXISTS idx_receipts_date ON receipts(receipt_date);
CREATE TABLE IF NOT EXISTS line_items (
id INTEGER PRIMARY KEY AUTOINCREMENT,
receipt_id INTEGER NOT NULL REFERENCES receipts(id) ON DELETE CASCADE,
description TEXT NOT NULL,
qty REAL,
unit_price_cents INTEGER,
amount_cents INTEGER,
sku TEXT,
match_catalog_id INTEGER,
match_score REAL,
match_status TEXT
);
CREATE TABLE IF NOT EXISTS catalog (
id INTEGER PRIMARY KEY AUTOINCREMENT,
sku TEXT,
vendor TEXT,
description TEXT NOT NULL,
size TEXT,
unit_price_cents INTEGER,
metadata_json TEXT
);
"""
)
_create_vec_table(con, "receipt_vec", "receipt_id", settings.embed_dim)
_create_vec_table(con, "catalog_vec", "catalog_id", settings.embed_dim)
_check_or_set_meta(con, settings)
con.commit()
def _meta(con: sqlite3.Connection, key: str) -> str | None:
row = con.execute("SELECT value FROM meta WHERE key = ?", (key,)).fetchone()
return None if row is None else str(row["value"])
def _check_or_set_meta(con: sqlite3.Connection, settings: Settings) -> None:
stored_model = _meta(con, "embed_model")
stored_dim = _meta(con, "embed_dim")
if stored_model is None:
con.execute(
"INSERT INTO meta(key, value) VALUES ('embed_model', ?), ('embed_dim', ?)",
(settings.embed_model, str(settings.embed_dim)),
)
return
if stored_model != settings.embed_model or stored_dim != str(settings.embed_dim):
raise EmbedIndexError(
f"index is {stored_model} dim={stored_dim}; config is "
f"{settings.embed_model} dim={settings.embed_dim}. Never mix embedding models."
)
def open_db(settings: Settings) -> sqlite3.Connection:
con = connect(settings.db_path)
init_schema(con, settings)
return con
def get_by_sha(con: sqlite3.Connection, sha256: str) -> sqlite3.Row | None:
return con.execute("SELECT * FROM receipts WHERE sha256 = ?", (sha256,)).fetchone()
def insert_receipt(
con: sqlite3.Connection,
*,
source_path: str,
sha256: str,
status: ReceiptStatus,
extract: ReceiptExtract | None = None,
ocr_text: str | None = None,
error: str | None = None,
) -> int:
now = _utc_now()
cur = con.execute(
"""
INSERT INTO receipts (
source_path, sha256, status, doc_kind, category, vendor, receipt_date,
tax_cents, total_cents, currency, ocr_text, extract_json, error,
created_at, updated_at
) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
""",
(
source_path,
sha256,
status.value,
None if extract is None else extract.doc_kind,
None if extract is None else extract.category,
None if extract is None else extract.vendor,
None if extract is None else (extract.date.isoformat() if extract.date else None),
None if extract is None else to_cents(extract.tax),
None if extract is None else to_cents(extract.total),
None if extract is None else extract.currency,
ocr_text,
None if extract is None else extract.model_dump_json(),
error,
now,
now,
),
)
receipt_id = int(cur.lastrowid)
if extract is not None:
for item in extract.line_items:
con.execute(
"""
INSERT INTO line_items (
receipt_id, description, qty, unit_price_cents, amount_cents, sku
) VALUES (?, ?, ?, ?, ?, ?)
""",
(
receipt_id,
item.description,
item.qty,
to_cents(item.unit_price),
to_cents(item.amount),
item.sku,
),
)
con.commit()
return receipt_id
def update_receipt_status(
con: sqlite3.Connection,
receipt_id: int,
status: ReceiptStatus,
*,
error: str | None = None,
) -> None:
con.execute(
"UPDATE receipts SET status = ?, error = ?, updated_at = ? WHERE id = ?",
(status.value, error, _utc_now(), receipt_id),
)
con.commit()
def update_extract(
con: sqlite3.Connection,
receipt_id: int,
extract: ReceiptExtract,
status: ReceiptStatus,
) -> None:
con.execute("DELETE FROM line_items WHERE receipt_id = ?", (receipt_id,))
con.execute(
"""
UPDATE receipts SET
status = ?, doc_kind = ?, category = ?, vendor = ?, receipt_date = ?,
tax_cents = ?, total_cents = ?, currency = ?, extract_json = ?,
error = NULL, updated_at = ?
WHERE id = ?
""",
(
status.value,
extract.doc_kind,
extract.category,
extract.vendor,
extract.date.isoformat() if extract.date else None,
to_cents(extract.tax),
to_cents(extract.total),
extract.currency,
extract.model_dump_json(),
_utc_now(),
receipt_id,
),
)
for item in extract.line_items:
con.execute(
"""
INSERT INTO line_items (
receipt_id, description, qty, unit_price_cents, amount_cents, sku
) VALUES (?, ?, ?, ?, ?, ?)
""",
(
receipt_id,
item.description,
item.qty,
to_cents(item.unit_price),
to_cents(item.amount),
item.sku,
),
)
con.commit()
def delete_receipt(con: sqlite3.Connection, receipt_id: int, *, unlink_file: bool = True) -> bool:
row = con.execute(
"SELECT source_path FROM receipts WHERE id = ?", (receipt_id,)
).fetchone()
if row is None:
return False
try:
con.execute("DELETE FROM receipt_vec WHERE receipt_id = ?", (receipt_id,))
except sqlite3.Error:
pass
con.execute("DELETE FROM receipts WHERE id = ?", (receipt_id,))
con.commit()
if unlink_file:
path = Path(row["source_path"] or "")
if path.is_file():
try:
path.unlink()
except OSError:
pass
return True
def set_line_match(
con: sqlite3.Connection,
line_id: int,
hit: MatchHit,
) -> None:
con.execute(
"""
UPDATE line_items SET match_catalog_id = ?, match_score = ?, match_status = ?
WHERE id = ?
""",
(hit.catalog_id, hit.similarity, hit.band.value, line_id),
)
con.commit()
def list_receipts(con: sqlite3.Connection, *, status: str | None = None, limit: int = 50) -> list[sqlite3.Row]:
if status:
return list(
con.execute(
"SELECT * FROM receipts WHERE status = ? ORDER BY id DESC LIMIT ?",
(status, limit),
)
)
return list(con.execute("SELECT * FROM receipts ORDER BY id DESC LIMIT ?", (limit,)))
def get_receipt(con: sqlite3.Connection, receipt_id: int) -> sqlite3.Row | None:
return con.execute("SELECT * FROM receipts WHERE id = ?", (receipt_id,)).fetchone()
def list_line_items(con: sqlite3.Connection, receipt_id: int) -> list[sqlite3.Row]:
return list(
con.execute("SELECT * FROM line_items WHERE receipt_id = ? ORDER BY id", (receipt_id,))
)
def add_catalog_item(
con: sqlite3.Connection,
*,
description: str,
sku: str | None = None,
vendor: str | None = None,
size: str | None = None,
unit_price_cents: int | None = None,
metadata: dict[str, Any] | None = None,
) -> int:
cur = con.execute(
"""
INSERT INTO catalog (sku, vendor, description, size, unit_price_cents, metadata_json)
VALUES (?, ?, ?, ?, ?, ?)
""",
(
sku,
vendor,
description,
size,
unit_price_cents,
None if metadata is None else json.dumps(metadata),
),
)
con.commit()
return int(cur.lastrowid)
def list_catalog(con: sqlite3.Connection, limit: int = 200) -> list[sqlite3.Row]:
return list(con.execute("SELECT * FROM catalog ORDER BY id DESC LIMIT ?", (limit,)))
def find_catalog_by_sku(con: sqlite3.Connection, sku: str) -> sqlite3.Row | None:
return con.execute(
"SELECT * FROM catalog WHERE sku = ? COLLATE NOCASE LIMIT 1", (sku,)
).fetchone()
def upsert_vector(con: sqlite3.Connection, table: str, pk_col: str, pk: int, vec: list[float]) -> None:
if serialize_float32 is None:
raise VecLoadError("sqlite-vec missing")
blob = serialize_float32(vec)
con.execute(f"DELETE FROM {table} WHERE {pk_col} = ?", (pk,))
con.execute(
f"INSERT INTO {table}({pk_col}, embedding) VALUES (?, ?)",
(pk, blob),
)
con.commit()
def knn(
con: sqlite3.Connection,
table: str,
pk_col: str,
query: list[float],
*,
k: int = 5,
) -> list[tuple[int, float]]:
if serialize_float32 is None:
raise VecLoadError("sqlite-vec missing")
blob = serialize_float32(query)
rows = con.execute(
f"""
SELECT {pk_col} AS id, distance
FROM {table}
WHERE embedding MATCH ?
AND k = ?
""",
(blob, k),
).fetchall()
return [(int(row["id"]), float(row["distance"])) for row in rows]
def receipt_to_extract(row: sqlite3.Row) -> ReceiptExtract | None:
raw = row["extract_json"]
if not raw:
return None
return ReceiptExtract.model_validate_json(raw)
def iter_rows(rows: list[sqlite3.Row]) -> Iterator[dict[str, Any]]:
for row in rows:
yield dict(row)
|