mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2025-05-13 14:44:29 -04:00

Some checks are pending
Build Debian package / build (push) Waiting to run
Build Docker image / buildx (push) Waiting to run
Build Homebrew package / build (push) Waiting to run
Run linters / lint (push) Waiting to run
Build Pip package / build (push) Waiting to run
Run tests / python_tests (ubuntu-22.04, 3.11) (push) Waiting to run
Run tests / docker_tests (push) Waiting to run
55 lines
1.6 KiB
Python
55 lines
1.6 KiB
Python
__package__ = 'plugins_search.ripgrep'
|
|
|
|
import re
|
|
import subprocess
|
|
|
|
from typing import List, Iterable
|
|
|
|
from abx.archivebox.base_searchbackend import BaseSearchBackend
|
|
|
|
from .binaries import RIPGREP_BINARY
|
|
from .config import RIPGREP_CONFIG
|
|
|
|
|
|
|
|
# regex to match archive/<ts>/... snapshot dir names
|
|
TIMESTAMP_REGEX = re.compile(r'\/([\d]+\.[\d]+)\/')
|
|
|
|
class RipgrepSearchBackend(BaseSearchBackend):
|
|
name: str = 'ripgrep'
|
|
docs_url: str = 'https://github.com/BurntSushi/ripgrep'
|
|
|
|
@staticmethod
|
|
def index(snapshot_id: str, texts: List[str]):
|
|
return
|
|
|
|
@staticmethod
|
|
def flush(snapshot_ids: Iterable[str]):
|
|
return
|
|
|
|
@staticmethod
|
|
def search(text: str) -> List[str]:
|
|
from core.models import Snapshot
|
|
|
|
ripgrep_binary = RIPGREP_BINARY.load()
|
|
if not ripgrep_binary.version:
|
|
raise Exception("ripgrep binary not found, install ripgrep to use this search backend")
|
|
|
|
cmd = [
|
|
ripgrep_binary.abspath,
|
|
*RIPGREP_CONFIG.RIPGREP_ARGS_DEFAULT,
|
|
text,
|
|
str(RIPGREP_CONFIG.RIPGREP_SEARCH_DIR),
|
|
]
|
|
proc = subprocess.run(cmd, timeout=RIPGREP_CONFIG.RIPGREP_TIMEOUT, capture_output=True, text=True)
|
|
timestamps = set()
|
|
for path in proc.stdout.splitlines():
|
|
ts = TIMESTAMP_REGEX.findall(path)
|
|
if ts:
|
|
timestamps.add(ts[0])
|
|
|
|
snap_ids = [str(id) for id in Snapshot.objects.filter(timestamp__in=timestamps).values_list('pk', flat=True)]
|
|
|
|
return snap_ids
|
|
|
|
RIPGREP_SEARCH_BACKEND = RipgrepSearchBackend()
|