2012-08-28 21:31:32 +02:00
|
|
|
from django.conf import settings
|
2016-10-27 12:38:16 +02:00
|
|
|
from django.conf.urls import url, include
|
2016-05-19 17:33:30 +02:00
|
|
|
from django.conf.urls.i18n import i18n_patterns
|
2013-03-08 19:15:51 +01:00
|
|
|
from django.views.generic import TemplateView, RedirectView
|
2016-05-19 17:33:30 +02:00
|
|
|
from django.utils.module_loading import import_string
|
2012-08-28 21:31:32 +02:00
|
|
|
import os.path
|
2013-07-29 23:03:31 +02:00
|
|
|
import zerver.forms
|
2016-06-25 03:44:32 +02:00
|
|
|
from zproject import dev_urls
|
2016-06-24 01:06:20 +02:00
|
|
|
from zproject.legacy_urls import legacy_urls
|
2016-11-09 01:45:36 +01:00
|
|
|
from zerver.views.integrations import IntegrationView, APIView, HelpView
|
2016-07-25 22:12:12 +02:00
|
|
|
from zerver.lib.integrations import WEBHOOK_INTEGRATIONS
|
2016-11-23 20:15:23 +01:00
|
|
|
from zerver.webhooks import github_dispatcher
|
2016-11-14 21:06:39 +01:00
|
|
|
|
2012-08-28 18:44:51 +02:00
|
|
|
|
2016-10-27 14:52:56 +02:00
|
|
|
from django.contrib.auth.views import (login, password_reset,
|
2016-12-03 00:04:17 +01:00
|
|
|
password_reset_done, password_reset_confirm, password_reset_complete)
|
2016-10-27 14:52:56 +02:00
|
|
|
|
2016-11-27 06:50:54 +01:00
|
|
|
import zerver.tornado.views
|
2016-10-27 14:52:56 +02:00
|
|
|
import zerver.views
|
|
|
|
import zerver.views.auth
|
2017-01-30 07:21:13 +01:00
|
|
|
import zerver.views.compatibility
|
2017-01-07 21:19:52 +01:00
|
|
|
import zerver.views.home
|
2017-04-18 17:28:55 +02:00
|
|
|
import zerver.views.email_mirror
|
2017-01-07 21:46:03 +01:00
|
|
|
import zerver.views.registration
|
2016-10-27 14:52:56 +02:00
|
|
|
import zerver.views.zephyr
|
|
|
|
import zerver.views.users
|
|
|
|
import zerver.views.unsubscribe
|
|
|
|
import zerver.views.integrations
|
2017-01-20 12:27:38 +01:00
|
|
|
import zerver.views.user_settings
|
2017-03-13 22:05:35 +01:00
|
|
|
import zerver.views.muting
|
2017-05-09 07:01:42 +02:00
|
|
|
import zerver.views.streams
|
2016-10-27 14:52:56 +02:00
|
|
|
import confirmation.views
|
|
|
|
|
|
|
|
from zerver.lib.rest import rest_dispatch
|
|
|
|
|
2013-03-21 22:38:02 +01:00
|
|
|
# NB: There are several other pieces of code which route requests by URL:
|
|
|
|
#
|
2016-06-24 01:20:37 +02:00
|
|
|
# - legacy_urls.py contains API endpoint written before the redesign
|
|
|
|
# and should not be added to.
|
|
|
|
#
|
2013-03-21 22:38:02 +01:00
|
|
|
# - runtornado.py has its own URL list for Tornado views. See the
|
|
|
|
# invocation of web.Application in that file.
|
|
|
|
#
|
|
|
|
# - The Nginx config knows which URLs to route to Django or Tornado.
|
|
|
|
#
|
|
|
|
# - Likewise for the local dev server in tools/run-dev.py.
|
|
|
|
|
2016-06-25 00:36:19 +02:00
|
|
|
# These views serve pages (HTML). As such, their internationalization
|
|
|
|
# must depend on the url.
|
|
|
|
#
|
|
|
|
# If you're adding a new page to the website (as opposed to a new
|
|
|
|
# endpoint for use by code), you should add it here.
|
2016-05-19 17:33:30 +02:00
|
|
|
i18n_urls = [
|
2017-01-07 21:19:52 +01:00
|
|
|
url(r'^$', zerver.views.home.home, name='zerver.views.home.home'),
|
2016-06-25 00:36:19 +02:00
|
|
|
# We have a desktop-specific landing page in case we change our /
|
|
|
|
# to not log in in the future. We don't want to require a new
|
|
|
|
# desktop app build for everyone in that case
|
2017-01-07 21:19:52 +01:00
|
|
|
url(r'^desktop_home/$', zerver.views.home.desktop_home, name='zerver.views.home.desktop_home'),
|
2016-10-27 14:52:56 +02:00
|
|
|
|
|
|
|
url(r'^accounts/login/sso/$', zerver.views.auth.remote_user_sso, name='login-sso'),
|
|
|
|
url(r'^accounts/login/jwt/$', zerver.views.auth.remote_user_jwt, name='login-jwt'),
|
2016-12-01 13:10:59 +01:00
|
|
|
url(r'^accounts/login/social/(\w+)$', zerver.views.auth.start_social_login, name='login-social'),
|
2016-10-27 14:52:56 +02:00
|
|
|
url(r'^accounts/login/google/$', zerver.views.auth.start_google_oauth2, name='zerver.views.auth.start_google_oauth2'),
|
|
|
|
url(r'^accounts/login/google/send/$',
|
|
|
|
zerver.views.auth.send_oauth_request_to_google,
|
|
|
|
name='zerver.views.auth.send_oauth_request_to_google'),
|
|
|
|
url(r'^accounts/login/google/done/$', zerver.views.auth.finish_google_oauth2, name='zerver.views.auth.finish_google_oauth2'),
|
|
|
|
url(r'^accounts/login/subdomain/$', zerver.views.auth.log_into_subdomain, name='zerver.views.auth.log_into_subdomain'),
|
|
|
|
url(r'^accounts/login/local/$', zerver.views.auth.dev_direct_login, name='zerver.views.auth.dev_direct_login'),
|
2012-09-29 00:49:34 +02:00
|
|
|
# We have two entries for accounts/login to allow reverses on the Django
|
|
|
|
# view we're wrapping to continue to function.
|
2016-10-27 14:52:56 +02:00
|
|
|
url(r'^accounts/login/', zerver.views.auth.login_page, {'template_name': 'zerver/login.html'}, name='zerver.views.auth.login_page'),
|
|
|
|
url(r'^accounts/login/', login, {'template_name': 'zerver/login.html'},
|
|
|
|
name='django.contrib.auth.views.login'),
|
|
|
|
url(r'^accounts/logout/', zerver.views.auth.logout_then_login, name='zerver.views.auth.logout_then_login'),
|
2016-10-12 04:50:38 +02:00
|
|
|
|
2016-10-27 14:52:56 +02:00
|
|
|
url(r'^accounts/webathena_kerberos_login/',
|
|
|
|
zerver.views.zephyr.webathena_kerberos_login,
|
|
|
|
name='zerver.views.zephyr.webathena_kerberos_login'),
|
2012-10-16 21:42:40 +02:00
|
|
|
|
2016-10-27 14:52:56 +02:00
|
|
|
url(r'^accounts/password/reset/$', password_reset,
|
2015-11-01 17:10:46 +01:00
|
|
|
{'post_reset_redirect': '/accounts/password/reset/done/',
|
2016-04-28 23:07:41 +02:00
|
|
|
'template_name': 'zerver/reset.html',
|
2017-06-06 05:53:04 +02:00
|
|
|
'email_template_name': '',
|
|
|
|
'subject_template_name': '',
|
2016-04-28 23:07:41 +02:00
|
|
|
'password_reset_form': zerver.forms.ZulipPasswordResetForm,
|
2016-12-01 06:16:45 +01:00
|
|
|
}, name='django.contrib.auth.views.password_reset'),
|
2016-10-27 14:52:56 +02:00
|
|
|
url(r'^accounts/password/reset/done/$', password_reset_done,
|
2013-07-29 23:03:31 +02:00
|
|
|
{'template_name': 'zerver/reset_emailed.html'}),
|
2013-11-01 20:09:17 +01:00
|
|
|
url(r'^accounts/password/reset/(?P<uidb64>[0-9A-Za-z]+)/(?P<token>.+)/$',
|
2016-10-27 14:52:56 +02:00
|
|
|
password_reset_confirm,
|
2016-12-02 00:08:34 +01:00
|
|
|
{'post_reset_redirect': '/accounts/password/done/',
|
2013-11-01 20:09:17 +01:00
|
|
|
'template_name': 'zerver/reset_confirm.html',
|
2016-12-02 00:08:34 +01:00
|
|
|
'set_password_form': zerver.forms.LoggingSetPasswordForm},
|
2016-10-27 14:52:56 +02:00
|
|
|
name='django.contrib.auth.views.password_reset_confirm'),
|
|
|
|
url(r'^accounts/password/done/$', password_reset_complete,
|
2013-07-29 23:03:31 +02:00
|
|
|
{'template_name': 'zerver/reset_done.html'}),
|
2012-11-05 19:53:16 +01:00
|
|
|
|
2013-11-12 22:26:17 +01:00
|
|
|
# Avatar
|
2017-02-23 20:13:56 +01:00
|
|
|
url(r'^avatar/(?P<email_or_id>[\S]+)?/(?P<medium>[\S]+)?', zerver.views.users.avatar, name='zerver.views.users.avatar'),
|
2016-10-24 16:42:43 +02:00
|
|
|
url(r'^avatar/(?P<email_or_id>[\S]+)?', zerver.views.users.avatar, name='zerver.views.users.avatar'),
|
2013-11-12 22:26:17 +01:00
|
|
|
|
2012-10-29 22:16:22 +01:00
|
|
|
# Registration views, require a confirmation ID.
|
2017-04-18 11:50:44 +02:00
|
|
|
url(r'^accounts/register/social/(\w+)$',
|
|
|
|
zerver.views.auth.start_social_signup,
|
|
|
|
name='signup-social'),
|
2017-01-07 21:46:03 +01:00
|
|
|
url(r'^accounts/home/', zerver.views.registration.accounts_home,
|
|
|
|
name='zerver.views.registration.accounts_home'),
|
2013-03-08 19:15:51 +01:00
|
|
|
url(r'^accounts/send_confirm/(?P<email>[\S]+)?',
|
2013-07-29 23:03:31 +02:00
|
|
|
TemplateView.as_view(template_name='zerver/accounts_send_confirm.html'), name='send_confirm'),
|
2017-01-07 21:46:03 +01:00
|
|
|
url(r'^accounts/register/', zerver.views.registration.accounts_register,
|
|
|
|
name='zerver.views.registration.accounts_register'),
|
2016-10-27 14:52:56 +02:00
|
|
|
url(r'^accounts/do_confirm/(?P<confirmation_key>[\w]+)', confirmation.views.confirm, name='confirmation.views.confirm'),
|
2012-10-29 22:16:22 +01:00
|
|
|
|
2017-01-20 12:27:38 +01:00
|
|
|
url(r'^accounts/confirm_new_email/(?P<confirmation_key>[\w]+)',
|
|
|
|
zerver.views.user_settings.confirm_email_change,
|
|
|
|
name='zerver.views.user_settings.confirm_email_change'),
|
|
|
|
|
2016-06-25 00:36:28 +02:00
|
|
|
# Email unsubscription endpoint. Allows for unsubscribing from various types of emails,
|
|
|
|
# including the welcome emails (day 1 & 2), missed PMs, etc.
|
2017-07-07 20:37:09 +02:00
|
|
|
url(r'^accounts/unsubscribe/(?P<email_type>[\w]+)/(?P<confirmation_key>[\w]+)',
|
2016-10-27 14:52:56 +02:00
|
|
|
zerver.views.unsubscribe.email_unsubscribe, name='zerver.views.unsubscribe.email_unsubscribe'),
|
2013-11-25 16:47:19 +01:00
|
|
|
|
2013-01-08 23:26:40 +01:00
|
|
|
# Portico-styled page used to provide email confirmation of terms acceptance.
|
2017-01-07 21:19:52 +01:00
|
|
|
url(r'^accounts/accept_terms/$', zerver.views.home.accounts_accept_terms, name='zerver.views.home.accounts_accept_terms'),
|
2013-01-08 23:26:40 +01:00
|
|
|
|
2016-06-03 01:02:58 +02:00
|
|
|
# Realm Creation
|
2017-01-07 21:46:03 +01:00
|
|
|
url(r'^create_realm/$', zerver.views.registration.create_realm, name='zerver.views.create_realm'),
|
|
|
|
url(r'^create_realm/(?P<creation_key>[\w]+)$', zerver.views.registration.create_realm, name='zerver.views.create_realm'),
|
2016-06-03 01:02:58 +02:00
|
|
|
|
2013-11-06 13:02:47 +01:00
|
|
|
# Login/registration
|
2017-01-07 21:46:03 +01:00
|
|
|
url(r'^register/$', zerver.views.registration.accounts_home, name='register'),
|
2017-01-24 06:21:14 +01:00
|
|
|
url(r'^login/$', zerver.views.auth.login_page, {'template_name': 'zerver/login.html'}, name='zerver.views.auth.login_page'),
|
2013-05-16 21:24:11 +02:00
|
|
|
|
2017-03-15 00:13:00 +01:00
|
|
|
# A registration page that passes through the Realm.string_id, for totally open realms.
|
2017-01-07 21:46:03 +01:00
|
|
|
url(r'^register/(?P<realm_str>\S+)/$', zerver.views.registration.accounts_home_with_realm_str,
|
|
|
|
name='zerver.views.registration.accounts_home_with_realm_str'),
|
2013-08-02 20:32:56 +02:00
|
|
|
|
2013-02-06 20:25:04 +01:00
|
|
|
# API and integrations documentation
|
2016-08-14 09:44:12 +02:00
|
|
|
url(r'^api/$', APIView.as_view(template_name='zerver/api.html')),
|
2016-10-27 14:52:56 +02:00
|
|
|
url(r'^api/endpoints/$', zerver.views.integrations.api_endpoint_docs, name='zerver.views.integrations.api_endpoint_docs'),
|
2016-07-29 15:06:41 +02:00
|
|
|
url(r'^integrations/$', IntegrationView.as_view()),
|
2017-07-12 02:50:27 +02:00
|
|
|
url(r'^integrations/doc/(?P<integration_name>[^/]*)$', zerver.views.integrations.integration_doc,
|
|
|
|
name="zerver.views.integrations.integration_doc"),
|
2016-09-09 19:25:15 +02:00
|
|
|
url(r'^about/$', TemplateView.as_view(template_name='zerver/about.html')),
|
2017-06-06 03:01:56 +02:00
|
|
|
url(r'^apps/$', zerver.views.home.apps_view, name='zerver.views.home.apps_view'),
|
2013-02-04 20:01:45 +01:00
|
|
|
|
2016-11-08 12:01:19 +01:00
|
|
|
url(r'^robots\.txt$', RedirectView.as_view(url='/static/robots.txt', permanent=True)),
|
2013-11-21 18:05:25 +01:00
|
|
|
|
|
|
|
# Landing page, features pages, signup form, etc.
|
2017-01-06 18:56:36 +01:00
|
|
|
url(r'^hello/$', TemplateView.as_view(template_name='zerver/hello.html'), name='landing-page'),
|
2016-11-08 12:01:19 +01:00
|
|
|
url(r'^new-user/$', RedirectView.as_view(url='/hello', permanent=True)),
|
2013-11-21 18:05:25 +01:00
|
|
|
url(r'^features/$', TemplateView.as_view(template_name='zerver/features.html')),
|
2017-07-19 05:45:45 +02:00
|
|
|
url(r'^why-zulip/$', TemplateView.as_view(template_name='zerver/why-zulip.html')),
|
2017-06-19 00:47:02 +02:00
|
|
|
url(r'^for/open-source/$', TemplateView.as_view(template_name='zerver/for-open-source.html')),
|
2017-01-07 21:46:03 +01:00
|
|
|
url(r'^find_my_team/$', zerver.views.registration.find_my_team, name='zerver.views.registration.find_my_team'),
|
2017-04-10 12:55:43 +02:00
|
|
|
url(r'^authors/$', zerver.views.users.authors_view, name='zerver.views.users.authors_view'),
|
2016-05-19 17:33:30 +02:00
|
|
|
|
2017-04-10 12:55:43 +02:00
|
|
|
# Terms of service and privacy pages.
|
|
|
|
url(r'^terms/$', TemplateView.as_view(template_name='zerver/terms.html'), name='terms'),
|
|
|
|
url(r'^privacy/$', TemplateView.as_view(template_name='zerver/privacy.html'), name='privacy'),
|
|
|
|
]
|
2016-05-11 19:01:53 +02:00
|
|
|
|
2016-06-24 01:20:37 +02:00
|
|
|
# Make a copy of i18n_urls so that they appear without prefix for english
|
2016-06-25 00:38:41 +02:00
|
|
|
urls = list(i18n_urls)
|
2013-03-18 21:49:59 +01:00
|
|
|
|
2016-06-25 00:36:28 +02:00
|
|
|
# These endpoints constitute the redesigned API (V1), which uses:
|
|
|
|
# * REST verbs
|
|
|
|
# * Basic auth (username:password is email:apiKey)
|
|
|
|
# * Take and return json-formatted data
|
2016-06-24 01:20:37 +02:00
|
|
|
#
|
|
|
|
# If you're adding a new endpoint to the code that requires authentication,
|
|
|
|
# please add it here.
|
|
|
|
# See rest_dispatch in zerver.lib.rest for an explanation of auth methods used
|
|
|
|
#
|
2016-11-20 04:10:23 +01:00
|
|
|
# All of these paths are accessed by either a /json or /api/v1 prefix
|
2016-06-24 02:26:09 +02:00
|
|
|
v1_api_and_json_patterns = [
|
2016-06-25 00:54:47 +02:00
|
|
|
# realm-level calls
|
2016-10-27 14:52:56 +02:00
|
|
|
url(r'^realm$', rest_dispatch,
|
2016-07-26 23:16:20 +02:00
|
|
|
{'PATCH': 'zerver.views.realm.update_realm'}),
|
2016-06-24 01:20:37 +02:00
|
|
|
|
2013-11-08 17:53:41 +01:00
|
|
|
# Returns a 204, used by desktop app to verify connectivity status
|
2017-01-07 21:46:03 +01:00
|
|
|
url(r'generate_204$', zerver.views.registration.generate_204, name='zerver.views.registration.generate_204'),
|
2016-06-24 02:26:09 +02:00
|
|
|
|
2017-03-31 21:14:11 +02:00
|
|
|
# realm/domains -> zerver.views.realm_domains
|
2016-12-26 19:19:02 +01:00
|
|
|
url(r'^realm/domains$', rest_dispatch,
|
2017-03-31 21:14:11 +02:00
|
|
|
{'GET': 'zerver.views.realm_domains.list_realm_domains',
|
|
|
|
'POST': 'zerver.views.realm_domains.create_realm_domain'}),
|
2017-01-21 09:09:27 +01:00
|
|
|
url(r'^realm/domains/(?P<domain>\S+)$', rest_dispatch,
|
2017-03-31 21:14:11 +02:00
|
|
|
{'PATCH': 'zerver.views.realm_domains.patch_realm_domain',
|
|
|
|
'DELETE': 'zerver.views.realm_domains.delete_realm_domain'}),
|
2016-12-26 19:19:02 +01:00
|
|
|
|
2016-06-25 00:54:47 +02:00
|
|
|
# realm/emoji -> zerver.views.realm_emoji
|
2016-10-27 14:52:56 +02:00
|
|
|
url(r'^realm/emoji$', rest_dispatch,
|
2017-01-17 08:38:25 +01:00
|
|
|
{'GET': 'zerver.views.realm_emoji.list_emoji'}),
|
|
|
|
url(r'^realm/emoji/(?P<emoji_name>.*)$', rest_dispatch,
|
2017-07-05 19:13:11 +02:00
|
|
|
{'POST': 'zerver.views.realm_emoji.upload_emoji',
|
2017-01-17 08:38:25 +01:00
|
|
|
'DELETE': 'zerver.views.realm_emoji.delete_emoji'}),
|
2016-06-24 02:26:09 +02:00
|
|
|
|
2017-02-21 03:41:20 +01:00
|
|
|
# realm/icon -> zerver.views.realm_icon
|
|
|
|
url(r'^realm/icon$', rest_dispatch,
|
2017-07-05 19:02:54 +02:00
|
|
|
{'POST': 'zerver.views.realm_icon.upload_icon',
|
2017-02-21 03:41:20 +01:00
|
|
|
'DELETE': 'zerver.views.realm_icon.delete_icon_backend',
|
|
|
|
'GET': 'zerver.views.realm_icon.get_icon_backend'}),
|
|
|
|
|
2016-02-13 19:17:15 +01:00
|
|
|
# realm/filters -> zerver.views.realm_filters
|
|
|
|
url(r'^realm/filters$', rest_dispatch,
|
|
|
|
{'GET': 'zerver.views.realm_filters.list_filters',
|
|
|
|
'POST': 'zerver.views.realm_filters.create_filter'}),
|
|
|
|
url(r'^realm/filters/(?P<filter_id>\d+)$', rest_dispatch,
|
|
|
|
{'DELETE': 'zerver.views.realm_filters.delete_filter'}),
|
|
|
|
|
2017-03-17 10:07:22 +01:00
|
|
|
# realm/profile_fields -> zerver.views.custom_profile_fields
|
|
|
|
url(r'^realm/profile_fields$', rest_dispatch,
|
|
|
|
{'GET': 'zerver.views.custom_profile_fields.list_realm_custom_profile_fields',
|
|
|
|
'POST': 'zerver.views.custom_profile_fields.create_realm_custom_profile_field'}),
|
|
|
|
url(r'^realm/profile_fields/(?P<field_id>\d+)$', rest_dispatch,
|
|
|
|
{'PATCH': 'zerver.views.custom_profile_fields.update_realm_custom_profile_field',
|
|
|
|
'DELETE': 'zerver.views.custom_profile_fields.delete_realm_custom_profile_field'}),
|
|
|
|
|
2016-06-25 00:54:47 +02:00
|
|
|
# users -> zerver.views.users
|
2017-02-19 00:18:19 +01:00
|
|
|
#
|
|
|
|
# Since some of these endpoints do something different if used on
|
|
|
|
# yourself with `/me` as the email, we need to make sure that we
|
|
|
|
# don't accidentally trigger these. The cleanest way to do that
|
|
|
|
# is to add a regular expression assertion that it isn't `/me/`
|
|
|
|
# (or ends with `/me`, in the case of hitting the root URL).
|
2016-10-27 14:52:56 +02:00
|
|
|
url(r'^users$', rest_dispatch,
|
2016-06-24 02:26:09 +02:00
|
|
|
{'GET': 'zerver.views.users.get_members_backend',
|
2016-12-31 08:07:22 +01:00
|
|
|
'POST': 'zerver.views.users.create_user_backend'}),
|
2017-02-19 00:18:19 +01:00
|
|
|
url(r'^users/(?!me/)(?P<email>[^/]*)/reactivate$', rest_dispatch,
|
2016-06-24 02:26:09 +02:00
|
|
|
{'POST': 'zerver.views.users.reactivate_user_backend'}),
|
2017-02-19 00:18:19 +01:00
|
|
|
url(r'^users/(?!me/)(?P<email>[^/]*)/presence$', rest_dispatch,
|
2017-02-11 08:38:16 +01:00
|
|
|
{'GET': 'zerver.views.presence.get_presence_backend'}),
|
2017-02-19 00:18:19 +01:00
|
|
|
url(r'^users/(?!me$)(?P<email>[^/]*)$', rest_dispatch,
|
2016-06-24 02:26:09 +02:00
|
|
|
{'PATCH': 'zerver.views.users.update_user_backend',
|
|
|
|
'DELETE': 'zerver.views.users.deactivate_user_backend'}),
|
2016-10-27 14:52:56 +02:00
|
|
|
url(r'^bots$', rest_dispatch,
|
2016-06-24 02:26:09 +02:00
|
|
|
{'GET': 'zerver.views.users.get_bots_backend',
|
|
|
|
'POST': 'zerver.views.users.add_bot_backend'}),
|
2017-02-19 00:18:19 +01:00
|
|
|
url(r'^bots/(?!me/)(?P<email>[^/]*)/api_key/regenerate$', rest_dispatch,
|
2016-06-24 02:26:09 +02:00
|
|
|
{'POST': 'zerver.views.users.regenerate_bot_api_key'}),
|
2017-02-19 00:18:19 +01:00
|
|
|
url(r'^bots/(?!me/)(?P<email>[^/]*)$', rest_dispatch,
|
2016-06-24 02:26:09 +02:00
|
|
|
{'PATCH': 'zerver.views.users.patch_bot_backend',
|
|
|
|
'DELETE': 'zerver.views.users.deactivate_bot_backend'}),
|
|
|
|
|
2016-06-25 00:54:47 +02:00
|
|
|
# messages -> zerver.views.messages
|
2013-12-12 18:36:32 +01:00
|
|
|
# GET returns messages, possibly filtered, POST sends a message
|
2016-10-27 14:52:56 +02:00
|
|
|
url(r'^messages$', rest_dispatch,
|
2017-03-24 07:51:46 +01:00
|
|
|
{'GET': 'zerver.views.messages.get_messages_backend',
|
2016-06-24 02:26:09 +02:00
|
|
|
'POST': 'zerver.views.messages.send_message_backend'}),
|
2016-12-21 20:31:16 +01:00
|
|
|
url(r'^messages/(?P<message_id>[0-9]+)$', rest_dispatch,
|
2016-12-22 10:17:49 +01:00
|
|
|
{'GET': 'zerver.views.messages.json_fetch_raw_message',
|
2017-05-14 21:14:26 +02:00
|
|
|
'PATCH': 'zerver.views.messages.update_message_backend',
|
|
|
|
'DELETE': 'zerver.views.messages.delete_message_backend'}),
|
2016-10-27 14:52:56 +02:00
|
|
|
url(r'^messages/render$', rest_dispatch,
|
2017-01-13 01:10:19 +01:00
|
|
|
{'POST': 'zerver.views.messages.render_message_backend'}),
|
2016-10-27 14:52:56 +02:00
|
|
|
url(r'^messages/flags$', rest_dispatch,
|
2016-06-24 02:26:09 +02:00
|
|
|
{'POST': 'zerver.views.messages.update_message_flags'}),
|
2017-02-20 00:19:29 +01:00
|
|
|
url(r'^messages/(?P<message_id>\d+)/history$', rest_dispatch,
|
|
|
|
{'GET': 'zerver.views.messages.get_message_edit_history'}),
|
2016-06-24 02:26:09 +02:00
|
|
|
|
2017-05-09 07:01:42 +02:00
|
|
|
url(r'^users/me/subscriptions/properties$', rest_dispatch,
|
|
|
|
{'POST': 'zerver.views.streams.update_subscription_properties_backend'}),
|
|
|
|
|
2017-05-09 22:29:59 +02:00
|
|
|
url(r'users/me/subscriptions/(?P<stream_id>\d+)$', rest_dispatch,
|
|
|
|
{'PATCH': 'zerver.views.streams.update_subscriptions_property'}),
|
|
|
|
|
2016-11-03 18:49:00 +01:00
|
|
|
# reactions -> zerver.view.reactions
|
2016-12-04 10:50:32 +01:00
|
|
|
# PUT adds a reaction to a message
|
2016-11-30 08:14:46 +01:00
|
|
|
# DELETE removes a reaction from a message
|
2017-01-17 08:54:50 +01:00
|
|
|
url(r'^messages/(?P<message_id>[0-9]+)/emoji_reactions/(?P<emoji_name>.*)$',
|
2016-12-04 10:50:32 +01:00
|
|
|
rest_dispatch,
|
|
|
|
{'PUT': 'zerver.views.reactions.add_reaction_backend',
|
2016-11-30 08:14:46 +01:00
|
|
|
'DELETE': 'zerver.views.reactions.remove_reaction_backend'}),
|
2016-11-03 18:49:00 +01:00
|
|
|
|
2016-12-28 14:46:42 +01:00
|
|
|
# attachments -> zerver.views.attachments
|
|
|
|
url(r'^attachments$', rest_dispatch,
|
|
|
|
{'GET': 'zerver.views.attachments.list_by_user'}),
|
|
|
|
url(r'^attachments/(?P<attachment_id>[0-9]+)$', rest_dispatch,
|
|
|
|
{'DELETE': 'zerver.views.attachments.remove'}),
|
|
|
|
|
2016-10-12 20:57:59 +02:00
|
|
|
# typing -> zerver.views.typing
|
|
|
|
# POST sends a typing notification event to recipients
|
2016-10-27 14:52:56 +02:00
|
|
|
url(r'^typing$', rest_dispatch,
|
2016-10-12 20:57:59 +02:00
|
|
|
{'POST': 'zerver.views.typing.send_notification_backend'}),
|
|
|
|
|
2016-06-25 11:05:59 +02:00
|
|
|
# user_uploads -> zerver.views.upload
|
2016-10-27 14:52:56 +02:00
|
|
|
url(r'^user_uploads$', rest_dispatch,
|
2016-06-25 11:05:59 +02:00
|
|
|
{'POST': 'zerver.views.upload.upload_file_backend'}),
|
|
|
|
|
2016-06-25 00:54:47 +02:00
|
|
|
# users/me -> zerver.views
|
2016-10-27 14:52:56 +02:00
|
|
|
url(r'^users/me$', rest_dispatch,
|
2016-12-15 12:22:24 +01:00
|
|
|
{'GET': 'zerver.views.users.get_profile_backend',
|
2016-11-30 21:55:59 +01:00
|
|
|
'DELETE': 'zerver.views.users.deactivate_user_own_backend'}),
|
2016-12-31 08:54:00 +01:00
|
|
|
# PUT is currently used by mobile apps, we intend to remove the PUT version
|
|
|
|
# as soon as possible. POST exists to correct the erroneous use of PUT.
|
2016-10-27 14:52:56 +02:00
|
|
|
url(r'^users/me/pointer$', rest_dispatch,
|
2016-09-14 02:20:36 +02:00
|
|
|
{'GET': 'zerver.views.pointer.get_pointer_backend',
|
2016-12-31 08:54:00 +01:00
|
|
|
'PUT': 'zerver.views.pointer.update_pointer_backend',
|
|
|
|
'POST': 'zerver.views.pointer.update_pointer_backend'}),
|
2016-10-27 14:52:56 +02:00
|
|
|
url(r'^users/me/presence$', rest_dispatch,
|
2016-07-26 23:26:39 +02:00
|
|
|
{'POST': 'zerver.views.presence.update_active_status_backend'}),
|
2016-06-25 01:04:14 +02:00
|
|
|
# Endpoint used by mobile devices to register their push
|
|
|
|
# notification credentials
|
2016-10-27 14:52:56 +02:00
|
|
|
url(r'^users/me/apns_device_token$', rest_dispatch,
|
2016-07-26 23:43:38 +02:00
|
|
|
{'POST': 'zerver.views.push_notifications.add_apns_device_token',
|
|
|
|
'DELETE': 'zerver.views.push_notifications.remove_apns_device_token'}),
|
2016-10-27 14:52:56 +02:00
|
|
|
url(r'^users/me/android_gcm_reg_id$', rest_dispatch,
|
2016-07-26 23:43:38 +02:00
|
|
|
{'POST': 'zerver.views.push_notifications.add_android_reg_id',
|
|
|
|
'DELETE': 'zerver.views.push_notifications.remove_android_reg_id'}),
|
2016-06-24 02:26:09 +02:00
|
|
|
|
2016-06-25 00:54:47 +02:00
|
|
|
# users/me -> zerver.views.user_settings
|
2016-10-27 14:52:56 +02:00
|
|
|
url(r'^users/me/api_key/regenerate$', rest_dispatch,
|
2016-06-24 02:26:09 +02:00
|
|
|
{'POST': 'zerver.views.user_settings.regenerate_api_key'}),
|
2016-10-27 14:52:56 +02:00
|
|
|
url(r'^users/me/enter-sends$', rest_dispatch,
|
2016-06-24 02:26:09 +02:00
|
|
|
{'POST': 'zerver.views.user_settings.change_enter_sends'}),
|
2016-12-21 21:29:46 +01:00
|
|
|
url(r'^users/me/avatar$', rest_dispatch,
|
2017-07-05 19:15:15 +02:00
|
|
|
{'POST': 'zerver.views.user_settings.set_avatar_backend',
|
2016-12-21 18:34:03 +01:00
|
|
|
'DELETE': 'zerver.views.user_settings.delete_avatar_backend'}),
|
2016-12-22 18:29:14 +01:00
|
|
|
|
2017-01-24 01:48:35 +01:00
|
|
|
# users/me/hotspots -> zerver.views.hotspots
|
|
|
|
url(r'^users/me/hotspots$', rest_dispatch,
|
|
|
|
{'POST': 'zerver.views.hotspots.mark_hotspot_as_read'}),
|
|
|
|
|
2016-12-22 18:29:14 +01:00
|
|
|
# settings -> zerver.views.user_settings
|
2017-07-31 20:44:52 +02:00
|
|
|
url(r'^settings$', rest_dispatch,
|
|
|
|
{'PATCH': 'zerver.views.user_settings.json_change_settings'}),
|
2016-12-22 09:54:27 +01:00
|
|
|
url(r'^settings/display$', rest_dispatch,
|
2016-12-22 15:57:06 +01:00
|
|
|
{'PATCH': 'zerver.views.user_settings.update_display_settings_backend'}),
|
2016-12-22 18:29:14 +01:00
|
|
|
url(r'^settings/notifications$', rest_dispatch,
|
|
|
|
{'PATCH': 'zerver.views.user_settings.json_change_notify_settings'}),
|
2016-12-22 03:36:18 +01:00
|
|
|
url(r'^settings/ui$', rest_dispatch,
|
|
|
|
{'PATCH': 'zerver.views.user_settings.json_change_ui_settings'}),
|
2016-06-25 00:51:07 +02:00
|
|
|
|
2016-06-25 00:54:47 +02:00
|
|
|
# users/me/alert_words -> zerver.views.alert_words
|
2016-10-27 14:52:56 +02:00
|
|
|
url(r'^users/me/alert_words$', rest_dispatch,
|
2016-06-24 02:26:09 +02:00
|
|
|
{'GET': 'zerver.views.alert_words.list_alert_words',
|
|
|
|
'POST': 'zerver.views.alert_words.set_alert_words',
|
|
|
|
'PUT': 'zerver.views.alert_words.add_alert_words',
|
|
|
|
'DELETE': 'zerver.views.alert_words.remove_alert_words'}),
|
2015-11-24 04:56:24 +01:00
|
|
|
|
2017-03-17 10:07:22 +01:00
|
|
|
# users/me/custom_profile_data -> zerver.views.custom_profile_data
|
|
|
|
url(r'^users/me/profile_data$', rest_dispatch,
|
|
|
|
{'PATCH': 'zerver.views.custom_profile_fields.update_user_custom_profile_data'}),
|
|
|
|
|
2016-10-27 14:52:56 +02:00
|
|
|
url(r'^users/me/(?P<stream_id>\d+)/topics$', rest_dispatch,
|
2016-10-27 15:54:49 +02:00
|
|
|
{'GET': 'zerver.views.streams.get_topics_backend'}),
|
|
|
|
|
|
|
|
|
2016-06-25 00:54:47 +02:00
|
|
|
# streams -> zerver.views.streams
|
2016-10-25 22:45:39 +02:00
|
|
|
# (this API is only used externally)
|
2016-10-27 14:52:56 +02:00
|
|
|
url(r'^streams$', rest_dispatch,
|
2016-06-24 02:26:09 +02:00
|
|
|
{'GET': 'zerver.views.streams.get_streams_backend'}),
|
2016-10-25 22:45:39 +02:00
|
|
|
|
2017-01-03 18:31:43 +01:00
|
|
|
# GET returns `stream_id`, stream name should be encoded in the url query (in `stream` param)
|
|
|
|
url(r'^get_stream_id', rest_dispatch,
|
|
|
|
{'GET': 'zerver.views.streams.json_get_stream_id'}),
|
|
|
|
|
2015-11-23 14:35:16 +01:00
|
|
|
# GET returns "stream info" (undefined currently?), HEAD returns whether stream exists (200 or 404)
|
2016-12-30 11:42:59 +01:00
|
|
|
url(r'^streams/(?P<stream_id>\d+)/members$', rest_dispatch,
|
2016-06-24 02:26:09 +02:00
|
|
|
{'GET': 'zerver.views.streams.get_subscribers_backend'}),
|
2016-12-30 11:42:59 +01:00
|
|
|
url(r'^streams/(?P<stream_id>\d+)$', rest_dispatch,
|
2017-01-30 02:29:21 +01:00
|
|
|
{'PATCH': 'zerver.views.streams.update_stream_backend',
|
2016-06-24 02:26:09 +02:00
|
|
|
'DELETE': 'zerver.views.streams.deactivate_stream_backend'}),
|
2016-10-27 14:52:56 +02:00
|
|
|
url(r'^default_streams$', rest_dispatch,
|
2016-12-31 08:31:34 +01:00
|
|
|
{'POST': 'zerver.views.streams.add_default_stream',
|
2016-06-24 02:26:09 +02:00
|
|
|
'DELETE': 'zerver.views.streams.remove_default_stream'}),
|
2015-11-23 14:35:16 +01:00
|
|
|
# GET lists your streams, POST bulk adds, PATCH bulk modifies/removes
|
2016-10-27 14:52:56 +02:00
|
|
|
url(r'^users/me/subscriptions$', rest_dispatch,
|
2016-06-24 02:26:09 +02:00
|
|
|
{'GET': 'zerver.views.streams.list_subscriptions_backend',
|
|
|
|
'POST': 'zerver.views.streams.add_subscriptions_backend',
|
2016-12-23 02:37:10 +01:00
|
|
|
'PATCH': 'zerver.views.streams.update_subscriptions_backend',
|
|
|
|
'DELETE': 'zerver.views.streams.remove_subscriptions_backend'}),
|
2017-01-10 01:23:53 +01:00
|
|
|
# muting -> zerver.views.muting
|
|
|
|
url(r'^users/me/subscriptions/muted_topics$', rest_dispatch,
|
2017-03-13 22:05:35 +01:00
|
|
|
{'POST': 'zerver.views.muting.set_muted_topics',
|
|
|
|
'PATCH': 'zerver.views.muting.update_muted_topic'}),
|
2015-11-23 14:35:16 +01:00
|
|
|
|
2016-06-24 02:26:09 +02:00
|
|
|
# used to register for an event queue in tornado
|
2016-10-27 14:52:56 +02:00
|
|
|
url(r'^register$', rest_dispatch,
|
2017-02-20 07:53:47 +01:00
|
|
|
{'POST': 'zerver.views.events_register.events_register_backend'}),
|
2016-06-25 00:51:07 +02:00
|
|
|
|
2016-11-27 06:50:54 +01:00
|
|
|
# events -> zerver.tornado.views
|
2016-10-27 14:52:56 +02:00
|
|
|
url(r'^events$', rest_dispatch,
|
2016-11-27 06:50:54 +01:00
|
|
|
{'GET': 'zerver.tornado.views.get_events_backend',
|
|
|
|
'DELETE': 'zerver.tornado.views.cleanup_event_queue'}),
|
2016-06-24 02:26:09 +02:00
|
|
|
]
|
2013-11-05 23:50:19 +01:00
|
|
|
|
2016-06-25 00:33:50 +02:00
|
|
|
# Include the dual-use patterns twice
|
2016-06-25 00:38:41 +02:00
|
|
|
urls += [
|
2016-06-25 00:33:50 +02:00
|
|
|
url(r'^api/v1/', include(v1_api_and_json_patterns)),
|
|
|
|
url(r'^json/', include(v1_api_and_json_patterns)),
|
|
|
|
]
|
|
|
|
|
2016-06-27 16:41:58 +02:00
|
|
|
# user_uploads -> zerver.views.upload.serve_file_backend
|
|
|
|
#
|
|
|
|
# This url is an exception to the url naming schemes for endpoints. It
|
|
|
|
# supports both API and session cookie authentication, using a single
|
|
|
|
# URL for both (not 'api/v1/' or 'json/' prefix). This is required to
|
|
|
|
# easily support the mobile apps fetching uploaded files without
|
|
|
|
# having to rewrite URLs, and is implemented using the
|
|
|
|
# 'override_api_url_scheme' flag passed to rest_dispatch
|
|
|
|
urls += url(r'^user_uploads/(?P<realm_id_str>(\d*|unk))/(?P<filename>.*)',
|
2016-10-27 14:52:56 +02:00
|
|
|
rest_dispatch,
|
2016-06-27 16:41:58 +02:00
|
|
|
{'GET': ('zerver.views.upload.serve_file_backend',
|
|
|
|
{'override_api_url_scheme'})}),
|
|
|
|
|
2016-06-25 18:30:30 +02:00
|
|
|
# Incoming webhook URLs
|
2016-11-14 21:06:39 +01:00
|
|
|
# We don't create urls for particular git integrations here
|
|
|
|
# because of generic one below
|
2016-07-25 22:12:12 +02:00
|
|
|
for incoming_webhook in WEBHOOK_INTEGRATIONS:
|
2016-11-14 21:06:39 +01:00
|
|
|
if incoming_webhook.url_object:
|
|
|
|
urls.append(incoming_webhook.url_object)
|
|
|
|
|
|
|
|
urls.append(url(r'^api/v1/external/github', github_dispatcher.api_github_webhook_dispatch))
|
2016-06-25 18:30:30 +02:00
|
|
|
|
|
|
|
# Mobile-specific authentication URLs
|
|
|
|
urls += [
|
2017-05-04 01:13:56 +02:00
|
|
|
# This json format view used by the mobile apps lists which
|
|
|
|
# authentication backends the server allows as well as details
|
|
|
|
# like the requested subdomains'd realm icon (if known).
|
|
|
|
url(r'^api/v1/server_settings', zerver.views.auth.api_get_server_settings),
|
|
|
|
# This is a deprecated old version of api/v1/server_settings that only returns auth backends.
|
2016-10-27 14:52:56 +02:00
|
|
|
url(r'^api/v1/get_auth_backends', zerver.views.auth.api_get_auth_backends, name='zerver.views.auth.api_get_auth_backends'),
|
2016-06-21 03:32:23 +02:00
|
|
|
|
2017-01-30 07:21:13 +01:00
|
|
|
# used by mobile apps to check if they are compatible with the server
|
|
|
|
url(r'^compatibility$', zerver.views.compatibility.check_compatibility),
|
|
|
|
|
2016-06-25 18:30:30 +02:00
|
|
|
# This json format view used by the mobile apps accepts a username
|
|
|
|
# password/pair and returns an API key.
|
2016-10-27 14:52:56 +02:00
|
|
|
url(r'^api/v1/fetch_api_key$', zerver.views.auth.api_fetch_api_key, name='zerver.views.auth.api_fetch_api_key'),
|
2016-06-25 18:30:30 +02:00
|
|
|
|
|
|
|
# This is for the signing in through the devAuthBackEnd on mobile apps.
|
2016-10-27 14:52:56 +02:00
|
|
|
url(r'^api/v1/dev_fetch_api_key$', zerver.views.auth.api_dev_fetch_api_key, name='zerver.views.auth.api_dev_fetch_api_key'),
|
2016-06-25 18:30:30 +02:00
|
|
|
# This is for fetching the emails of the admins and the users.
|
2016-10-27 14:52:56 +02:00
|
|
|
url(r'^api/v1/dev_get_emails$', zerver.views.auth.api_dev_get_emails, name='zerver.views.auth.api_dev_get_emails'),
|
2016-06-25 18:30:30 +02:00
|
|
|
|
|
|
|
# Used to present the GOOGLE_CLIENT_ID to mobile apps
|
2016-10-27 14:52:56 +02:00
|
|
|
url(r'^api/v1/fetch_google_client_id$',
|
|
|
|
zerver.views.auth.api_fetch_google_client_id,
|
|
|
|
name='zerver.views.auth.api_fetch_google_client_id'),
|
2016-06-25 18:30:30 +02:00
|
|
|
]
|
|
|
|
|
2017-04-18 17:28:55 +02:00
|
|
|
# View for uploading messages from email mirror
|
|
|
|
urls += [
|
|
|
|
url(r'^email_mirror_message$', zerver.views.email_mirror.email_mirror_message,
|
|
|
|
name='zerver.views.email_mirror.email_mirror_message'),
|
|
|
|
]
|
|
|
|
|
2016-04-27 06:39:34 +02:00
|
|
|
# Include URL configuration files for site-specified extra installed
|
|
|
|
# Django apps
|
|
|
|
for app_name in settings.EXTRA_INSTALLED_APPS:
|
|
|
|
app_dir = os.path.join(settings.DEPLOY_ROOT, app_name)
|
|
|
|
if os.path.exists(os.path.join(app_dir, 'urls.py')):
|
2016-06-25 00:38:41 +02:00
|
|
|
urls += [url(r'^', include('%s.urls' % (app_name,)))]
|
2016-05-19 17:33:30 +02:00
|
|
|
i18n_urls += import_string("{}.urls.i18n_urlpatterns".format(app_name))
|
2013-07-05 20:04:47 +02:00
|
|
|
|
2016-06-25 00:38:41 +02:00
|
|
|
# Tornado views
|
|
|
|
urls += [
|
2012-10-09 22:21:03 +02:00
|
|
|
# Used internally for communication between Django and Tornado processes
|
2016-11-27 06:50:54 +01:00
|
|
|
url(r'^notify_tornado$', zerver.tornado.views.notify, name='zerver.tornado.views.notify'),
|
2016-06-24 01:02:44 +02:00
|
|
|
]
|
2012-10-15 22:47:52 +02:00
|
|
|
|
2016-07-20 13:33:27 +02:00
|
|
|
# Python Social Auth
|
2017-01-21 16:52:59 +01:00
|
|
|
urls += [url(r'^', include('social_django.urls', namespace='social'))]
|
2016-07-20 13:33:27 +02:00
|
|
|
|
2016-11-09 01:45:36 +01:00
|
|
|
# User documentation site
|
|
|
|
urls += [url(r'^help/(?P<article>.*)$', HelpView.as_view(template_name='zerver/help/main.html'))]
|
|
|
|
|
2015-08-21 08:55:12 +02:00
|
|
|
if settings.DEVELOPMENT:
|
2016-06-25 03:44:32 +02:00
|
|
|
urls += dev_urls.urls
|
2016-06-25 19:04:36 +02:00
|
|
|
i18n_urls += dev_urls.i18n_urls
|
2016-06-25 00:33:07 +02:00
|
|
|
|
2016-05-19 17:33:30 +02:00
|
|
|
# The sequence is important; if i18n urls don't come first then
|
|
|
|
# reverse url mapping points to i18n urls which causes the frontend
|
|
|
|
# tests to fail
|
2016-06-25 00:38:41 +02:00
|
|
|
urlpatterns = i18n_patterns(*i18n_urls) + urls + legacy_urls
|