2012-08-28 21:31:32 +02:00
|
|
|
from django.conf import settings
|
2012-09-07 19:36:41 +02:00
|
|
|
from django.conf.urls import patterns, url
|
2013-03-08 19:15:51 +01:00
|
|
|
from django.views.generic import TemplateView, RedirectView
|
2012-08-28 21:31:32 +02:00
|
|
|
import os.path
|
2012-12-13 21:08:07 +01:00
|
|
|
import zephyr.forms
|
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:
|
|
|
|
#
|
|
|
|
# - 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.
|
|
|
|
|
2012-08-28 18:44:51 +02:00
|
|
|
urlpatterns = patterns('',
|
2012-11-02 16:13:14 +01:00
|
|
|
url(r'^$', 'zephyr.views.home'),
|
2013-02-20 22:26:06 +01:00
|
|
|
url(r'^accounts/login/openid/$', 'django_openid_auth.views.login_begin', name='openid-login'),
|
|
|
|
url(r'^accounts/login/openid/done/$', 'django_openid_auth.views.login_complete', name='openid-complete'),
|
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.
|
2012-11-02 16:17:25 +01:00
|
|
|
url(r'^accounts/login/', 'zephyr.views.login_page', {'template_name': 'zephyr/login.html'}),
|
|
|
|
url(r'^accounts/login/', 'django.contrib.auth.views.login', {'template_name': 'zephyr/login.html'}),
|
2013-03-05 23:45:02 +01:00
|
|
|
url(r'^accounts/logout/', 'zephyr.views.logout_then_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',
|
|
|
|
{'post_reset_redirect' : '/accounts/password/reset/done/',
|
|
|
|
'template_name': 'zephyr/reset.html',
|
|
|
|
'email_template_name': 'registration/password_reset_email.txt',
|
|
|
|
}),
|
|
|
|
url(r'^accounts/password/reset/done/$', 'django.contrib.auth.views.password_reset_done',
|
|
|
|
{'template_name': 'zephyr/reset_emailed.html'}),
|
|
|
|
url(r'^accounts/password/reset/(?P<uidb36>[0-9A-Za-z]+)-(?P<token>.+)/$', 'django.contrib.auth.views.password_reset_confirm',
|
2012-12-13 21:08:07 +01:00
|
|
|
{'post_reset_redirect' : '/accounts/password/done/', 'template_name': 'zephyr/reset_confirm.html',
|
|
|
|
'set_password_form' : zephyr.forms.LoggingSetPasswordForm}),
|
2012-11-05 19:53:16 +01:00
|
|
|
url(r'^accounts/password/done/$', 'django.contrib.auth.views.password_reset_complete',
|
|
|
|
{'template_name': 'zephyr/reset_done.html'}),
|
|
|
|
|
|
|
|
|
2012-11-09 00:09:58 +01:00
|
|
|
url(r'^activity$', 'zephyr.views.get_activity'),
|
|
|
|
|
2012-10-29 22:16:22 +01:00
|
|
|
# Registration views, require a confirmation ID.
|
2012-11-21 21:14:55 +01:00
|
|
|
url(r'^accounts/home/', 'zephyr.views.accounts_home'),
|
2013-03-08 19:15:51 +01:00
|
|
|
url(r'^accounts/send_confirm/(?P<email>[\S]+)?',
|
|
|
|
TemplateView.as_view(template_name='zephyr/accounts_send_confirm.html'), name='send_confirm'),
|
2012-11-02 16:13:14 +01:00
|
|
|
url(r'^accounts/register/', 'zephyr.views.accounts_register'),
|
|
|
|
url(r'^accounts/do_confirm/(?P<confirmation_key>[\w]+)', 'confirmation.views.confirm'),
|
2012-10-29 22:16:22 +01:00
|
|
|
|
2013-01-08 23:26:40 +01:00
|
|
|
# Portico-styled page used to provide email confirmation of terms acceptance.
|
|
|
|
url(r'^accounts/accept_terms', 'zephyr.views.accounts_accept_terms'),
|
|
|
|
|
2012-10-26 18:59:59 +02:00
|
|
|
# Terms of service and privacy policy
|
2013-03-08 19:15:51 +01:00
|
|
|
url(r'^terms$', TemplateView.as_view(template_name='zephyr/terms.html')),
|
|
|
|
url(r'^privacy$', TemplateView.as_view(template_name='zephyr/privacy.html')),
|
2012-10-26 18:59:59 +02:00
|
|
|
|
2013-02-25 19:30:13 +01:00
|
|
|
# "About Humbug" information
|
2013-03-08 19:15:51 +01:00
|
|
|
url(r'^what-is-humbug$', TemplateView.as_view(template_name='zephyr/what-is-humbug.html')),
|
|
|
|
url(r'^new-user$', TemplateView.as_view(template_name='zephyr/new-user.html')),
|
2012-12-04 16:35:39 +01:00
|
|
|
|
2013-02-06 20:25:04 +01:00
|
|
|
# API and integrations documentation
|
2013-03-08 19:15:51 +01:00
|
|
|
url(r'^api$', TemplateView.as_view(template_name='zephyr/api.html')),
|
|
|
|
url(r'^integrations$', TemplateView.as_view(template_name='zephyr/integrations.html')),
|
|
|
|
url(r'^zephyr$', TemplateView.as_view(template_name='zephyr/zephyr.html')),
|
2013-03-15 19:34:42 +01:00
|
|
|
url(r'^apps$', TemplateView.as_view(template_name='zephyr/apps.html')),
|
2013-02-04 20:01:45 +01:00
|
|
|
|
2013-03-19 16:14:11 +01:00
|
|
|
# Job postings
|
|
|
|
url(r'^jobs$', TemplateView.as_view(template_name='zephyr/jobs/lead-designer.html')),
|
|
|
|
url(r'^jobs/lead-designer$', TemplateView.as_view(template_name='zephyr/jobs/lead-designer.html')),
|
|
|
|
|
2013-03-18 21:49:59 +01:00
|
|
|
url(r'^robots\.txt$', RedirectView.as_view(url='/static/robots.txt')),
|
2013-03-18 21:47:37 +01:00
|
|
|
)
|
2013-03-18 21:49:59 +01:00
|
|
|
|
2013-03-18 21:47:37 +01:00
|
|
|
urlpatterns += patterns('zephyr.views',
|
2012-10-16 21:42:40 +02:00
|
|
|
# These are json format views used by the web client. They require a logged in browser.
|
2013-03-18 21:47:37 +01:00
|
|
|
url(r'^json/update_pointer$', 'json_update_pointer'),
|
|
|
|
url(r'^json/get_old_messages$', 'json_get_old_messages'),
|
|
|
|
url(r'^json/get_public_streams$', 'json_get_public_streams'),
|
|
|
|
url(r'^json/send_message$', 'json_send_message'),
|
|
|
|
url(r'^json/invite_users$', 'json_invite_users'),
|
|
|
|
url(r'^json/settings/change$', 'json_change_settings'),
|
|
|
|
url(r'^json/subscriptions/list$', 'json_list_subscriptions'),
|
|
|
|
url(r'^json/subscriptions/remove$', 'json_remove_subscriptions'),
|
|
|
|
url(r'^json/subscriptions/add$', 'json_add_subscriptions'),
|
|
|
|
url(r'^json/subscriptions/exists$', 'json_stream_exists'),
|
|
|
|
url(r'^json/subscriptions/property$', 'json_subscription_property'),
|
|
|
|
url(r'^json/get_subscribers$', 'json_get_subscribers'),
|
|
|
|
url(r'^json/fetch_api_key$', 'json_fetch_api_key'),
|
|
|
|
url(r'^json/get_members$', 'json_get_members'),
|
|
|
|
url(r'^json/update_active_status$', 'json_update_active_status'),
|
|
|
|
url(r'^json/get_active_statuses$', 'json_get_active_statuses'),
|
|
|
|
url(r'^json/tutorial_send_message$', 'json_tutorial_send_message'),
|
|
|
|
url(r'^json/change_enter_sends$', 'json_change_enter_sends'),
|
|
|
|
url(r'^json/get_profile$', 'json_get_profile'),
|
|
|
|
url(r'^json/report_error$', 'json_report_error'),
|
|
|
|
url(r'^json/update_message_flags$', 'json_update_flags'),
|
2013-03-14 23:21:53 +01:00
|
|
|
url(r'^json/register$', 'json_events_register'),
|
2012-10-16 21:42:40 +02:00
|
|
|
|
|
|
|
# These are json format views used by the API. They require an API key.
|
2013-03-18 21:47:37 +01:00
|
|
|
url(r'^api/v1/get_profile$', 'api_get_profile'),
|
|
|
|
url(r'^api/v1/get_old_messages$', 'api_get_old_messages'),
|
|
|
|
url(r'^api/v1/get_public_streams$', 'api_get_public_streams'),
|
|
|
|
url(r'^api/v1/subscriptions/list$', 'api_list_subscriptions'),
|
|
|
|
url(r'^api/v1/subscriptions/add$', 'api_add_subscriptions'),
|
|
|
|
url(r'^api/v1/subscriptions/remove$', 'api_remove_subscriptions'),
|
|
|
|
url(r'^api/v1/get_subscribers$', 'api_get_subscribers'),
|
|
|
|
url(r'^api/v1/send_message$', 'api_send_message'),
|
|
|
|
url(r'^api/v1/update_pointer$', 'api_update_pointer'),
|
|
|
|
url(r'^api/v1/get_members$', 'api_get_members'),
|
2012-11-02 16:17:25 +01:00
|
|
|
|
2012-10-30 19:39:15 +01:00
|
|
|
# This json format view used by the API accepts a username password/pair and returns an API key.
|
2013-03-18 21:47:37 +01:00
|
|
|
url(r'^api/v1/fetch_api_key$', 'api_fetch_api_key'),
|
2013-03-21 20:19:04 +01:00
|
|
|
|
|
|
|
# JSON format views used by the redesigned API, accept basic auth username:password.
|
|
|
|
# GET returns messages, possibly filtered, POST sends a message
|
|
|
|
url(r'^api/v1/messages$', 'rest_dispatch',
|
|
|
|
{'GET': 'get_old_messages_backend',
|
|
|
|
'POST': 'send_message_backend'}),
|
|
|
|
url(r'^api/v1/streams$', 'rest_dispatch',
|
|
|
|
{'GET': 'get_public_streams_backend'}),
|
|
|
|
# GET returns "stream info" (undefined currently?), HEAD returns whether stream exists (200 or 404)
|
|
|
|
url(r'^api/v1/streams/(?P<stream_name>.*)/members$', 'rest_dispatch',
|
|
|
|
{'GET': 'get_subscribers_backend'}),
|
|
|
|
url(r'^api/v1/streams/(?P<stream_name>.*)$', 'rest_dispatch',
|
|
|
|
{'HEAD': 'stream_exists_backend',
|
|
|
|
'GET': 'stream_exists_backend'}),
|
|
|
|
url(r'^api/v1/users$', 'rest_dispatch',
|
|
|
|
{'GET': 'get_members_backend'}),
|
|
|
|
url(r'^api/v1/users/me$', 'rest_dispatch',
|
|
|
|
{'GET': 'get_profile_backend'}),
|
|
|
|
url(r'^api/v1/users/me/enter-sends$', 'rest_dispatch',
|
|
|
|
{'POST': 'json_change_enter_sends'}),
|
|
|
|
url(r'^api/v1/users/me/pointer$', 'rest_dispatch',
|
|
|
|
{'GET': 'get_pointer_backend',
|
|
|
|
'POST': 'update_pointer_backend'}),
|
|
|
|
# GET lists your streams, POST bulk adds, PATCH bulk modifies/removes
|
|
|
|
url(r'^api/v1/users/me/subscriptions$', 'rest_dispatch',
|
|
|
|
{'GET': 'list_subscriptions_backend',
|
|
|
|
'POST': 'add_subscriptions_backend',
|
|
|
|
'PATCH': 'update_subscriptions_backend'}),
|
2013-03-14 23:21:53 +01:00
|
|
|
url(r'^api/v1/register$', 'rest_dispatch',
|
2013-04-02 22:42:51 +02:00
|
|
|
{'POST': 'api_events_register'}),
|
2013-03-27 16:05:39 +01:00
|
|
|
|
|
|
|
# These are integration-specific web hook callbacks
|
|
|
|
url(r'^api/v1/external/github$', 'api_github_landing'),
|
|
|
|
url(r'^api/v1/external/jira/(\w+)/?$', 'api_jira_webhook'),
|
2013-04-01 23:46:55 +02:00
|
|
|
url(r'^api/v1/external/beanstalk$', 'api_beanstalk_webhook'),
|
2013-03-18 21:47:37 +01:00
|
|
|
)
|
2012-10-17 20:43:52 +02:00
|
|
|
|
2013-03-18 21:47:37 +01:00
|
|
|
urlpatterns += patterns('zephyr.tornadoviews',
|
2013-03-18 21:49:59 +01:00
|
|
|
# Tornado views
|
2013-03-18 21:47:37 +01:00
|
|
|
url(r'^api/v1/get_messages$', 'api_get_messages'),
|
2013-03-21 20:19:04 +01:00
|
|
|
url(r'^api/v1/messages/latest$', 'rest_get_messages'),
|
2013-03-18 21:47:37 +01:00
|
|
|
url(r'^json/get_updates$', 'json_get_updates'),
|
2013-03-26 18:06:52 +01:00
|
|
|
url(r'^api/v1/events$', 'rest_get_events'),
|
|
|
|
url(r'^json/get_events$', 'json_get_events'),
|
2012-10-09 22:21:03 +02:00
|
|
|
# Used internally for communication between Django and Tornado processes
|
2013-03-18 21:47:37 +01:00
|
|
|
url(r'^notify_tornado$', 'notify'),
|
2012-08-28 18:44:51 +02:00
|
|
|
)
|
2012-10-15 22:47:52 +02:00
|
|
|
|
2013-01-30 23:35:24 +01:00
|
|
|
if not settings.DEPLOYED:
|
|
|
|
use_prod_static = getattr(settings, 'PIPELINE', False)
|
|
|
|
static_root = os.path.join(settings.SITE_ROOT,
|
|
|
|
'../prod-static/serve' if use_prod_static else '../zephyr/static')
|
|
|
|
|
|
|
|
urlpatterns += patterns('',
|
|
|
|
url(r'^static/(?P<path>.*)$', 'django.views.static.serve',
|
|
|
|
{'document_root': static_root}))
|