mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2026-09-14 11:06:13 +05:00
Add DATABASE_ENGINE=postgres (plus DATABASE_HOST/PORT/USER/PASSWORD/NAME) config and centralize all sqlite-vs-postgres branching in archivebox.misc.db: - get_database_settings() builds DATABASES for either backend; the sqlite path is unchanged (custom lock-retry backend, same PRAGMAs). - database_exists()/ensure_database_ready() replace index.sqlite3 file checks; init auto-creates the postgres database when missing. - approximate_row_counts() serves admin index counts from sqlite_stat1 or pg_class.reltuples; missing-table detection covers both vendors. - rebuild_models_from_migration_state() lets historical sqlite-only raw SQL migrations resync postgres schema from Django migration state at every divergence point (postgres can never hold legacy data, so affected tables are empty when these run). All raw-DDL and PRAGMA migrations are now vendor-gated with sqlite behavior byte-for-byte unchanged. - A pre_save clamp truncates CharField values to max_length: sqlite never enforced varchar(n) but postgres does (e.g. long crawl labels). - Collation-sensitive URL range scans branch to escaped LIKE on postgres (with a text_pattern_ops index) since linguistic collations break bytewise range tricks; the crawl-config JSON search wave gets a jsonb-text implementation. Verified on real PostgreSQL 16: fresh init applies the entire migration graph, schema matches models exactly (column-level parity check + makemigrations --check), and add/run/list/search/status/remove all work end-to-end. New test_postgres_backend.py suite boots a real throwaway postgres cluster (initdb + pg_ctl); CI workflows install postgres server binaries. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_019YHSjZM6TstSAMN2PhgfUg
164 lines
6.9 KiB
Python
164 lines
6.9 KiB
Python
#!/usr/bin/env python3
|
|
|
|
__package__ = "archivebox.cli"
|
|
|
|
from pathlib import Path
|
|
|
|
import rich_click as click
|
|
from rich import print
|
|
|
|
from archivebox.misc.util import enforce_types, docstring
|
|
from archivebox.config import CONSTANTS
|
|
from archivebox.config.common import get_config
|
|
from archivebox.misc.system import get_dir_size
|
|
from archivebox.misc.logging_util import printable_filesize
|
|
|
|
|
|
MAX_STATUS_FS_DIR_SCAN = 5000
|
|
|
|
|
|
@enforce_types
|
|
def status(out_dir: Path = CONSTANTS.DATA_DIR) -> None:
|
|
"""Print out some info and statistics about the archive collection"""
|
|
|
|
from django.contrib.auth import get_user_model
|
|
from django.db.models import Sum
|
|
from django.db.models.functions import Coalesce
|
|
from archivebox.core.models import ArchiveResult, Snapshot
|
|
|
|
config = get_config()
|
|
User = get_user_model()
|
|
|
|
print("[green]\\[*] Scanning archive main index...[/green]")
|
|
print(f"[yellow] {out_dir}/*[/yellow]")
|
|
num_bytes, num_dirs, num_files = get_dir_size(out_dir, recursive=False, pattern="index.")
|
|
size = printable_filesize(num_bytes)
|
|
print(f" Index size: {size} across {num_files} files")
|
|
print()
|
|
|
|
snapshots_qs = Snapshot.objects.all()
|
|
num_sql_links = snapshots_qs.count()
|
|
archive_dir = CONSTANTS.ARCHIVE_DIR
|
|
legacy_snapshot_dirs = []
|
|
if archive_dir.exists():
|
|
legacy_snapshot_dirs = [
|
|
entry for entry in archive_dir.iterdir() if entry.is_dir() and not entry.is_symlink() and Snapshot.is_legacy_archive_dir(entry)
|
|
]
|
|
from archivebox.misc.db import database_display_location, is_postgres
|
|
|
|
index_location = database_display_location() if is_postgres() else CONSTANTS.SQL_INDEX_FILENAME
|
|
print(f" > SQL Main Index: {num_sql_links} links".ljust(36), f"(found in {index_location})")
|
|
print(f" > JSON Link Details: {len(legacy_snapshot_dirs)} links".ljust(36), f"(found in {archive_dir.name}/*/index.json)")
|
|
print()
|
|
print("[green]\\[*] Scanning archive data directories...[/green]")
|
|
users_dir = CONSTANTS.USERS_DIR
|
|
scan_roots = [root for root in (archive_dir, users_dir) if root.exists()]
|
|
scan_roots_display = ", ".join(str(root) for root in scan_roots) if scan_roots else str(archive_dir)
|
|
print(f"[yellow] {scan_roots_display}[/yellow]")
|
|
do_precise_fs_scan = num_sql_links <= MAX_STATUS_FS_DIR_SCAN
|
|
if do_precise_fs_scan:
|
|
num_bytes = num_dirs = num_files = 0
|
|
for root in scan_roots:
|
|
root_bytes, root_dirs, root_files = get_dir_size(root)
|
|
num_bytes += root_bytes
|
|
num_dirs += root_dirs
|
|
num_files += root_files
|
|
else:
|
|
num_bytes = snapshots_qs.aggregate(total=Coalesce(Sum("output_size"), 0))["total"] or 0
|
|
num_dirs = 0
|
|
num_files = ArchiveResult.objects.exclude(output_files__in=["", "{}"]).count()
|
|
size = printable_filesize(num_bytes)
|
|
if do_precise_fs_scan:
|
|
print(f" Size: {size} across {num_files} files in {num_dirs} directories")
|
|
else:
|
|
print(f" Size: {size} across {num_files} DB-tracked output records")
|
|
|
|
# Use DB as source of truth for snapshot status
|
|
num_indexed = num_sql_links
|
|
num_archived = snapshots_qs.filter(status=Snapshot.StatusChoices.SEALED).count()
|
|
num_unarchived = max(num_indexed - num_archived, 0)
|
|
print(f" > indexed: {num_indexed}".ljust(36), "(total snapshots in DB)")
|
|
print(f" > archived: {num_archived}".ljust(36), "(snapshots with archived content)")
|
|
print(f" > unarchived: {num_unarchived}".ljust(36), "(snapshots pending archiving)")
|
|
|
|
# Count snapshot directories on filesystem across both legacy and current layouts.
|
|
if do_precise_fs_scan:
|
|
links = list(snapshots_qs)
|
|
expected_snapshot_dirs = {str(Path(snapshot.output_dir).resolve()) for snapshot in links if Path(snapshot.output_dir).exists()}
|
|
discovered_snapshot_dirs = {str(entry.resolve()) for entry in legacy_snapshot_dirs}
|
|
|
|
if users_dir.exists():
|
|
discovered_snapshot_dirs.update(
|
|
str(entry.resolve()) for entry in users_dir.glob(f"*/{CONSTANTS.SNAPSHOTS_DIR_NAME}/*/*/*") if entry.is_dir()
|
|
)
|
|
|
|
orphaned_dirs = sorted(discovered_snapshot_dirs - expected_snapshot_dirs)
|
|
num_present = len(discovered_snapshot_dirs)
|
|
num_valid = len(discovered_snapshot_dirs & expected_snapshot_dirs)
|
|
else:
|
|
orphaned_dirs = []
|
|
num_present = num_archived
|
|
num_valid = num_archived
|
|
print()
|
|
print(f" > present: {num_present}".ljust(36), "(snapshot directories on disk)")
|
|
print(f" > [green]valid:[/green] {num_valid}".ljust(36), " (directories with matching DB entry)")
|
|
|
|
num_orphaned = len(orphaned_dirs)
|
|
print(f" > [red]orphaned:[/red] {num_orphaned}".ljust(36), " (directories without matching DB entry)")
|
|
|
|
if num_indexed:
|
|
print(" [violet]Hint:[/violet] You can list snapshots by status like so:")
|
|
print(" [green]archivebox list --status=<status> (e.g. sealed, queued, etc.)[/green]")
|
|
|
|
if orphaned_dirs:
|
|
print(" [violet]Hint:[/violet] To automatically import orphaned data directories into the main index, run:")
|
|
print(" [green]archivebox init[/green]")
|
|
|
|
print()
|
|
print("[green]\\[*] Scanning recent archive changes and user logins:[/green]")
|
|
print(f"[yellow] {CONSTANTS.LOGS_DIR}/*[/yellow]")
|
|
admin_users = User.objects.filter(is_superuser=True).exclude(username="system")
|
|
users = [user.get_username() for user in admin_users]
|
|
print(f" UI users {len(users)}: {', '.join(users)}")
|
|
last_login = admin_users.order_by("last_login").last()
|
|
if last_login:
|
|
print(f" Last UI login: {last_login.get_username()} @ {str(last_login.last_login)[:16]}")
|
|
last_downloaded = Snapshot.objects.order_by("downloaded_at").last()
|
|
if last_downloaded:
|
|
print(f" Last changes: {str(last_downloaded.downloaded_at)[:16]}")
|
|
|
|
if not users:
|
|
print()
|
|
print(" [violet]Hint:[/violet] You can create an admin user by running:")
|
|
print(" [green]archivebox manage createsuperuser[/green]")
|
|
|
|
print()
|
|
recent_snapshots = snapshots_qs.order_by(
|
|
"-downloaded_at",
|
|
"-modified_at",
|
|
)[:10]
|
|
for snapshot in recent_snapshots:
|
|
if not snapshot.downloaded_at:
|
|
continue
|
|
print(
|
|
(
|
|
"[grey53] "
|
|
f" > {str(snapshot.downloaded_at)[:16]} "
|
|
f"[{snapshot.num_outputs} {('X', '√')[snapshot.status == Snapshot.StatusChoices.SEALED]} {printable_filesize(snapshot.output_size or 0)}] "
|
|
f'"{snapshot.title}": {snapshot.url}'
|
|
"[/grey53]"
|
|
)[: config.TERM_WIDTH],
|
|
)
|
|
print("[grey53] ...")
|
|
|
|
|
|
@click.command()
|
|
@docstring(status.__doc__)
|
|
def main(**kwargs):
|
|
"""Print out some info and statistics about the archive collection"""
|
|
status(**kwargs)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|