2019-05-01 03:13:21 +00:00
|
|
|
__package__ = 'archivebox.core'
|
2019-04-02 20:36:41 +00:00
|
|
|
|
2019-05-01 03:13:21 +00:00
|
|
|
from django.shortcuts import render, redirect
|
2019-04-17 09:42:21 +00:00
|
|
|
|
2019-05-01 03:13:21 +00:00
|
|
|
from django.http import HttpResponse
|
2020-08-20 20:43:28 +00:00
|
|
|
from django.db.models import Q
|
2019-05-01 03:13:21 +00:00
|
|
|
from django.views import View, static
|
2020-08-20 14:04:34 +00:00
|
|
|
from django.views.generic.list import ListView
|
2019-05-01 03:13:21 +00:00
|
|
|
|
2020-08-20 20:43:28 +00:00
|
|
|
from django_datatables_view.base_datatable_view import BaseDatatableView
|
|
|
|
|
2019-05-01 03:44:51 +00:00
|
|
|
from core.models import Snapshot
|
2019-05-01 03:13:21 +00:00
|
|
|
|
|
|
|
from ..index import load_main_index, load_main_index_meta
|
2019-05-02 23:15:16 +00:00
|
|
|
from ..config import (
|
|
|
|
OUTPUT_DIR,
|
|
|
|
VERSION,
|
|
|
|
FOOTER_INFO,
|
|
|
|
PUBLIC_INDEX,
|
|
|
|
PUBLIC_SNAPSHOTS,
|
|
|
|
)
|
2020-07-28 03:26:45 +00:00
|
|
|
from ..util import base_url
|
2020-07-02 20:54:25 +00:00
|
|
|
|
2019-04-17 09:42:21 +00:00
|
|
|
|
|
|
|
class MainIndex(View):
|
|
|
|
template = 'main_index.html'
|
|
|
|
|
|
|
|
def get(self, request):
|
2020-07-28 03:56:35 +00:00
|
|
|
if request.user.is_authenticated:
|
|
|
|
return redirect('/admin/core/snapshot/')
|
|
|
|
|
|
|
|
if PUBLIC_INDEX:
|
|
|
|
return redirect('OldHome')
|
|
|
|
|
|
|
|
return redirect(f'/admin/login/?next={request.path}')
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class OldIndex(View):
|
|
|
|
template = 'main_index.html'
|
|
|
|
|
|
|
|
def get(self, request):
|
|
|
|
if PUBLIC_INDEX or request.user.is_authenticated:
|
|
|
|
all_links = load_main_index(out_dir=OUTPUT_DIR)
|
|
|
|
meta_info = load_main_index_meta(out_dir=OUTPUT_DIR)
|
2019-05-02 23:15:16 +00:00
|
|
|
|
2020-07-28 03:56:35 +00:00
|
|
|
context = {
|
|
|
|
'updated': meta_info['updated'],
|
|
|
|
'num_links': meta_info['num_links'],
|
|
|
|
'links': all_links,
|
|
|
|
'VERSION': VERSION,
|
|
|
|
'FOOTER_INFO': FOOTER_INFO,
|
|
|
|
}
|
2019-04-22 23:08:01 +00:00
|
|
|
|
2020-07-28 03:56:35 +00:00
|
|
|
return render(template_name=self.template, request=request, context=context)
|
2019-04-22 23:08:01 +00:00
|
|
|
|
2020-07-28 03:56:35 +00:00
|
|
|
return redirect(f'/admin/login/?next={request.path}')
|
2019-04-22 23:08:01 +00:00
|
|
|
|
|
|
|
|
2019-04-17 09:42:21 +00:00
|
|
|
class LinkDetails(View):
|
2019-05-01 03:13:21 +00:00
|
|
|
def get(self, request, path):
|
|
|
|
# missing trailing slash -> redirect to index
|
|
|
|
if '/' not in path:
|
|
|
|
return redirect(f'{path}/index.html')
|
|
|
|
|
2019-05-02 23:15:16 +00:00
|
|
|
if not request.user.is_authenticated and not PUBLIC_SNAPSHOTS:
|
|
|
|
return redirect(f'/admin/login/?next={request.path}')
|
|
|
|
|
2019-05-01 03:13:21 +00:00
|
|
|
try:
|
|
|
|
slug, archivefile = path.split('/', 1)
|
|
|
|
except (IndexError, ValueError):
|
|
|
|
slug, archivefile = path.split('/', 1)[0], 'index.html'
|
|
|
|
|
2019-05-01 03:44:51 +00:00
|
|
|
all_pages = list(Snapshot.objects.all())
|
2019-05-01 03:13:21 +00:00
|
|
|
|
|
|
|
# slug is a timestamp
|
|
|
|
by_ts = {page.timestamp: page for page in all_pages}
|
|
|
|
try:
|
2020-07-28 09:53:26 +00:00
|
|
|
# print('SERVING STATICFILE', by_ts[slug].link_dir, request.path, path)
|
|
|
|
response = static.serve(request, archivefile, document_root=by_ts[slug].link_dir, show_indexes=True)
|
2020-07-16 17:43:22 +00:00
|
|
|
response["Link"] = f'<{by_ts[slug].url}>; rel="canonical"'
|
|
|
|
return response
|
2019-05-01 03:13:21 +00:00
|
|
|
except KeyError:
|
|
|
|
pass
|
|
|
|
|
|
|
|
# slug is a hash
|
|
|
|
by_hash = {page.url_hash: page for page in all_pages}
|
|
|
|
try:
|
|
|
|
timestamp = by_hash[slug].timestamp
|
|
|
|
return redirect(f'/archive/{timestamp}/{archivefile}')
|
|
|
|
except KeyError:
|
|
|
|
pass
|
|
|
|
|
|
|
|
# slug is a URL
|
|
|
|
by_url = {page.base_url: page for page in all_pages}
|
|
|
|
try:
|
|
|
|
# TODO: add multiple snapshot support by showing index of all snapshots
|
|
|
|
# for given url instead of redirecting to timestamp index
|
|
|
|
timestamp = by_url[base_url(path)].timestamp
|
|
|
|
return redirect(f'/archive/{timestamp}/index.html')
|
|
|
|
except KeyError:
|
|
|
|
pass
|
|
|
|
|
|
|
|
return HttpResponse(
|
|
|
|
'No archived link matches the given timestamp or hash.',
|
|
|
|
content_type="text/plain",
|
|
|
|
status=404,
|
|
|
|
)
|
2020-08-20 14:04:34 +00:00
|
|
|
|
|
|
|
class PublicArchiveView(ListView):
|
|
|
|
template = 'snapshot_list.html'
|
|
|
|
model = Snapshot
|
2020-08-20 20:43:28 +00:00
|
|
|
paginate_by = 50
|
|
|
|
|
|
|
|
def get_queryset(self, *args, **kwargs):
|
|
|
|
qs = super(PublicArchiveView, self).get_queryset(*args, **kwargs)
|
|
|
|
for snapshot in qs:
|
|
|
|
snapshot.canonical_outputs = snapshot.as_link().canonical_outputs()
|
|
|
|
return qs
|
|
|
|
|
|
|
|
def get(self, *args, **kwargs):
|
|
|
|
if PUBLIC_INDEX or self.request.user.is_authenticated:
|
|
|
|
response = super().get(*args, **kwargs)
|
|
|
|
return response
|
|
|
|
else:
|
|
|
|
return redirect(f'/admin/login/?next={self.request.path}')
|
|
|
|
|
|
|
|
# should we use it?
|
|
|
|
class SnapshotDatatableView(BaseDatatableView):
|
|
|
|
model = Snapshot
|
|
|
|
columns = ['url', 'timestamp', 'title', 'tags', 'added']
|
|
|
|
|
|
|
|
def filter_queryset(self, qs):
|
|
|
|
sSearch = self.request.GET.get('sSearch', None)
|
|
|
|
if sSearch:
|
|
|
|
qs = qs.filter(Q(title__icontains=sSearch))
|
|
|
|
return qs
|
|
|
|
|
|
|
|
class SearchResultsView(PublicArchiveView):
|
|
|
|
def get_queryset(self, *args, **kwargs):
|
|
|
|
qs = super(PublicArchiveView, self).get_queryset(*args, **kwargs)
|
|
|
|
query = self.request.GET.get('q')
|
|
|
|
results = qs.filter(title__icontains=query)
|
|
|
|
return results
|