mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2026-01-03 01:15:57 +10:00
on_Snapshot priority fixes: - redirects.bg.js stays at 31, staticfile.bg.js → 32 - headers.js stays at 55, readability.py → 56 - mercury.py → 57, htmltotext.py → 58 on_Binary hooks now have numeric priorities: - 10: npm_install.py - 11: pip_install.py - 12: brew_install.py - 13: apt_install.py - 14: custom_install.py - 15: env_install.py
84 lines
2.8 KiB
Python
84 lines
2.8 KiB
Python
#!/usr/bin/env python3
|
|
"""
|
|
Install a binary using apt package manager.
|
|
|
|
Usage: on_Binary__install_using_apt_provider.py --binary-id=<uuid> --machine-id=<uuid> --name=<name>
|
|
Output: Binary JSONL record to stdout after installation
|
|
"""
|
|
|
|
import json
|
|
import sys
|
|
|
|
import rich_click as click
|
|
from abx_pkg import Binary, AptProvider
|
|
|
|
# Fix pydantic forward reference issue
|
|
AptProvider.model_rebuild()
|
|
|
|
|
|
@click.command()
|
|
@click.option('--binary-id', required=True, help="Binary UUID")
|
|
@click.option('--machine-id', required=True, help="Machine UUID")
|
|
@click.option('--name', required=True, help="Binary name to install")
|
|
@click.option('--binproviders', default='*', help="Allowed providers (comma-separated)")
|
|
@click.option('--overrides', default=None, help="JSON-encoded overrides dict")
|
|
def main(binary_id: str, machine_id: str, name: str, binproviders: str, overrides: str | None):
|
|
"""Install binary using apt package manager."""
|
|
|
|
# Check if apt provider is allowed
|
|
if binproviders != '*' and 'apt' not in binproviders.split(','):
|
|
click.echo(f"apt provider not allowed for {name}", err=True)
|
|
sys.exit(0) # Not an error, just skip
|
|
|
|
# Use abx-pkg AptProvider to install binary
|
|
provider = AptProvider()
|
|
if not provider.INSTALLER_BIN:
|
|
click.echo("apt not available on this system", err=True)
|
|
sys.exit(1)
|
|
|
|
click.echo(f"Installing {name} via apt...", err=True)
|
|
|
|
try:
|
|
# Parse overrides if provided
|
|
overrides_dict = None
|
|
if overrides:
|
|
try:
|
|
overrides_dict = json.loads(overrides)
|
|
# Extract apt-specific overrides
|
|
overrides_dict = overrides_dict.get('apt', {})
|
|
click.echo(f"Using apt install overrides: {overrides_dict}", err=True)
|
|
except json.JSONDecodeError:
|
|
click.echo(f"Warning: Failed to parse overrides JSON: {overrides}", err=True)
|
|
|
|
binary = Binary(name=name, binproviders=[provider], overrides={'apt': overrides_dict} if overrides_dict else {}).install()
|
|
except Exception as e:
|
|
click.echo(f"apt install failed: {e}", err=True)
|
|
sys.exit(1)
|
|
|
|
if not binary.abspath:
|
|
click.echo(f"{name} not found after apt install", err=True)
|
|
sys.exit(1)
|
|
|
|
# Output Binary JSONL record to stdout
|
|
record = {
|
|
'type': 'Binary',
|
|
'name': name,
|
|
'abspath': str(binary.abspath),
|
|
'version': str(binary.version) if binary.version else '',
|
|
'sha256': binary.sha256 or '',
|
|
'binprovider': 'apt',
|
|
'machine_id': machine_id,
|
|
'binary_id': binary_id,
|
|
}
|
|
print(json.dumps(record))
|
|
|
|
# Log human-readable info to stderr
|
|
click.echo(f"Installed {name} at {binary.abspath}", err=True)
|
|
click.echo(f" version: {binary.version}", err=True)
|
|
|
|
sys.exit(0)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|