urls: Migrate re_path routes to path.

Django treats path("<name>") like re_path(r"(?P<name>[^/]+)") and
path("<path:name>") like re_path(r"(?P<name>.+)").

This is more readable and consistent than the mix of slightly
different regexes we had before, and fixes various bugs:

• The r'apps/(.*)$' regex was missing a start anchor ^, so it
  incorrectly matched all URLs that included apps/ as a substring
  anywhere.
• The r'accounts/login/(google)/$' regex was missing a start anchor ^,
  so it incorrectly matched all URLs that ended with
  accounts/login/google/.
• The type annotation of zerver.views.realm_export.delete_realm_export
  takes export_id as an int, but it was previously passed as a string.
• The type annotation of zerver.views.users.avatar takes medium as a
  bool, but it was previously passed as a string.
• The [0-9A-Za-z]+ pattern for uidb64 was missing the - and _
  characters that can validly be part of a base64url encoded
  string (although I think the id is actually a decimal integer here,
  in which case only 012345ADEIMNOQTUYcgjkwxyz are present in its
  base64url encoding).

Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
Anders Kaseorg 2020-09-11 19:18:53 -07:00 committed by Tim Abbott
parent 4e8067aadc
commit 463929f349
7 changed files with 113 additions and 96 deletions

View File

@ -220,7 +220,7 @@ function get_fixtures(integration_name) {
// We don't have the fixtures for this integration; fetch them // We don't have the fixtures for this integration; fetch them
// from the backend. Relative url pattern: // from the backend. Relative url pattern:
// /devtools/integrations/(?P<integration_name>.+)/fixtures // /devtools/integrations/<integration_name>/fixtures
channel.get({ channel.get({
url: "/devtools/integrations/" + integration_name + "/fixtures", url: "/devtools/integrations/" + integration_name + "/fixtures",
// Since the user may add or modify fixtures as they edit. // Since the user may add or modify fixtures as they edit.

View File

@ -429,7 +429,7 @@ def write_instrumentation_reports(full_suite: bool, include_webhooks: bool) -> N
'node-coverage/(?P<path>.+)', 'node-coverage/(?P<path>.+)',
'docs/(?P<path>.+)', 'docs/(?P<path>.+)',
'casper/(?P<path>.+)', 'casper/(?P<path>.+)',
'static/(?P<path>.*)', 'static/(?P<path>.+)',
*(webhook.url for webhook in WEBHOOK_INTEGRATIONS if not include_webhooks), *(webhook.url for webhook in WEBHOOK_INTEGRATIONS if not include_webhooks),
} }

View File

@ -460,6 +460,11 @@ class AppsPageTest(ZulipTestCase):
self.assertEqual(result.status_code, 301) self.assertEqual(result.status_code, 301)
self.assertTrue(result['Location'] == 'https://zulip.com/apps/') self.assertTrue(result['Location'] == 'https://zulip.com/apps/')
with self.settings(ZILENCER_ENABLED=False):
result = self.client_get('/apps/linux')
self.assertEqual(result.status_code, 301)
self.assertTrue(result['Location'] == 'https://zulip.com/apps/')
with self.settings(ZILENCER_ENABLED=True): with self.settings(ZILENCER_ENABLED=True):
result = self.client_get('/apps/') result = self.client_get('/apps/')
self.assertEqual(result.status_code, 200) self.assertEqual(result.status_code, 200)

View File

@ -107,7 +107,7 @@ class RealmEmojiTest(ZulipTestCase):
self.login('iago') self.login('iago')
with get_test_image_file('img.png') as fp1: with get_test_image_file('img.png') as fp1:
emoji_data = {'f1': fp1} emoji_data = {'f1': fp1}
result = self.client_post('/json/realm/emoji/', info=emoji_data) result = self.client_post('/json/realm/emoji/%20', info=emoji_data)
self.assert_json_error(result, 'Emoji name is missing') self.assert_json_error(result, 'Emoji name is missing')
def test_upload_admins_only(self) -> None: def test_upload_admins_only(self) -> None:

View File

@ -1,3 +1,5 @@
from typing import Optional
import orjson import orjson
from django.conf import settings from django.conf import settings
from django.http import HttpRequest, HttpResponse, HttpResponseRedirect from django.http import HttpRequest, HttpResponse, HttpResponseRedirect
@ -10,7 +12,7 @@ from zerver.models import Realm
@add_google_analytics @add_google_analytics
def apps_view(request: HttpRequest, _: str) -> HttpResponse: def apps_view(request: HttpRequest, platform: Optional[str] = None) -> HttpResponse:
if settings.ZILENCER_ENABLED: if settings.ZILENCER_ENABLED:
return TemplateResponse( return TemplateResponse(
request, request,

View File

@ -5,7 +5,7 @@ from django.conf import settings
from django.conf.urls.static import static from django.conf.urls.static import static
from django.contrib.staticfiles.views import serve as staticfiles_serve from django.contrib.staticfiles.views import serve as staticfiles_serve
from django.http import HttpRequest, HttpResponse from django.http import HttpRequest, HttpResponse
from django.urls import path, re_path from django.urls import path
from django.views.generic import TemplateView from django.views.generic import TemplateView
from django.views.static import serve from django.views.static import serve
@ -68,7 +68,7 @@ urls = [
# Serve static assets via the Django server # Serve static assets via the Django server
if use_prod_static: if use_prod_static:
urls += [ urls += [
re_path(r'^static/(?P<path>.*)$', serve, {'document_root': settings.STATIC_ROOT}), path('static/<path:path>', serve, {'document_root': settings.STATIC_ROOT}),
] ]
else: else:
def serve_static(request: HttpRequest, path: str) -> HttpResponse: def serve_static(request: HttpRequest, path: str) -> HttpResponse:
@ -84,8 +84,8 @@ i18n_urls = [
# On a production instance, these files would be served by nginx. # On a production instance, these files would be served by nginx.
if settings.LOCAL_UPLOADS_DIR is not None: if settings.LOCAL_UPLOADS_DIR is not None:
avatars_url = re_path( avatars_url = path(
r'^user_avatars/(?P<path>.*)$', 'user_avatars/<path:path>',
serve, serve,
{'document_root': os.path.join(settings.LOCAL_UPLOADS_DIR, "avatars")}, {'document_root': os.path.join(settings.LOCAL_UPLOADS_DIR, "avatars")},
) )

View File

@ -9,7 +9,7 @@ from django.contrib.auth.views import (
PasswordResetConfirmView, PasswordResetConfirmView,
PasswordResetDoneView, PasswordResetDoneView,
) )
from django.urls import path, re_path from django.urls import path
from django.utils.module_loading import import_string from django.utils.module_loading import import_string
from django.views.generic import RedirectView, TemplateView from django.views.generic import RedirectView, TemplateView
@ -83,23 +83,23 @@ v1_api_and_json_patterns = [
path('generate_204', zerver.views.registration.generate_204, path('generate_204', zerver.views.registration.generate_204,
name='zerver.views.registration.generate_204'), name='zerver.views.registration.generate_204'),
re_path(r'^realm/subdomain/(?P<subdomain>\S+)$', zerver.views.realm.check_subdomain_available, path('realm/subdomain/<subdomain>', zerver.views.realm.check_subdomain_available,
name='zerver.views.realm.check_subdomain_available'), name='zerver.views.realm.check_subdomain_available'),
# realm/domains -> zerver.views.realm_domains # realm/domains -> zerver.views.realm_domains
path('realm/domains', rest_dispatch, path('realm/domains', rest_dispatch,
{'GET': 'zerver.views.realm_domains.list_realm_domains', {'GET': 'zerver.views.realm_domains.list_realm_domains',
'POST': 'zerver.views.realm_domains.create_realm_domain'}), 'POST': 'zerver.views.realm_domains.create_realm_domain'}),
re_path(r'^realm/domains/(?P<domain>\S+)$', rest_dispatch, path('realm/domains/<domain>', rest_dispatch,
{'PATCH': 'zerver.views.realm_domains.patch_realm_domain', {'PATCH': 'zerver.views.realm_domains.patch_realm_domain',
'DELETE': 'zerver.views.realm_domains.delete_realm_domain'}), 'DELETE': 'zerver.views.realm_domains.delete_realm_domain'}),
# realm/emoji -> zerver.views.realm_emoji # realm/emoji -> zerver.views.realm_emoji
path('realm/emoji', rest_dispatch, path('realm/emoji', rest_dispatch,
{'GET': 'zerver.views.realm_emoji.list_emoji'}), {'GET': 'zerver.views.realm_emoji.list_emoji'}),
re_path(r'^realm/emoji/(?P<emoji_name>.*)$', rest_dispatch, path('realm/emoji/<emoji_name>', rest_dispatch,
{'POST': 'zerver.views.realm_emoji.upload_emoji', {'POST': 'zerver.views.realm_emoji.upload_emoji',
'DELETE': ('zerver.views.realm_emoji.delete_emoji', {"intentionally_undocumented"})}), 'DELETE': ('zerver.views.realm_emoji.delete_emoji', {"intentionally_undocumented"})}),
# this endpoint throws a status code 400 JsonableError when it should be a 404. # this endpoint throws a status code 400 JsonableError when it should be a 404.
# realm/icon -> zerver.views.realm_icon # realm/icon -> zerver.views.realm_icon
@ -250,10 +250,10 @@ v1_api_and_json_patterns = [
# user_uploads -> zerver.views.upload # user_uploads -> zerver.views.upload
path('user_uploads', rest_dispatch, path('user_uploads', rest_dispatch,
{'POST': 'zerver.views.upload.upload_file_backend'}), {'POST': 'zerver.views.upload.upload_file_backend'}),
re_path(r'^user_uploads/(?P<realm_id_str>(\d*|unk))/(?P<filename>.*)$', path('user_uploads/<realm_id_str>/<path:filename>',
rest_dispatch, rest_dispatch,
{'GET': ('zerver.views.upload.serve_file_url_backend', {'GET': ('zerver.views.upload.serve_file_url_backend',
{'override_api_url_scheme'})}), {'override_api_url_scheme'})}),
# bot_storage -> zerver.views.storage # bot_storage -> zerver.views.storage
path('bot_storage', rest_dispatch, path('bot_storage', rest_dispatch,
@ -421,10 +421,12 @@ v1_api_and_json_patterns = [
path('export/realm', rest_dispatch, path('export/realm', rest_dispatch,
{'POST': 'zerver.views.realm_export.export_realm', {'POST': 'zerver.views.realm_export.export_realm',
'GET': 'zerver.views.realm_export.get_realm_exports'}), 'GET': 'zerver.views.realm_export.get_realm_exports'}),
re_path(r'^export/realm/(?P<export_id>.*)$', rest_dispatch, path('export/realm/<int:export_id>', rest_dispatch,
{'DELETE': 'zerver.views.realm_export.delete_realm_export'}), {'DELETE': 'zerver.views.realm_export.delete_realm_export'}),
] ]
integrations_view = IntegrationView.as_view()
# These views serve pages (HTML). As such, their internationalization # These views serve pages (HTML). As such, their internationalization
# must depend on the url. # must depend on the url.
# #
@ -442,24 +444,23 @@ i18n_urls = [
# apps; see https://github.com/zulip/zulip/issues/13081 for # apps; see https://github.com/zulip/zulip/issues/13081 for
# background. We can remove this once older versions of the # background. We can remove this once older versions of the
# mobile app are no longer present in the wild. # mobile app are no longer present in the wild.
re_path(r'accounts/login/(google)/$', zerver.views.auth.start_social_login, path('accounts/login/google/', zerver.views.auth.start_social_login, {"backend": "google"}),
name='login-social'),
path('accounts/login/start/sso/', zerver.views.auth.start_remote_user_sso, name='start-login-sso'), path('accounts/login/start/sso/', zerver.views.auth.start_remote_user_sso, name='start-login-sso'),
path('accounts/login/sso/', zerver.views.auth.remote_user_sso, name='login-sso'), path('accounts/login/sso/', zerver.views.auth.remote_user_sso, name='login-sso'),
path('accounts/login/jwt/', zerver.views.auth.remote_user_jwt, name='login-jwt'), path('accounts/login/jwt/', zerver.views.auth.remote_user_jwt, name='login-jwt'),
re_path(r'^accounts/login/social/([\w,-]+)$', zerver.views.auth.start_social_login, path('accounts/login/social/<backend>', zerver.views.auth.start_social_login,
name='login-social'), name='login-social'),
re_path(r'^accounts/login/social/([\w,-]+)/([\w,-]+)$', zerver.views.auth.start_social_login, path('accounts/login/social/<backend>/<extra_arg>', zerver.views.auth.start_social_login,
name='login-social-extra-arg'), name='login-social-extra-arg'),
re_path(r'^accounts/register/social/([\w,-]+)$', path('accounts/register/social/<backend>',
zerver.views.auth.start_social_signup, zerver.views.auth.start_social_signup,
name='signup-social'), name='signup-social'),
re_path(r'^accounts/register/social/([\w,-]+)/([\w,-]+)$', path('accounts/register/social/<backend>/<extra_arg>',
zerver.views.auth.start_social_signup, zerver.views.auth.start_social_signup,
name='signup-social-extra-arg'), name='signup-social-extra-arg'),
re_path(r'^accounts/login/subdomain/([^/]+)$', zerver.views.auth.log_into_subdomain, path('accounts/login/subdomain/<token>', zerver.views.auth.log_into_subdomain,
name='zerver.views.auth.log_into_subdomain'), name='zerver.views.auth.log_into_subdomain'),
path('accounts/login/local/', zerver.views.auth.dev_direct_login, path('accounts/login/local/', zerver.views.auth.dev_direct_login,
name='zerver.views.auth.dev_direct_login'), name='zerver.views.auth.dev_direct_login'),
# We have two entries for accounts/login; only the first one is # We have two entries for accounts/login; only the first one is
@ -481,11 +482,11 @@ i18n_urls = [
name='zerver.views.auth.password_reset'), name='zerver.views.auth.password_reset'),
path('accounts/password/reset/done/', path('accounts/password/reset/done/',
PasswordResetDoneView.as_view(template_name='zerver/reset_emailed.html')), PasswordResetDoneView.as_view(template_name='zerver/reset_emailed.html')),
re_path(r'^accounts/password/reset/(?P<uidb64>[0-9A-Za-z]+)/(?P<token>.+)/$', path('accounts/password/reset/<uidb64>/<token>/',
PasswordResetConfirmView.as_view(success_url='/accounts/password/done/', PasswordResetConfirmView.as_view(success_url='/accounts/password/done/',
template_name='zerver/reset_confirm.html', template_name='zerver/reset_confirm.html',
form_class=zerver.forms.LoggingSetPasswordForm), form_class=zerver.forms.LoggingSetPasswordForm),
name='django.contrib.auth.views.password_reset_confirm'), name='django.contrib.auth.views.password_reset_confirm'),
path('accounts/password/done/', path('accounts/password/done/',
PasswordResetCompleteView.as_view(template_name='zerver/reset_done.html')), PasswordResetCompleteView.as_view(template_name='zerver/reset_done.html')),
path('accounts/deactivated/', path('accounts/deactivated/',
@ -498,29 +499,29 @@ i18n_urls = [
# Registration views, require a confirmation ID. # Registration views, require a confirmation ID.
path('accounts/home/', zerver.views.registration.accounts_home, path('accounts/home/', zerver.views.registration.accounts_home,
name='zerver.views.registration.accounts_home'), name='zerver.views.registration.accounts_home'),
re_path(r'^accounts/send_confirm/(?P<email>[\S]+)?$', path('accounts/send_confirm/<email>',
TemplateView.as_view( TemplateView.as_view(
template_name='zerver/accounts_send_confirm.html'), template_name='zerver/accounts_send_confirm.html'),
name='signup_send_confirm'), name='signup_send_confirm'),
re_path(r'^accounts/new/send_confirm/(?P<email>[\S]+)?$', path('accounts/new/send_confirm/<email>',
TemplateView.as_view( TemplateView.as_view(
template_name='zerver/accounts_send_confirm.html'), template_name='zerver/accounts_send_confirm.html'),
{'realm_creation': True}, name='new_realm_send_confirm'), {'realm_creation': True}, name='new_realm_send_confirm'),
path('accounts/register/', zerver.views.registration.accounts_register, path('accounts/register/', zerver.views.registration.accounts_register,
name='zerver.views.registration.accounts_register'), name='zerver.views.registration.accounts_register'),
re_path(r'^accounts/do_confirm/(?P<confirmation_key>[\w]+)$', path('accounts/do_confirm/<confirmation_key>',
zerver.views.registration.check_prereg_key_and_redirect, zerver.views.registration.check_prereg_key_and_redirect,
name='check_prereg_key_and_redirect'), name='check_prereg_key_and_redirect'),
re_path(r'^accounts/confirm_new_email/(?P<confirmation_key>[\w]+)$', path('accounts/confirm_new_email/<confirmation_key>',
zerver.views.user_settings.confirm_email_change, zerver.views.user_settings.confirm_email_change,
name='zerver.views.user_settings.confirm_email_change'), name='zerver.views.user_settings.confirm_email_change'),
# Email unsubscription endpoint. Allows for unsubscribing from various types of emails, # Email unsubscription endpoint. Allows for unsubscribing from various types of emails,
# including the welcome emails (day 1 & 2), missed PMs, etc. # including the welcome emails (day 1 & 2), missed PMs, etc.
re_path(r'^accounts/unsubscribe/(?P<email_type>[\w]+)/(?P<confirmation_key>[\w]+)$', path('accounts/unsubscribe/<email_type>/<confirmation_key>',
zerver.views.unsubscribe.email_unsubscribe, zerver.views.unsubscribe.email_unsubscribe,
name='zerver.views.unsubscribe.email_unsubscribe'), name='zerver.views.unsubscribe.email_unsubscribe'),
# Portico-styled page used to provide email confirmation of terms acceptance. # Portico-styled page used to provide email confirmation of terms acceptance.
path('accounts/accept_terms/', zerver.views.home.accounts_accept_terms, path('accounts/accept_terms/', zerver.views.home.accounts_accept_terms,
@ -537,12 +538,12 @@ i18n_urls = [
# Realm Creation # Realm Creation
path('new/', zerver.views.registration.create_realm, path('new/', zerver.views.registration.create_realm,
name='zerver.views.create_realm'), name='zerver.views.create_realm'),
re_path(r'^new/(?P<creation_key>[\w]+)$', path('new/<creation_key>',
zerver.views.registration.create_realm, name='zerver.views.create_realm'), zerver.views.registration.create_realm, name='zerver.views.create_realm'),
# Realm Reactivation # Realm Reactivation
re_path(r'^reactivate/(?P<confirmation_key>[\w]+)$', zerver.views.realm.realm_reactivation, path('reactivate/<confirmation_key>', zerver.views.realm.realm_reactivation,
name='zerver.views.realm.realm_reactivation'), name='zerver.views.realm.realm_reactivation'),
# Global public streams (Zulip's way of doing archives) # Global public streams (Zulip's way of doing archives)
path('archive/streams/<int:stream_id>/topics/<topic_name>', path('archive/streams/<int:stream_id>/topics/<topic_name>',
@ -557,9 +558,9 @@ i18n_urls = [
path('login/', zerver.views.auth.login_page, {'template_name': 'zerver/login.html'}, path('login/', zerver.views.auth.login_page, {'template_name': 'zerver/login.html'},
name='zerver.views.auth.login_page'), name='zerver.views.auth.login_page'),
re_path(r'^join/(?P<confirmation_key>\S+)/$', path('join/<confirmation_key>/',
zerver.views.registration.accounts_home_from_multiuse_invite, zerver.views.registration.accounts_home_from_multiuse_invite,
name='zerver.views.registration.accounts_home_from_multiuse_invite'), name='zerver.views.registration.accounts_home_from_multiuse_invite'),
# Used to generate a Zoom video call URL # Used to generate a Zoom video call URL
path('calls/zoom/register', zerver.views.video_calls.register_zoom_user), path('calls/zoom/register', zerver.views.video_calls.register_zoom_user),
@ -573,14 +574,16 @@ i18n_urls = [
path('integrations/doc-html/<integration_name>', path('integrations/doc-html/<integration_name>',
zerver.views.documentation.integration_doc, zerver.views.documentation.integration_doc,
name="zerver.views.documentation.integration_doc"), name="zerver.views.documentation.integration_doc"),
re_path(r'^integrations/(.*)$', IntegrationView.as_view()), path('integrations/', integrations_view),
path('integrations/<path:path>', integrations_view),
# Landing page, features pages, signup form, etc. # Landing page, features pages, signup form, etc.
path('hello/', zerver.views.portico.hello_view, name='landing-page'), path('hello/', zerver.views.portico.hello_view, name='landing-page'),
path('new-user/', RedirectView.as_view(url='/hello', permanent=True)), path('new-user/', RedirectView.as_view(url='/hello', permanent=True)),
path('features/', zerver.views.portico.landing_view, {'template_name': 'zerver/features.html'}), path('features/', zerver.views.portico.landing_view, {'template_name': 'zerver/features.html'}),
path('plans/', zerver.views.portico.plans_view, name='plans'), path('plans/', zerver.views.portico.plans_view, name='plans'),
re_path(r'apps/(.*)$', zerver.views.portico.apps_view, name='zerver.views.home.apps_view'), path('apps/', zerver.views.portico.apps_view, name='zerver.views.home.apps_view'),
path('apps/<platform>', zerver.views.portico.apps_view, name='zerver.views.home.apps_view'),
path('team/', zerver.views.portico.team_view), path('team/', zerver.views.portico.team_view),
path('history/', zerver.views.portico.landing_view, {'template_name': 'zerver/history.html'}), path('history/', zerver.views.portico.landing_view, {'template_name': 'zerver/history.html'}),
path('why-zulip/', zerver.views.portico.landing_view, {'template_name': 'zerver/why-zulip.html'}), path('why-zulip/', zerver.views.portico.landing_view, {'template_name': 'zerver/why-zulip.html'}),
@ -598,10 +601,10 @@ i18n_urls = [
# Terms of Service and privacy pages. # Terms of Service and privacy pages.
path('terms/', zerver.views.portico.terms_view, name='terms'), path('terms/', zerver.views.portico.terms_view, name='terms'),
path('privacy/', zerver.views.portico.privacy_view, name='privacy'), path('privacy/', zerver.views.portico.privacy_view, name='privacy'),
re_path(r'^config-error/(?P<error_category_name>[\w,-]+)$', zerver.views.auth.config_error_view, path('config-error/<error_category_name>', zerver.views.auth.config_error_view,
name='config_error'), name='config_error'),
re_path(r'^config-error/remoteuser/(?P<error_category_name>[\w,-]+)$', path('config-error/remoteuser/<error_category_name>',
zerver.views.auth.config_error_view), zerver.views.auth.config_error_view),
] ]
# Make a copy of i18n_urls so that they appear without prefix for english # Make a copy of i18n_urls so that they appear without prefix for english
@ -622,13 +625,13 @@ urls += [
# having to rewrite URLs, and is implemented using the # having to rewrite URLs, and is implemented using the
# 'override_api_url_scheme' flag passed to rest_dispatch # 'override_api_url_scheme' flag passed to rest_dispatch
urls += [ urls += [
re_path(r'^user_uploads/temporary/([0-9A-Za-z]+)/([^/]+)$', path('user_uploads/temporary/<token>/<filename>',
zerver.views.upload.serve_local_file_unauthed, zerver.views.upload.serve_local_file_unauthed,
name='zerver.views.upload.serve_local_file_unauthed'), name='zerver.views.upload.serve_local_file_unauthed'),
re_path(r'^user_uploads/(?P<realm_id_str>(\d*|unk))/(?P<filename>.*)$', path('user_uploads/<realm_id_str>/<path:filename>',
rest_dispatch, rest_dispatch,
{'GET': ('zerver.views.upload.serve_file_backend', {'GET': ('zerver.views.upload.serve_file_backend',
{'override_api_url_scheme'})}), {'override_api_url_scheme'})}),
# This endpoint serves thumbnailed versions of images using thumbor; # This endpoint serves thumbnailed versions of images using thumbor;
# it requires an exception for the same reason. # it requires an exception for the same reason.
path('thumbnail', rest_dispatch, path('thumbnail', rest_dispatch,
@ -636,14 +639,15 @@ urls += [
{'override_api_url_scheme'})}), {'override_api_url_scheme'})}),
# Avatars have the same constraint because their URLs are included # Avatars have the same constraint because their URLs are included
# in API data structures used by both the mobile and web clients. # in API data structures used by both the mobile and web clients.
re_path(r'^avatar/(?P<email_or_id>[\S]+)/(?P<medium>[\S]+)?$', path('avatar/<email_or_id>',
rest_dispatch, rest_dispatch,
{'GET': ('zerver.views.users.avatar', {'GET': ('zerver.views.users.avatar',
{'override_api_url_scheme'})}), {'override_api_url_scheme'})}),
re_path(r'^avatar/(?P<email_or_id>[\S]+)$', path('avatar/<email_or_id>/medium',
rest_dispatch, rest_dispatch,
{'GET': ('zerver.views.users.avatar', {'GET': ('zerver.views.users.avatar',
{'override_api_url_scheme'})}), {'override_api_url_scheme'}),
'medium': True}),
] ]
# This url serves as a way to receive CSP violation reports from the users. # This url serves as a way to receive CSP violation reports from the users.
@ -658,9 +662,9 @@ urls += [
# such links with images previews. Now thumbor can be used for serving such # such links with images previews. Now thumbor can be used for serving such
# images. # images.
urls += [ urls += [
re_path(r'^external_content/(?P<digest>[\S]+)/(?P<received_url>[\S]+)$', path('external_content/<digest>/<received_url>',
zerver.views.camo.handle_camo_url, zerver.views.camo.handle_camo_url,
name='zerver.views.camo.handle_camo_url'), name='zerver.views.camo.handle_camo_url'),
] ]
# Incoming webhook URLs # Incoming webhook URLs
@ -743,12 +747,18 @@ urls += [path('', include('social_django.urls', namespace='social'))]
urls += [path('saml/metadata.xml', zerver.views.auth.saml_sp_metadata)] urls += [path('saml/metadata.xml', zerver.views.auth.saml_sp_metadata)]
# User documentation site # User documentation site
urls += [re_path(r'^help/(?P<article>.*)$', help_documentation_view = MarkdownDirectoryView.as_view(
MarkdownDirectoryView.as_view(template_name='zerver/documentation_main.html', template_name='zerver/documentation_main.html', path_template='/zerver/help/%s.md'
path_template='/zerver/help/%s.md'))] )
urls += [re_path(r'^api/(?P<article>[-\w]*\/?)$', api_documentation_view = MarkdownDirectoryView.as_view(
MarkdownDirectoryView.as_view(template_name='zerver/documentation_main.html', template_name='zerver/documentation_main.html', path_template='/zerver/api/%s.md'
path_template='/zerver/api/%s.md'))] )
urls += [
path('help/', help_documentation_view),
path('help/<path:article>', help_documentation_view),
path('api/', api_documentation_view),
path('api/<slug:article>', api_documentation_view),
]
# Two Factor urls # Two Factor urls
if settings.TWO_FACTOR_AUTHENTICATION_ENABLED: if settings.TWO_FACTOR_AUTHENTICATION_ENABLED: