bookwyrm/bookwyrm/urls.py

302 lines
11 KiB
Python
Raw Normal View History

2021-03-08 16:49:10 +00:00
""" url routing for the app and api """
2020-01-28 19:45:27 +00:00
from django.conf.urls.static import static
2020-09-21 17:25:26 +00:00
from django.contrib import admin
2020-01-29 19:45:19 +00:00
from django.urls import path, re_path
2021-03-29 21:12:15 +00:00
from django.views.generic.base import TemplateView
2021-01-20 22:15:15 +00:00
from bookwyrm import settings, views
2020-12-31 01:36:35 +00:00
from bookwyrm.utils import regex
2020-01-28 19:45:27 +00:00
2021-03-08 16:49:10 +00:00
user_path = r"^user/(?P<username>%s)" % regex.username
local_user_path = r"^user/(?P<username>%s)" % regex.localname
2020-10-17 02:13:18 +00:00
status_types = [
2021-03-08 17:48:25 +00:00
"status",
"review",
"reviewrating",
"comment",
"quotation",
"boost",
"generatednote",
2020-10-17 02:13:18 +00:00
]
2021-03-08 16:49:10 +00:00
status_path = r"%s/(%s)/(?P<status_id>\d+)" % (user_path, "|".join(status_types))
2021-03-08 16:49:10 +00:00
book_path = r"^book/(?P<book_id>\d+)"
2020-01-25 06:32:41 +00:00
urlpatterns = [
2021-03-08 16:49:10 +00:00
path("admin/", admin.site.urls),
2021-03-29 21:12:15 +00:00
path(
"robots.txt",
TemplateView.as_view(template_name="robots.txt", content_type="text/plain"),
),
2020-01-28 08:44:51 +00:00
# federation endpoints
2021-03-08 16:49:10 +00:00
re_path(r"^inbox/?$", views.Inbox.as_view()),
re_path(r"%s/inbox/?$" % local_user_path, views.Inbox.as_view()),
re_path(r"%s/outbox/?$" % local_user_path, views.Outbox.as_view()),
2021-03-29 21:36:24 +00:00
re_path(r"^\.well-known/webfinger/?$", views.webfinger),
re_path(r"^\.well-known/nodeinfo/?$", views.nodeinfo_pointer),
re_path(r"^\.well-known/host-meta/?$", views.host_meta),
re_path(r"^nodeinfo/2\.0/?$", views.nodeinfo),
re_path(r"^api/v1/instance/?$", views.instance_info),
re_path(r"^api/v1/instance/peers/?$", views.peers),
2021-01-19 00:32:02 +00:00
# polling updates
2021-03-23 19:52:38 +00:00
re_path("^api/updates/notifications/?$", views.get_notification_count),
re_path("^api/updates/stream/(?P<stream>[a-z]+)/?$", views.get_unread_status_count),
2021-01-12 16:19:08 +00:00
# authentication
re_path(r"^login/?$", views.Login.as_view(), name="login"),
2021-03-08 16:49:10 +00:00
re_path(r"^register/?$", views.Register.as_view()),
re_path(r"^logout/?$", views.Logout.as_view()),
re_path(r"^password-reset/?$", views.PasswordResetRequest.as_view()),
re_path(
r"^password-reset/(?P<code>[A-Za-z0-9]+)/?$", views.PasswordReset.as_view()
),
2021-01-29 23:38:42 +00:00
# admin
2021-04-19 22:40:51 +00:00
re_path(r"^settings/site-settings/?$", views.Site.as_view(), name="settings-site"),
re_path(
2021-04-19 22:40:51 +00:00
r"^settings/email-preview/?$",
views.site.email_preview,
name="settings-email-preview",
),
2021-04-19 22:40:51 +00:00
re_path(
r"^settings/users/?$", views.UserAdminList.as_view(), name="settings-users"
),
re_path(
r"^settings/users/(?P<user>\d+)/?$",
views.UserAdmin.as_view(),
name="settings-user",
2021-04-19 22:40:51 +00:00
),
2021-03-08 16:49:10 +00:00
re_path(
2021-03-28 19:34:55 +00:00
r"^settings/federation/?$",
views.Federation.as_view(),
name="settings-federation",
),
re_path(
r"^settings/federation/(?P<server>\d+)/?$",
views.FederatedServer.as_view(),
name="settings-federated-server",
2021-03-08 16:49:10 +00:00
),
2021-04-11 17:36:40 +00:00
re_path(
r"^settings/federation/(?P<server>\d+)/block?$",
views.federation.block_server,
name="settings-federated-server-block",
),
2021-04-10 18:06:28 +00:00
re_path(
r"^settings/federation/(?P<server>\d+)/unblock?$",
views.federation.unblock_server,
name="settings-federated-server-unblock",
),
2021-04-07 20:06:29 +00:00
re_path(
r"^settings/federation/add/?$",
views.AddFederatedServer.as_view(),
name="settings-add-federated-server",
2021-04-07 20:17:51 +00:00
),
re_path(
r"^settings/federation/import/?$",
views.ImportServerBlocklist.as_view(),
name="settings-import-blocklist",
),
2021-03-08 16:49:10 +00:00
re_path(
r"^settings/invites/?$", views.ManageInvites.as_view(), name="settings-invites"
),
2021-03-21 02:39:08 +00:00
re_path(
r"^settings/requests/?$",
views.ManageInviteRequests.as_view(),
name="settings-invite-requests",
),
re_path(
r"^settings/requests/ignore?$",
views.ignore_invite_request,
name="settings-invite-requests-ignore",
),
2021-03-21 02:14:41 +00:00
re_path(
r"^invite-request/?$", views.InviteRequest.as_view(), name="invite-request"
),
2021-03-08 16:49:10 +00:00
re_path(r"^invite/(?P<code>[A-Za-z0-9]+)/?$", views.Invite.as_view()),
2021-03-08 23:49:44 +00:00
# moderation
re_path(r"^settings/reports/?$", views.Reports.as_view(), name="settings-reports"),
re_path(
2021-03-09 02:36:34 +00:00
r"^settings/reports/(?P<report_id>\d+)/?$",
2021-03-08 23:49:44 +00:00
views.Report.as_view(),
name="settings-report",
),
2021-03-12 19:13:53 +00:00
re_path(
r"^settings/reports/(?P<user_id>\d+)/suspend/?$",
views.suspend_user,
name="settings-report-suspend",
2021-03-12 19:13:53 +00:00
),
2021-03-12 18:22:03 +00:00
re_path(
r"^settings/reports/(?P<report_id>\d+)/resolve/?$",
views.resolve_report,
name="settings-report-resolve",
),
2021-03-09 02:36:34 +00:00
re_path(r"^report/?$", views.make_report, name="report"),
2021-01-13 20:03:27 +00:00
# landing pages
re_path(r"^about/?$", views.About.as_view(), name="about"),
path("", views.Home.as_view(), name="landing"),
2021-03-08 16:49:10 +00:00
re_path(r"^discover/?$", views.Discover.as_view()),
re_path(r"^notifications/?$", views.Notifications.as_view()),
2021-03-21 23:37:52 +00:00
re_path(r"^directory/?", views.Directory.as_view(), name="directory"),
2021-03-31 20:56:26 +00:00
# Get started
re_path(
2021-04-01 16:22:43 +00:00
r"^get-started/profile/?$",
views.GetStartedProfile.as_view(),
name="get-started-profile",
),
re_path(
r"^get-started/books/?$",
views.GetStartedBooks.as_view(),
name="get-started-books",
),
re_path(
r"^get-started/users/?$",
views.GetStartedUsers.as_view(),
name="get-started-users",
),
2021-01-29 18:25:31 +00:00
# feeds
2021-03-08 16:49:10 +00:00
re_path(r"^(?P<tab>home|local|federated)/?$", views.Feed.as_view()),
2021-03-12 18:37:52 +00:00
re_path(
r"^direct-messages/?$", views.DirectMessage.as_view(), name="direct-messages"
),
2021-03-08 16:49:10 +00:00
re_path(
r"^direct-messages/(?P<username>%s)?$" % regex.username,
views.DirectMessage.as_view(),
2021-03-12 18:37:52 +00:00
name="direct-messages-user",
2021-03-08 16:49:10 +00:00
),
2021-01-13 20:03:27 +00:00
# search
2021-05-01 01:35:09 +00:00
re_path(r"^search/?$", views.Search.as_view(), name="search"),
2021-01-12 19:28:03 +00:00
# imports
2021-03-08 16:49:10 +00:00
re_path(r"^import/?$", views.Import.as_view()),
re_path(r"^import/(\d+)/?$", views.ImportStatus.as_view()),
2020-03-14 00:57:36 +00:00
# users
2021-03-08 16:49:10 +00:00
re_path(r"%s/?$" % user_path, views.User.as_view(), name="user-feed"),
re_path(r"%s\.json$" % user_path, views.User.as_view()),
re_path(r"%s/rss" % user_path, views.rss_feed.RssFeed(), name="user-rss"),
re_path(
r"%s/followers(.json)?/?$" % user_path,
views.Followers.as_view(),
name="user-followers",
),
re_path(
r"%s/following(.json)?/?$" % user_path,
views.Following.as_view(),
name="user-following",
),
2021-01-31 05:33:41 +00:00
# lists
2021-03-31 16:34:16 +00:00
re_path(r"%s/lists/?$" % user_path, views.UserLists.as_view(), name="user-lists"),
2021-03-08 16:49:10 +00:00
re_path(r"^list/?$", views.Lists.as_view(), name="lists"),
re_path(r"^list/(?P<list_id>\d+)(.json)?/?$", views.List.as_view(), name="list"),
2021-03-15 22:33:05 +00:00
re_path(r"^list/add-book/?$", views.list.add_book, name="list-add-book"),
2021-03-08 16:49:10 +00:00
re_path(
r"^list/(?P<list_id>\d+)/remove/?$",
views.list.remove_book,
name="list-remove-book",
),
2021-04-08 16:05:21 +00:00
re_path(
r"^list-item/(?P<list_item_id>\d+)/set-position$",
views.list.set_book_position,
name="list-set-book-position",
),
2021-03-08 16:49:10 +00:00
re_path(
r"^list/(?P<list_id>\d+)/curate/?$", views.Curate.as_view(), name="list-curate"
),
2021-03-31 17:23:20 +00:00
# Uyser books
re_path(r"%s/books/?$" % user_path, views.Shelf.as_view(), name="user-shelves"),
2021-03-31 16:34:16 +00:00
re_path(
r"^%s/(helf|books)/(?P<shelf_identifier>[\w-]+)(.json)?/?$" % user_path,
2021-03-31 16:34:16 +00:00
views.Shelf.as_view(),
name="shelf",
),
re_path(
r"^%s/(books|shelf)/(?P<shelf_identifier>[\w-]+)(.json)?/?$" % local_user_path,
2021-03-31 16:34:16 +00:00
views.Shelf.as_view(),
2021-03-31 16:54:52 +00:00
name="shelf",
2021-03-31 16:34:16 +00:00
),
re_path(r"^create-shelf/?$", views.create_shelf, name="shelf-create"),
re_path(r"^delete-shelf/(?P<shelf_id>\d+)?$", views.delete_shelf),
re_path(r"^shelve/?$", views.shelve),
re_path(r"^unshelve/?$", views.unshelve),
# goals
re_path(
r"%s/goal/(?P<year>\d{4})/?$" % user_path,
views.Goal.as_view(),
name="user-goal",
),
re_path(r"^hide-goal/?$", views.hide_goal, name="hide-goal"),
2021-01-29 17:28:00 +00:00
# preferences
2021-03-08 16:49:10 +00:00
re_path(r"^preferences/profile/?$", views.EditUser.as_view(), name="prefs-profile"),
re_path(
r"^preferences/password/?$",
views.ChangePassword.as_view(),
name="prefs-password",
),
2021-03-08 16:49:10 +00:00
re_path(r"^preferences/block/?$", views.Block.as_view()),
re_path(r"^block/(?P<user_id>\d+)/?$", views.Block.as_view()),
re_path(r"^unblock/(?P<user_id>\d+)/?$", views.unblock),
2020-03-14 00:57:36 +00:00
# statuses
2021-04-03 19:38:12 +00:00
re_path(r"%s(.json)?/?$" % status_path, views.Status.as_view(), name="status"),
re_path(r"%s/activity/?$" % status_path, views.Status.as_view(), name="status"),
re_path(
r"%s/replies(.json)?/?$" % status_path, views.Replies.as_view(), name="replies"
),
2021-04-03 21:32:34 +00:00
re_path(
r"^post/?$",
views.CreateStatus.as_view(),
name="create-status",
),
2021-04-03 19:38:12 +00:00
re_path(
r"^post/(?P<status_type>\w+)/?$",
views.CreateStatus.as_view(),
name="create-status",
),
re_path(
r"^delete-status/(?P<status_id>\d+)/?$",
views.DeleteStatus.as_view(),
name="delete-status",
),
re_path(
r"^redraft-status/(?P<status_id>\d+)/?$",
views.DeleteAndRedraft.as_view(),
name="redraft",
),
2021-01-12 21:47:00 +00:00
# interact
2021-03-08 16:49:10 +00:00
re_path(r"^favorite/(?P<status_id>\d+)/?$", views.Favorite.as_view()),
re_path(r"^unfavorite/(?P<status_id>\d+)/?$", views.Unfavorite.as_view()),
re_path(r"^boost/(?P<status_id>\d+)/?$", views.Boost.as_view()),
re_path(r"^unboost/(?P<status_id>\d+)/?$", views.Unboost.as_view()),
2020-03-14 00:57:36 +00:00
# books
2021-04-23 20:32:58 +00:00
re_path(r"%s(.json)?/?$" % book_path, views.Book.as_view(), name="book"),
2021-04-23 20:46:22 +00:00
re_path(
r"%s/(?P<user_statuses>review|comment|quote)/?$" % book_path,
views.Book.as_view(),
name="book-user-statuses",
),
2021-03-08 16:49:10 +00:00
re_path(r"%s/edit/?$" % book_path, views.EditBook.as_view()),
2021-03-08 18:10:30 +00:00
re_path(r"%s/confirm/?$" % book_path, views.ConfirmEditBook.as_view()),
2021-05-03 18:20:43 +00:00
re_path(r"^create-book/?$", views.EditBook.as_view(), name="create-book"),
2021-03-08 18:10:30 +00:00
re_path(r"^create-book/confirm?$", views.ConfirmEditBook.as_view()),
2021-03-08 16:49:10 +00:00
re_path(r"%s/editions(.json)?/?$" % book_path, views.Editions.as_view()),
2021-03-18 17:03:53 +00:00
re_path(
r"^upload-cover/(?P<book_id>\d+)/?$", views.upload_cover, name="upload-cover"
),
2021-03-08 16:49:10 +00:00
re_path(r"^add-description/(?P<book_id>\d+)/?$", views.add_description),
re_path(r"^resolve-book/?$", views.resolve_book),
re_path(r"^switch-edition/?$", views.switch_edition),
2021-03-01 20:09:21 +00:00
# isbn
2021-03-08 16:49:10 +00:00
re_path(r"^isbn/(?P<isbn>\d+)(.json)?/?$", views.Isbn.as_view()),
2021-01-13 17:54:35 +00:00
# author
2021-03-08 16:49:10 +00:00
re_path(r"^author/(?P<author_id>\d+)(.json)?/?$", views.Author.as_view()),
re_path(r"^author/(?P<author_id>\d+)/edit/?$", views.EditAuthor.as_view()),
2021-01-13 20:33:48 +00:00
# reading progress
2021-03-21 00:18:18 +00:00
re_path(r"^edit-readthrough/?$", views.edit_readthrough, name="edit-readthrough"),
2021-03-08 16:49:10 +00:00
re_path(r"^delete-readthrough/?$", views.delete_readthrough),
re_path(r"^create-readthrough/?$", views.create_readthrough),
re_path(r"^delete-progressupdate/?$", views.delete_progressupdate),
re_path(r"^start-reading/(?P<book_id>\d+)/?$", views.start_reading),
re_path(r"^finish-reading/(?P<book_id>\d+)/?$", views.finish_reading),
2021-01-13 20:33:48 +00:00
# following
2021-03-13 22:48:15 +00:00
re_path(r"^follow/?$", views.follow, name="follow"),
re_path(r"^unfollow/?$", views.unfollow, name="unfollow"),
2021-03-08 16:49:10 +00:00
re_path(r"^accept-follow-request/?$", views.accept_follow_request),
re_path(r"^delete-follow-request/?$", views.delete_follow_request),
2020-01-28 06:49:56 +00:00
] + static(settings.MEDIA_URL, document_root=settings.MEDIA_ROOT)