| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537 |
- __package__ = 'archivebox.core'
- from io import StringIO
- from pathlib import Path
- from contextlib import redirect_stdout
- from datetime import datetime, timezone
- from django.contrib import admin
- from django.db.models import Count
- from django.urls import path
- from django.utils.html import format_html
- from django.utils.safestring import mark_safe
- from django.shortcuts import render, redirect
- from django.contrib.auth import get_user_model
- from django import forms
- from signal_webhooks.admin import WebhookAdmin, get_webhook_model
- # from plugantic.admin import CustomPlugin
- from ..util import htmldecode, urldecode, ansi_to_html
- from core.models import Snapshot, ArchiveResult, Tag
- from core.forms import AddLinkForm
- from core.mixins import SearchResultsAdminMixin
- from api.models import APIToken
- from index.html import snapshot_icons
- from logging_util import printable_filesize
- from main import add, remove
- from extractors import archive_links
- from config import (
- OUTPUT_DIR,
- SNAPSHOTS_PER_PAGE,
- VERSION,
- VERSIONS_AVAILABLE,
- CAN_UPGRADE
- )
- GLOBAL_CONTEXT = {'VERSION': VERSION, 'VERSIONS_AVAILABLE': VERSIONS_AVAILABLE, 'CAN_UPGRADE': CAN_UPGRADE}
- # Admin URLs
- # /admin/
- # /admin/login/
- # /admin/core/
- # /admin/core/snapshot/
- # /admin/core/snapshot/:uuid/
- # /admin/core/tag/
- # /admin/core/tag/:uuid/
- # TODO: https://stackoverflow.com/questions/40760880/add-custom-button-to-django-admin-panel
- class ArchiveBoxAdmin(admin.AdminSite):
- site_header = 'ArchiveBox'
- index_title = 'Links'
- site_title = 'Index'
- namespace = 'admin'
- def get_urls(self):
- return [
- path('core/snapshot/add/', self.add_view, name='Add'),
- ] + super().get_urls()
- def add_view(self, request):
- if not request.user.is_authenticated:
- return redirect(f'/admin/login/?next={request.path}')
- request.current_app = self.name
- context = {
- **self.each_context(request),
- 'title': 'Add URLs',
- }
- if request.method == 'GET':
- context['form'] = AddLinkForm()
- elif request.method == 'POST':
- form = AddLinkForm(request.POST)
- if form.is_valid():
- url = form.cleaned_data["url"]
- print(f'[+] Adding URL: {url}')
- depth = 0 if form.cleaned_data["depth"] == "0" else 1
- input_kwargs = {
- "urls": url,
- "depth": depth,
- "update_all": False,
- "out_dir": OUTPUT_DIR,
- }
- add_stdout = StringIO()
- with redirect_stdout(add_stdout):
- add(**input_kwargs)
- print(add_stdout.getvalue())
- context.update({
- "stdout": ansi_to_html(add_stdout.getvalue().strip()),
- "form": AddLinkForm()
- })
- else:
- context["form"] = form
- return render(template_name='add.html', request=request, context=context)
- archivebox_admin = ArchiveBoxAdmin()
- archivebox_admin.register(get_user_model())
- archivebox_admin.register(APIToken)
- archivebox_admin.register(get_webhook_model(), WebhookAdmin)
- archivebox_admin.disable_action('delete_selected')
- # archivebox_admin.register(CustomPlugin)
- # patch admin with methods to add data views (implemented by admin_data_views package)
- ############### Additional sections are defined in settings.ADMIN_DATA_VIEWS #########
- from admin_data_views.admin import get_app_list, admin_data_index_view, get_admin_data_urls, get_urls
- archivebox_admin.get_app_list = get_app_list.__get__(archivebox_admin, ArchiveBoxAdmin)
- archivebox_admin.admin_data_index_view = admin_data_index_view.__get__(archivebox_admin, ArchiveBoxAdmin)
- archivebox_admin.get_admin_data_urls = get_admin_data_urls.__get__(archivebox_admin, ArchiveBoxAdmin)
- archivebox_admin.get_urls = get_urls(archivebox_admin.get_urls).__get__(archivebox_admin, ArchiveBoxAdmin)
- class ArchiveResultInline(admin.TabularInline):
- model = ArchiveResult
- class TagInline(admin.TabularInline):
- model = Snapshot.tags.through
- from django.contrib.admin.helpers import ActionForm
- from django.contrib.admin.widgets import AutocompleteSelectMultiple
- class AutocompleteTags:
- model = Tag
- search_fields = ['name']
- name = 'tags'
- remote_field = TagInline
- class AutocompleteTagsAdminStub:
- name = 'admin'
- class SnapshotActionForm(ActionForm):
- tags = forms.ModelMultipleChoiceField(
- queryset=Tag.objects.all(),
- required=False,
- widget=AutocompleteSelectMultiple(
- AutocompleteTags(),
- AutocompleteTagsAdminStub(),
- ),
- )
- # TODO: allow selecting actions for specific extractors? is this useful?
- # EXTRACTOR_CHOICES = [
- # (name, name.title())
- # for name, _, _ in get_default_archive_methods()
- # ]
- # extractor = forms.ChoiceField(
- # choices=EXTRACTOR_CHOICES,
- # required=False,
- # widget=forms.MultileChoiceField(attrs={'class': "form-control"})
- # )
- def get_abid_info(self, obj):
- return format_html(
- # URL Hash: <code style="font-size: 10px; user-select: all">{}</code><br/>
- '''
- DB ID: <code style="font-size: 16px; user-select: all; border-radius: 8px; background-color: #fdd; padding: 1px 4px; border: 1px solid #aaa; margin-bottom: 8px; display: inline-block; vertical-align: top;"><b>{}</b></code><br/>
- .id: <code style="font-size: 10px; user-select: all">{}</code> <br/>
- .uuid: <code style="font-size: 10px; user-select: all">{}</code> <br/>
- <br/>
- <div style="opacity: 0.8">
- ABID: <small style="opacity: 0.5">{}_</small><code style="font-size: 16px; user-select: all; border-radius: 8px; background-color: #ddf; padding: 1px 4px; border: 1px solid #aaa; margin-bottom: 8px; display: inline-block; vertical-align: top;"><b>{}</b></code> <a href="{}" style="font-size: 1.5em; font-family: monospace;">/api/v1 GET JSON</a> <a href="{}" style="color: limegreen; font-size: 1.2em; vertical-align: 1px; font-family: monospace;">API DOCS</a><br/>
- TS: <code style="font-size: 10px; user-select: all"><b>{}</b></code> ({})<br/>
- URI: <code style="font-size: 10px; user-select: all"><b>{}</b></code> (<span style="display:inline-block; vertical-align: -4px; user-select: all; width: 230px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;">{}</span>)<br/>
- SUBTYPE: <code style="font-size: 10px; user-select: all"><b>{}</b></code> ({})
- RAND: <code style="font-size: 10px; user-select: all"><b>{}</b></code> ({})
- SALT: <code style="font-size: 10px; user-select: all"><b style="display:inline-block; user-select: all; width: 50px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;">{}</b></code>
- <br/><hr/>
- <small style="opacity: 0.8">.ulid: <code style="font-size: 10px; user-select: all">{}</code></small><br/>
- <small style="opacity: 0.8">.uuid: <code style="font-size: 10px; user-select: all">{}</code></small><br/><br/>
- </div>
- ''',
- obj.pk,
- getattr(obj, 'id', str(getattr(obj, 'old_id', '')) + ' (.old_id)'),
- getattr(obj, 'uuid', str(getattr(obj, 'id', '')) +' (.id)'),
- *obj.abid.split('_', 1), obj.api_url, obj.api_docs_url,
- obj.ABID.ts, obj.abid_values['ts'].isoformat() if isinstance(obj.abid_values['ts'], datetime) else obj.abid_values['ts'],
- obj.ABID.uri, str(obj.abid_values['uri']),
- obj.ABID.subtype, str(obj.abid_values['subtype']),
- obj.ABID.rand, str(obj.abid_values['rand'])[-7:],
- obj.ABID.uri_salt,
- obj.ABID.ulid,
- obj.ABID.uuid,
- )
- @admin.register(Snapshot, site=archivebox_admin)
- class SnapshotAdmin(SearchResultsAdminMixin, admin.ModelAdmin):
- list_display = ('added', 'title_str', 'files', 'size', 'url_str')
- sort_fields = ('title_str', 'url_str', 'added', 'files')
- readonly_fields = ('admin_actions', 'status_info', 'bookmarked', 'added', 'updated', 'created', 'modified', 'identifiers')
- search_fields = ('id', 'url', 'abid', 'uuid', 'timestamp', 'title', 'tags__name')
- list_filter = ('added', 'updated', 'tags', 'archiveresult__status', 'created_by')
- fields = ('url', 'timestamp', 'created_by', 'tags', 'title', *readonly_fields)
- ordering = ['-added']
- actions = ['add_tags', 'remove_tags', 'update_titles', 'update_snapshots', 'resnapshot_snapshot', 'overwrite_snapshots', 'delete_snapshots']
- autocomplete_fields = ['tags']
- inlines = [ArchiveResultInline]
- list_per_page = SNAPSHOTS_PER_PAGE
- action_form = SnapshotActionForm
- def changelist_view(self, request, extra_context=None):
- extra_context = extra_context or {}
- return super().changelist_view(request, extra_context | GLOBAL_CONTEXT)
- def get_urls(self):
- urls = super().get_urls()
- custom_urls = [
- path('grid/', self.admin_site.admin_view(self.grid_view), name='grid')
- ]
- return custom_urls + urls
- def get_queryset(self, request):
- self.request = request
- return super().get_queryset(request).prefetch_related('tags').annotate(archiveresult_count=Count('archiveresult'))
- def tag_list(self, obj):
- return ', '.join(obj.tags.values_list('name', flat=True))
- # TODO: figure out a different way to do this, you cant nest forms so this doenst work
- # def action(self, obj):
- # # csrfmiddlewaretoken: Wa8UcQ4fD3FJibzxqHN3IYrrjLo4VguWynmbzzcPYoebfVUnDovon7GEMYFRgsh0
- # # action: update_snapshots
- # # select_across: 0
- # # _selected_action: 76d29b26-2a88-439e-877c-a7cca1b72bb3
- # return format_html(
- # '''
- # <form action="/admin/core/snapshot/" method="post" onsubmit="e => e.stopPropagation()">
- # <input type="hidden" name="csrfmiddlewaretoken" value="{}">
- # <input type="hidden" name="_selected_action" value="{}">
- # <button name="update_snapshots">Check</button>
- # <button name="update_titles">Pull title + favicon</button>
- # <button name="update_snapshots">Update</button>
- # <button name="overwrite_snapshots">Re-Archive (overwrite)</button>
- # <button name="delete_snapshots">Permanently delete</button>
- # </form>
- # ''',
- # csrf.get_token(self.request),
- # obj.pk,
- # )
- def admin_actions(self, obj):
- return format_html(
- # URL Hash: <code style="font-size: 10px; user-select: all">{}</code><br/>
- '''
- <a class="btn" style="font-size: 18px; display: inline-block; border-radius: 10px; border: 3px solid #eee; padding: 4px 8px" href="/archive/{}">Summary page ➡️</a>
- <a class="btn" style="font-size: 18px; display: inline-block; border-radius: 10px; border: 3px solid #eee; padding: 4px 8px" href="/archive/{}/index.html#all">Result files 📑</a>
- <a class="btn" style="font-size: 18px; display: inline-block; border-radius: 10px; border: 3px solid #eee; padding: 4px 8px" href="/admin/core/snapshot/?id__exact={}">Admin actions ⚙️</a>
- ''',
- obj.timestamp,
- obj.timestamp,
- obj.pk,
- )
- def status_info(self, obj):
- return format_html(
- # URL Hash: <code style="font-size: 10px; user-select: all">{}</code><br/>
- '''
- Archived: {} ({} files {})
- Favicon: <img src="{}" style="height: 20px"/>
- Status code: {} <br/>
- Server: {}
- Content type: {}
- Extension: {}
- ''',
- '✅' if obj.is_archived else '❌',
- obj.num_outputs,
- self.size(obj) or '0kb',
- f'/archive/{obj.timestamp}/favicon.ico',
- obj.status_code or '-',
- obj.headers and obj.headers.get('Server') or '-',
- obj.headers and obj.headers.get('Content-Type') or '-',
- obj.extension or '-',
- )
- def identifiers(self, obj):
- return get_abid_info(self, obj)
- @admin.display(
- description='Title',
- ordering='title',
- )
- def title_str(self, obj):
- canon = obj.as_link().canonical_outputs()
- tags = ''.join(
- format_html('<a href="/admin/core/snapshot/?tags__id__exact={}"><span class="tag">{}</span></a> ', tag.id, tag)
- for tag in obj.tags.all()
- if str(tag).strip()
- )
- return format_html(
- '<a href="/{}">'
- '<img src="/{}/{}" class="favicon" onerror="this.remove()">'
- '</a>'
- '<a href="/{}/index.html">'
- '<b class="status-{}">{}</b>'
- '</a>',
- obj.archive_path,
- obj.archive_path, canon['favicon_path'],
- obj.archive_path,
- 'fetched' if obj.latest_title or obj.title else 'pending',
- urldecode(htmldecode(obj.latest_title or obj.title or ''))[:128] or 'Pending...'
- ) + mark_safe(f' <span class="tags">{tags}</span>')
- @admin.display(
- description='Files Saved',
- ordering='archiveresult_count',
- )
- def files(self, obj):
- return snapshot_icons(obj)
- @admin.display(
- ordering='archiveresult_count'
- )
- def size(self, obj):
- archive_size = (Path(obj.link_dir) / 'index.html').exists() and obj.archive_size
- if archive_size:
- size_txt = printable_filesize(archive_size)
- if archive_size > 52428800:
- size_txt = mark_safe(f'<b>{size_txt}</b>')
- else:
- size_txt = mark_safe('<span style="opacity: 0.3">...</span>')
- return format_html(
- '<a href="/{}" title="View all files">{}</a>',
- obj.archive_path,
- size_txt,
- )
- @admin.display(
- description='Original URL',
- ordering='url',
- )
- def url_str(self, obj):
- return format_html(
- '<a href="{}"><code style="user-select: all;">{}</code></a>',
- obj.url,
- obj.url[:128],
- )
- def grid_view(self, request, extra_context=None):
- # cl = self.get_changelist_instance(request)
- # Save before monkey patching to restore for changelist list view
- saved_change_list_template = self.change_list_template
- saved_list_per_page = self.list_per_page
- saved_list_max_show_all = self.list_max_show_all
- # Monkey patch here plus core_tags.py
- self.change_list_template = 'private_index_grid.html'
- self.list_per_page = SNAPSHOTS_PER_PAGE
- self.list_max_show_all = self.list_per_page
- # Call monkey patched view
- rendered_response = self.changelist_view(request, extra_context=extra_context)
- # Restore values
- self.change_list_template = saved_change_list_template
- self.list_per_page = saved_list_per_page
- self.list_max_show_all = saved_list_max_show_all
- return rendered_response
- # for debugging, uncomment this to print all requests:
- # def changelist_view(self, request, extra_context=None):
- # print('[*] Got request', request.method, request.POST)
- # return super().changelist_view(request, extra_context=None)
- @admin.action(
- description="Pull"
- )
- def update_snapshots(self, request, queryset):
- archive_links([
- snapshot.as_link()
- for snapshot in queryset
- ], out_dir=OUTPUT_DIR)
- @admin.action(
- description="⬇️ Title"
- )
- def update_titles(self, request, queryset):
- archive_links([
- snapshot.as_link()
- for snapshot in queryset
- ], overwrite=True, methods=('title','favicon'), out_dir=OUTPUT_DIR)
- @admin.action(
- description="Re-Snapshot"
- )
- def resnapshot_snapshot(self, request, queryset):
- for snapshot in queryset:
- timestamp = datetime.now(timezone.utc).isoformat('T', 'seconds')
- new_url = snapshot.url.split('#')[0] + f'#{timestamp}'
- add(new_url, tag=snapshot.tags_str())
- @admin.action(
- description="Reset"
- )
- def overwrite_snapshots(self, request, queryset):
- archive_links([
- snapshot.as_link()
- for snapshot in queryset
- ], overwrite=True, out_dir=OUTPUT_DIR)
- @admin.action(
- description="Delete"
- )
- def delete_snapshots(self, request, queryset):
- remove(snapshots=queryset, yes=True, delete=True, out_dir=OUTPUT_DIR)
- @admin.action(
- description="+"
- )
- def add_tags(self, request, queryset):
- tags = request.POST.getlist('tags')
- print('[+] Adding tags', tags, 'to Snapshots', queryset)
- for obj in queryset:
- obj.tags.add(*tags)
- @admin.action(
- description="–"
- )
- def remove_tags(self, request, queryset):
- tags = request.POST.getlist('tags')
- print('[-] Removing tags', tags, 'to Snapshots', queryset)
- for obj in queryset:
- obj.tags.remove(*tags)
-
- @admin.register(Tag, site=archivebox_admin)
- class TagAdmin(admin.ModelAdmin):
- list_display = ('slug', 'name', 'num_snapshots', 'snapshots', 'abid')
- sort_fields = ('id', 'name', 'slug', 'abid')
- readonly_fields = ('created', 'modified', 'identifiers', 'num_snapshots', 'snapshots')
- search_fields = ('id', 'abid', 'uuid', 'name', 'slug')
- fields = ('name', 'slug', 'created_by', *readonly_fields, )
- actions = ['delete_selected']
- ordering = ['-id']
- def identifiers(self, obj):
- return get_abid_info(self, obj)
- def num_snapshots(self, tag):
- return format_html(
- '<a href="/admin/core/snapshot/?tags__id__exact={}">{} total</a>',
- tag.id,
- tag.snapshot_set.count(),
- )
- def snapshots(self, tag):
- total_count = tag.snapshot_set.count()
- return mark_safe('<br/>'.join(
- format_html(
- '{} <code><a href="/admin/core/snapshot/{}/change"><b>[{}]</b></a> {}</code>',
- snap.updated.strftime('%Y-%m-%d %H:%M') if snap.updated else 'pending...',
- snap.pk,
- snap.abid,
- snap.url,
- )
- for snap in tag.snapshot_set.order_by('-updated')[:10]
- ) + (f'<br/><a href="/admin/core/snapshot/?tags__id__exact={tag.id}">and {total_count-10} more...<a>' if tag.snapshot_set.count() > 10 else ''))
- @admin.register(ArchiveResult, site=archivebox_admin)
- class ArchiveResultAdmin(admin.ModelAdmin):
- list_display = ('start_ts', 'snapshot_info', 'tags_str', 'extractor', 'cmd_str', 'status', 'output_str')
- sort_fields = ('start_ts', 'extractor', 'status')
- readonly_fields = ('snapshot_info', 'tags_str', 'created_by', 'created', 'modified', 'identifiers')
- search_fields = ('id', 'uuid', 'abid', 'snapshot__url', 'extractor', 'output', 'cmd_version', 'cmd', 'snapshot__timestamp')
- fields = ('snapshot', 'extractor', 'status', 'output', 'pwd', 'cmd', 'start_ts', 'end_ts', 'cmd_version', *readonly_fields)
- autocomplete_fields = ['snapshot']
- list_filter = ('status', 'extractor', 'start_ts', 'cmd_version')
- ordering = ['-start_ts']
- list_per_page = SNAPSHOTS_PER_PAGE
- @admin.display(
- description='Snapshot Info'
- )
- def snapshot_info(self, result):
- return format_html(
- '<a href="/archive/{}/index.html"><b><code>[{}]</code></b> {} {}</a><br/>',
- result.snapshot.timestamp,
- result.snapshot.abid,
- result.snapshot.added.strftime('%Y-%m-%d %H:%M'),
- result.snapshot.url[:128],
- )
- def identifiers(self, obj):
- try:
- return get_abid_info(self, obj)
- except Exception as e:
- return str(e)
- @admin.display(
- description='Snapshot Tags'
- )
- def tags_str(self, result):
- return result.snapshot.tags_str()
- def cmd_str(self, result):
- return format_html(
- '<pre>{}</pre>',
- ' '.join(result.cmd) if isinstance(result.cmd, list) else str(result.cmd),
- )
- def output_str(self, result):
- return format_html(
- '<a href="/archive/{}/{}" class="output-link">↗️</a><pre>{}</pre>',
- result.snapshot.timestamp,
- result.output if (result.status == 'succeeded') and result.extractor not in ('title', 'archive_org') else 'index.html',
- result.output,
- )
|