2012-08-28 21:31:32 +02:00
|
|
|
from django.conf import settings
|
2013-07-05 20:04:47 +02:00
|
|
|
from django.conf.urls import patterns, 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-24 01:06:20 +02:00
|
|
|
from zproject.legacy_urls import legacy_urls
|
2012-08-28 18:44:51 +02:00
|
|
|
|
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 = [
|
2013-07-29 23:03:31 +02:00
|
|
|
url(r'^$', 'zerver.views.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
|
2013-11-12 21:01:55 +01:00
|
|
|
url(r'^desktop_home/$', 'zerver.views.desktop_home'),
|
2013-11-07 19:48:21 +01:00
|
|
|
|
2013-11-22 17:12:43 +01:00
|
|
|
url(r'^accounts/login/sso/$', 'zerver.views.remote_user_sso', name='login-sso'),
|
2014-03-28 00:49:20 +01:00
|
|
|
url(r'^accounts/login/jwt/$', 'zerver.views.remote_user_jwt', name='login-jwt'),
|
2015-01-29 08:59:41 +01:00
|
|
|
url(r'^accounts/login/google/$', 'zerver.views.start_google_oauth2'),
|
|
|
|
url(r'^accounts/login/google/done/$', 'zerver.views.finish_google_oauth2'),
|
2015-08-19 02:58:20 +02:00
|
|
|
url(r'^accounts/login/local/$', 'zerver.views.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.
|
2013-07-29 23:03:31 +02:00
|
|
|
url(r'^accounts/login/', 'zerver.views.login_page', {'template_name': 'zerver/login.html'}),
|
|
|
|
url(r'^accounts/login/', 'django.contrib.auth.views.login', {'template_name': 'zerver/login.html'}),
|
|
|
|
url(r'^accounts/logout/', 'zerver.views.logout_then_login'),
|
2013-08-23 20:49:06 +02:00
|
|
|
url(r'^accounts/webathena_kerberos_login/', 'zerver.views.webathena_kerberos_login'),
|
2012-10-16 21:42:40 +02:00
|
|
|
|
2012-11-05 19:53:16 +01:00
|
|
|
url(r'^accounts/password/reset/$', 'django.contrib.auth.views.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',
|
|
|
|
'email_template_name': 'registration/password_reset_email.txt',
|
|
|
|
'password_reset_form': zerver.forms.ZulipPasswordResetForm,
|
|
|
|
}),
|
2012-11-05 19:53:16 +01:00
|
|
|
url(r'^accounts/password/reset/done/$', 'django.contrib.auth.views.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>.+)/$',
|
|
|
|
'django.contrib.auth.views.password_reset_confirm',
|
|
|
|
{'post_reset_redirect' : '/accounts/password/done/',
|
|
|
|
'template_name': 'zerver/reset_confirm.html',
|
2013-07-29 23:03:31 +02:00
|
|
|
'set_password_form' : zerver.forms.LoggingSetPasswordForm}),
|
2012-11-05 19:53:16 +01:00
|
|
|
url(r'^accounts/password/done/$', 'django.contrib.auth.views.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
|
2015-11-24 05:26:33 +01:00
|
|
|
url(r'^avatar/(?P<email>[\S]+)?', '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.
|
2013-07-29 23:03:31 +02:00
|
|
|
url(r'^accounts/home/', 'zerver.views.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'),
|
|
|
|
url(r'^accounts/register/', 'zerver.views.accounts_register'),
|
2012-11-02 16:13:14 +01:00
|
|
|
url(r'^accounts/do_confirm/(?P<confirmation_key>[\w]+)', 'confirmation.views.confirm'),
|
2013-07-29 23:03:31 +02:00
|
|
|
url(r'^invite/$', 'zerver.views.initial_invite_page', name='initial-invite-users'),
|
2012-10-29 22:16:22 +01:00
|
|
|
|
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.
|
2013-11-25 16:47:19 +01:00
|
|
|
url(r'^accounts/unsubscribe/(?P<type>[\w]+)/(?P<token>[\w]+)',
|
|
|
|
'zerver.views.email_unsubscribe'),
|
|
|
|
|
2013-01-08 23:26:40 +01:00
|
|
|
# Portico-styled page used to provide email confirmation of terms acceptance.
|
2013-07-29 23:03:31 +02:00
|
|
|
url(r'^accounts/accept_terms/$', 'zerver.views.accounts_accept_terms'),
|
2013-01-08 23:26:40 +01:00
|
|
|
|
2016-06-03 01:02:58 +02:00
|
|
|
# Realm Creation
|
|
|
|
url(r'^create_realm/$', 'zerver.views.create_realm'),
|
|
|
|
|
2013-11-06 13:02:47 +01:00
|
|
|
# Login/registration
|
2013-07-29 23:03:31 +02:00
|
|
|
url(r'^register/$', 'zerver.views.accounts_home', name='register'),
|
|
|
|
url(r'^login/$', 'zerver.views.login_page', {'template_name': 'zerver/login.html'}),
|
2013-05-16 21:24:11 +02:00
|
|
|
|
2013-08-02 20:32:56 +02:00
|
|
|
# A registration page that passes through the domain, for totally open realms.
|
2013-07-29 23:03:31 +02:00
|
|
|
url(r'^register/(?P<domain>\S+)/$', 'zerver.views.accounts_home_with_domain'),
|
2013-08-02 20:32:56 +02:00
|
|
|
|
2013-02-06 20:25:04 +01:00
|
|
|
# API and integrations documentation
|
2013-07-29 23:03:31 +02:00
|
|
|
url(r'^api/$', TemplateView.as_view(template_name='zerver/api.html')),
|
|
|
|
url(r'^api/endpoints/$', 'zerver.views.api_endpoint_docs'),
|
|
|
|
url(r'^integrations/$', TemplateView.as_view(template_name='zerver/integrations.html')),
|
2013-10-14 18:49:42 +02:00
|
|
|
url(r'^apps/$', TemplateView.as_view(template_name='zerver/apps.html')),
|
2013-02-04 20:01:45 +01:00
|
|
|
|
2013-03-18 21:49:59 +01:00
|
|
|
url(r'^robots\.txt$', RedirectView.as_view(url='/static/robots.txt')),
|
2013-11-21 18:05:25 +01:00
|
|
|
|
|
|
|
# Landing page, features pages, signup form, etc.
|
|
|
|
url(r'^hello/$', TemplateView.as_view(template_name='zerver/hello.html'),
|
|
|
|
name='landing-page'),
|
|
|
|
url(r'^new-user/$', RedirectView.as_view(url='/hello')),
|
|
|
|
url(r'^features/$', TemplateView.as_view(template_name='zerver/features.html')),
|
2016-05-19 17:33:30 +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
|
|
|
|
#
|
|
|
|
# All of these paths are accessed by either a /json or /api prefix
|
2013-07-29 23:03:31 +02:00
|
|
|
v1_api_and_json_patterns = patterns('zerver.views',
|
2016-06-24 01:20:37 +02:00
|
|
|
# zerver.views
|
2015-08-18 20:32:56 +02:00
|
|
|
url(r'^export$', 'rest_dispatch',
|
2016-06-25 00:45:26 +02:00
|
|
|
{'GET': 'export'}),
|
2016-06-25 00:51:07 +02:00
|
|
|
url(r'^realm$', 'rest_dispatch',
|
|
|
|
{'PATCH': '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
|
|
|
|
url(r'generate_204$', 'generate_204'),
|
2016-02-12 21:08:56 +01:00
|
|
|
) + patterns('zerver.views.realm_emoji',
|
|
|
|
url(r'^realm/emoji$', 'rest_dispatch',
|
|
|
|
{'GET': 'list_emoji',
|
|
|
|
'PUT': 'upload_emoji'}),
|
|
|
|
url(r'^realm/emoji/(?P<emoji_name>[0-9a-zA-Z.\-_]+(?<![.\-_]))$', 'rest_dispatch',
|
|
|
|
{'DELETE': 'delete_emoji'}),
|
2015-11-24 05:26:33 +01:00
|
|
|
) + patterns('zerver.views.users',
|
|
|
|
url(r'^users$', 'rest_dispatch',
|
|
|
|
{'GET': 'get_members_backend',
|
|
|
|
'POST': 'create_user_backend'}),
|
2016-06-24 20:57:24 +02:00
|
|
|
url(r'^users/(?P<email>(?!me)[^/]*)/reactivate$', 'rest_dispatch',
|
2015-11-24 05:26:33 +01:00
|
|
|
{'POST': 'reactivate_user_backend'}),
|
2016-06-24 20:57:24 +02:00
|
|
|
url(r'^users/(?P<email>(?!me)[^/]*)$', 'rest_dispatch',
|
2015-11-24 05:26:33 +01:00
|
|
|
{'PATCH': 'update_user_backend',
|
|
|
|
'DELETE': 'deactivate_user_backend'}),
|
|
|
|
url(r'^bots$', 'rest_dispatch',
|
|
|
|
{'GET': 'get_bots_backend',
|
|
|
|
'POST': 'add_bot_backend'}),
|
2016-06-24 20:57:24 +02:00
|
|
|
url(r'^bots/(?P<email>(?!me)[^/]*)/api_key/regenerate$', 'rest_dispatch',
|
2015-11-24 05:26:33 +01:00
|
|
|
{'POST': 'regenerate_bot_api_key'}),
|
2016-06-24 20:57:24 +02:00
|
|
|
url(r'^bots/(?P<email>(?!me)[^/]*)$', 'rest_dispatch',
|
2015-11-24 05:26:33 +01:00
|
|
|
{'PATCH': 'patch_bot_backend',
|
|
|
|
'DELETE': 'deactivate_bot_backend'}),
|
|
|
|
|
2013-12-12 18:36:32 +01:00
|
|
|
) + patterns('zerver.views.messages',
|
|
|
|
# GET returns messages, possibly filtered, POST sends a message
|
|
|
|
url(r'^messages$', 'rest_dispatch',
|
2016-06-25 00:45:26 +02:00
|
|
|
{'GET': 'get_old_messages_backend',
|
|
|
|
'PATCH': 'update_message_backend',
|
|
|
|
'POST': 'send_message_backend'}),
|
2013-12-12 18:36:32 +01:00
|
|
|
url(r'^messages/render$', 'rest_dispatch',
|
2016-06-25 00:45:26 +02:00
|
|
|
{'GET': 'render_message_backend'}),
|
2013-12-12 18:36:32 +01:00
|
|
|
url(r'^messages/flags$', 'rest_dispatch',
|
2016-06-25 00:45:26 +02:00
|
|
|
{'POST': 'update_message_flags'}),
|
2013-12-12 18:36:32 +01:00
|
|
|
|
2016-06-25 00:54:47 +02:00
|
|
|
) + patterns('zerver.views',
|
|
|
|
url(r'^users/me$', 'rest_dispatch',
|
|
|
|
{'GET': 'get_profile_backend'}),
|
|
|
|
url(r'^users/me/pointer$', 'rest_dispatch',
|
|
|
|
{'GET': 'get_pointer_backend',
|
|
|
|
'PUT': 'update_pointer_backend'}),
|
|
|
|
url(r'^users/me/presence$', 'rest_dispatch',
|
|
|
|
{'POST': 'update_active_status_backend'}),
|
|
|
|
# Endpoint used by iOS devices to register their
|
|
|
|
# unique APNS device token
|
|
|
|
url(r'^users/me/apns_device_token$', 'rest_dispatch',
|
|
|
|
{'POST' : 'add_apns_device_token',
|
|
|
|
'DELETE': 'remove_apns_device_token'}),
|
|
|
|
url(r'^users/me/android_gcm_reg_id$', 'rest_dispatch',
|
|
|
|
{'POST': 'add_android_reg_id',
|
|
|
|
'DELETE': 'remove_android_reg_id'}),
|
|
|
|
|
2016-06-25 00:51:07 +02:00
|
|
|
) + patterns('zerver.views.user_settings',
|
|
|
|
url(r'^users/me/api_key/regenerate$', 'rest_dispatch',
|
|
|
|
{'POST': 'regenerate_api_key'}),
|
|
|
|
url(r'^users/me/enter-sends$', 'rest_dispatch',
|
|
|
|
{'POST': 'change_enter_sends'}),
|
|
|
|
|
2015-11-24 04:56:24 +01:00
|
|
|
) + patterns('zerver.views.alert_words',
|
|
|
|
url(r'^users/me/alert_words$', 'rest_dispatch',
|
|
|
|
{'GET': 'list_alert_words',
|
2016-04-01 21:14:10 +02:00
|
|
|
'POST': 'set_alert_words',
|
|
|
|
'PUT': 'add_alert_words',
|
2015-11-24 04:56:24 +01:00
|
|
|
'DELETE': 'remove_alert_words'}),
|
|
|
|
|
2015-11-23 14:35:16 +01:00
|
|
|
) + patterns('zerver.views.streams',
|
|
|
|
url(r'^streams$', 'rest_dispatch',
|
|
|
|
{'GET': 'get_streams_backend'}),
|
|
|
|
# GET returns "stream info" (undefined currently?), HEAD returns whether stream exists (200 or 404)
|
|
|
|
url(r'^streams/(?P<stream_name>.*)/members$', 'rest_dispatch',
|
|
|
|
{'GET': 'get_subscribers_backend'}),
|
|
|
|
url(r'^streams/(?P<stream_name>.*)$', 'rest_dispatch',
|
|
|
|
{'HEAD': 'stream_exists_backend',
|
|
|
|
'GET': 'stream_exists_backend',
|
|
|
|
'PATCH': 'update_stream_backend',
|
|
|
|
'DELETE': 'deactivate_stream_backend'}),
|
|
|
|
url(r'^default_streams$', 'rest_dispatch',
|
2016-05-31 23:19:59 +02:00
|
|
|
{'PUT': 'add_default_stream',
|
2015-11-23 14:35:16 +01:00
|
|
|
'DELETE': 'remove_default_stream'}),
|
|
|
|
# GET lists your streams, POST bulk adds, PATCH bulk modifies/removes
|
|
|
|
url(r'^users/me/subscriptions$', 'rest_dispatch',
|
|
|
|
{'GET': 'list_subscriptions_backend',
|
|
|
|
'POST': 'add_subscriptions_backend',
|
|
|
|
'PATCH': 'update_subscriptions_backend'}),
|
|
|
|
|
2016-06-25 00:51:07 +02:00
|
|
|
) + patterns('zerver.views',
|
|
|
|
# Used to register for an event queue in tornado
|
|
|
|
url(r'^register$', 'rest_dispatch',
|
|
|
|
{'POST': 'api_events_register'}),
|
|
|
|
|
2013-10-25 20:13:17 +02:00
|
|
|
) + patterns('zerver.tornadoviews',
|
2013-07-26 22:30:55 +02:00
|
|
|
url(r'^events$', 'rest_dispatch',
|
2013-11-19 23:11:30 +01:00
|
|
|
{'GET': 'get_events_backend',
|
|
|
|
'DELETE': 'cleanup_event_queue'}),
|
2013-03-18 21:47:37 +01: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-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 += [
|
2016-06-24 01:02:44 +02:00
|
|
|
url(r'^json/get_events$', 'zerver.tornadoviews.json_get_events'),
|
2012-10-09 22:21:03 +02:00
|
|
|
# Used internally for communication between Django and Tornado processes
|
2016-06-24 01:02:44 +02:00
|
|
|
url(r'^notify_tornado$', 'zerver.tornadoviews.notify'),
|
|
|
|
]
|
2012-10-15 22:47:52 +02:00
|
|
|
|
2015-08-21 08:55:12 +02:00
|
|
|
if settings.DEVELOPMENT:
|
2013-01-30 23:35:24 +01:00
|
|
|
use_prod_static = getattr(settings, 'PIPELINE', False)
|
2013-06-24 20:56:44 +02:00
|
|
|
static_root = os.path.join(settings.DEPLOY_ROOT,
|
2013-07-25 22:41:44 +02:00
|
|
|
'prod-static/serve' if use_prod_static else 'static')
|
2013-01-30 23:35:24 +01:00
|
|
|
|
2016-06-25 00:38:41 +02:00
|
|
|
urls += [url(r'^static/(?P<path>.*)$', 'django.views.static.serve',
|
|
|
|
{'document_root': static_root})]
|
2016-05-19 17:33:30 +02:00
|
|
|
|
2016-06-25 00:33:07 +02:00
|
|
|
# These are used for voyager development. On a real voyager instance,
|
|
|
|
# these files would be served by nginx.
|
|
|
|
if settings.DEVELOPMENT and settings.LOCAL_UPLOADS_DIR is not None:
|
2016-06-25 00:38:41 +02:00
|
|
|
urls += [
|
2016-06-25 00:33:07 +02:00
|
|
|
url(r'^user_avatars/(?P<path>.*)$', 'django.views.static.serve',
|
|
|
|
{'document_root': os.path.join(settings.LOCAL_UPLOADS_DIR, "avatars")}),
|
2016-06-25 00:38:41 +02:00
|
|
|
]
|
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
|