2019-04-02 20:36:41 +00:00
|
|
|
from django.contrib import admin
|
|
|
|
|
2019-04-22 23:07:39 +00:00
|
|
|
from django.urls import path, include
|
2019-05-01 03:13:21 +00:00
|
|
|
from django.views import static
|
2021-02-16 09:16:24 +00:00
|
|
|
from django.contrib.staticfiles.urls import staticfiles_urlpatterns
|
2019-04-22 23:07:39 +00:00
|
|
|
from django.conf import settings
|
2019-05-01 03:13:21 +00:00
|
|
|
from django.views.generic.base import RedirectView
|
2019-04-17 09:42:21 +00:00
|
|
|
|
2021-10-03 17:12:03 +00:00
|
|
|
from core.views import HomepageView, SnapshotView, PublicIndexView, AddView, HealthCheckView
|
2019-04-22 23:07:39 +00:00
|
|
|
|
2020-06-30 09:56:17 +00:00
|
|
|
|
2020-07-28 03:26:45 +00:00
|
|
|
# print('DEBUG', settings.DEBUG)
|
2019-04-17 09:42:21 +00:00
|
|
|
|
2019-04-02 20:36:41 +00:00
|
|
|
urlpatterns = [
|
2021-01-30 10:35:07 +00:00
|
|
|
path('public/', PublicIndexView.as_view(), name='public-index'),
|
|
|
|
|
2021-02-17 23:25:47 +00:00
|
|
|
path('robots.txt', static.serve, {'document_root': settings.STATICFILES_DIRS[0], 'path': 'robots.txt'}),
|
|
|
|
path('favicon.ico', static.serve, {'document_root': settings.STATICFILES_DIRS[0], 'path': 'favicon.ico'}),
|
2019-05-01 03:13:21 +00:00
|
|
|
|
2020-11-23 07:04:39 +00:00
|
|
|
path('docs/', RedirectView.as_view(url='https://github.com/ArchiveBox/ArchiveBox/wiki'), name='Docs'),
|
2020-07-28 03:56:35 +00:00
|
|
|
|
2019-05-01 03:13:21 +00:00
|
|
|
path('archive/', RedirectView.as_view(url='/')),
|
2021-02-18 07:38:30 +00:00
|
|
|
path('archive/<path:path>', SnapshotView.as_view(), name='Snapshot'),
|
2020-09-17 14:08:20 +00:00
|
|
|
|
|
|
|
path('admin/core/snapshot/add/', RedirectView.as_view(url='/add/')),
|
2021-01-30 10:35:07 +00:00
|
|
|
path('add/', AddView.as_view(), name='add'),
|
2021-10-03 17:12:03 +00:00
|
|
|
|
2019-05-02 23:15:16 +00:00
|
|
|
path('accounts/login/', RedirectView.as_view(url='/admin/login/')),
|
|
|
|
path('accounts/logout/', RedirectView.as_view(url='/admin/logout/')),
|
|
|
|
|
2020-06-30 09:56:17 +00:00
|
|
|
|
2019-04-22 23:07:39 +00:00
|
|
|
path('accounts/', include('django.contrib.auth.urls')),
|
|
|
|
path('admin/', admin.site.urls),
|
2021-10-03 17:12:03 +00:00
|
|
|
|
|
|
|
path('health/', HealthCheckView.as_view(), name='healthcheck'),
|
2023-09-14 09:41:27 +00:00
|
|
|
path('error/', lambda _: 1/0),
|
|
|
|
|
|
|
|
# path('jet_api/', include('jet_django.urls')), Enable to use https://www.jetadmin.io/integrations/django
|
2021-10-03 17:12:03 +00:00
|
|
|
|
2020-06-30 09:56:17 +00:00
|
|
|
path('index.html', RedirectView.as_view(url='/')),
|
|
|
|
path('index.json', static.serve, {'document_root': settings.OUTPUT_DIR, 'path': 'index.json'}),
|
2021-01-30 10:35:17 +00:00
|
|
|
path('', HomepageView.as_view(), name='Home'),
|
2019-04-02 20:36:41 +00:00
|
|
|
]
|
2021-02-16 09:16:24 +00:00
|
|
|
urlpatterns += staticfiles_urlpatterns()
|
2021-01-30 10:35:17 +00:00
|
|
|
|
2021-02-16 07:50:05 +00:00
|
|
|
if settings.DEBUG_TOOLBAR:
|
|
|
|
import debug_toolbar
|
|
|
|
urlpatterns += [
|
|
|
|
path('__debug__/', include(debug_toolbar.urls)),
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
|
|
# # Proposed FUTURE URLs spec
|
|
|
|
# path('', HomepageView)
|
|
|
|
# path('/add', AddView)
|
|
|
|
# path('/public', PublicIndexView)
|
|
|
|
# path('/snapshot/:slug', SnapshotView)
|
|
|
|
|
|
|
|
# path('/admin', admin.site.urls)
|
|
|
|
# path('/accounts', django.contrib.auth.urls)
|
|
|
|
|
|
|
|
# # Prposed REST API spec
|
|
|
|
# # :slugs can be uuid, short_uuid, or any of the unique index_fields
|
|
|
|
# path('api/v1/'),
|
|
|
|
# path('api/v1/core/' [GET])
|
|
|
|
# path('api/v1/core/snapshot/', [GET, POST, PUT]),
|
|
|
|
# path('api/v1/core/snapshot/:slug', [GET, PATCH, DELETE]),
|
|
|
|
# path('api/v1/core/archiveresult', [GET, POST, PUT]),
|
|
|
|
# path('api/v1/core/archiveresult/:slug', [GET, PATCH, DELETE]),
|
|
|
|
# path('api/v1/core/tag/', [GET, POST, PUT]),
|
|
|
|
# path('api/v1/core/tag/:slug', [GET, PATCH, DELETE]),
|
|
|
|
|
|
|
|
# path('api/v1/cli/', [GET])
|
|
|
|
# path('api/v1/cli/{add,list,config,...}', [POST]), # pass query as kwargs directly to `run_subcommand` and return stdout, stderr, exitcode
|
|
|
|
|
|
|
|
# path('api/v1/extractors/', [GET])
|
|
|
|
# path('api/v1/extractors/:extractor/', [GET]),
|
|
|
|
# path('api/v1/extractors/:extractor/:func', [GET, POST]), # pass query as args directly to chosen function
|
|
|
|
|
|
|
|
# future, just an idea:
|
|
|
|
# path('api/v1/scheduler/', [GET])
|
|
|
|
# path('api/v1/scheduler/task/', [GET, POST, PUT]),
|
|
|
|
# path('api/v1/scheduler/task/:slug', [GET, PATCH, DELETE]),
|