2020-04-30 17:30:41 +02:00
|
|
|
from django.conf.urls import include
|
|
|
|
from django.urls import path
|
2016-12-20 02:30:08 +01:00
|
|
|
|
2016-10-27 15:08:42 +02:00
|
|
|
import analytics.views
|
2017-11-16 00:55:49 +01:00
|
|
|
from zerver.lib.rest import rest_dispatch
|
2013-11-05 19:30:18 +01:00
|
|
|
|
2016-05-19 17:33:30 +02:00
|
|
|
i18n_urlpatterns = [
|
2017-02-02 22:14:10 +01:00
|
|
|
# Server admin (user_profile.is_staff) visible stats pages
|
2020-09-22 02:54:44 +02:00
|
|
|
path('activity', analytics.views.get_activity),
|
2020-04-30 17:30:41 +02:00
|
|
|
path('activity/support', analytics.views.support,
|
2020-09-22 02:54:44 +02:00
|
|
|
name='support'),
|
|
|
|
path('realm_activity/<realm_str>/', analytics.views.get_realm_activity),
|
|
|
|
path('user_activity/<email>/', analytics.views.get_user_activity),
|
2018-05-18 02:16:29 +02:00
|
|
|
|
2020-09-22 02:54:44 +02:00
|
|
|
path('stats/realm/<realm_str>/', analytics.views.stats_for_realm),
|
|
|
|
path('stats/installation', analytics.views.stats_for_installation),
|
2020-04-30 17:30:41 +02:00
|
|
|
path('stats/remote/<int:remote_server_id>/installation',
|
2020-09-22 02:54:44 +02:00
|
|
|
analytics.views.stats_for_remote_installation),
|
2020-04-30 17:30:41 +02:00
|
|
|
path('stats/remote/<int:remote_server_id>/realm/<int:remote_realm_id>/',
|
2020-09-22 02:54:44 +02:00
|
|
|
analytics.views.stats_for_remote_realm),
|
2016-12-20 02:30:08 +01:00
|
|
|
|
|
|
|
# User-visible stats page
|
2020-04-30 17:30:41 +02:00
|
|
|
path('stats', analytics.views.stats,
|
|
|
|
name='analytics.views.stats'),
|
2016-12-20 02:30:08 +01:00
|
|
|
]
|
|
|
|
|
|
|
|
# These endpoints are a part of the API (V1), which uses:
|
|
|
|
# * REST verbs
|
|
|
|
# * Basic auth (username:password is email:apiKey)
|
|
|
|
# * Takes and returns json-formatted data
|
|
|
|
#
|
|
|
|
# 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
|
|
|
|
v1_api_and_json_patterns = [
|
|
|
|
# get data for the graphs at /stats
|
2020-04-30 17:30:41 +02:00
|
|
|
path('analytics/chart_data', rest_dispatch,
|
2020-09-22 03:55:32 +02:00
|
|
|
{'GET': analytics.views.get_chart_data}),
|
2020-09-12 04:25:00 +02:00
|
|
|
path('analytics/chart_data/realm/<realm_str>', rest_dispatch,
|
2020-09-22 03:55:32 +02:00
|
|
|
{'GET': analytics.views.get_chart_data_for_realm}),
|
2020-04-30 17:30:41 +02:00
|
|
|
path('analytics/chart_data/installation', rest_dispatch,
|
2020-09-22 03:55:32 +02:00
|
|
|
{'GET': analytics.views.get_chart_data_for_installation}),
|
2020-04-30 17:30:41 +02:00
|
|
|
path('analytics/chart_data/remote/<int:remote_server_id>/installation', rest_dispatch,
|
2020-09-22 03:55:32 +02:00
|
|
|
{'GET': analytics.views.get_chart_data_for_remote_installation}),
|
2020-04-30 17:30:41 +02:00
|
|
|
path('analytics/chart_data/remote/<int:remote_server_id>/realm/<int:remote_realm_id>',
|
|
|
|
rest_dispatch,
|
2020-09-22 03:55:32 +02:00
|
|
|
{'GET': analytics.views.get_chart_data_for_remote_realm}),
|
2016-12-20 02:30:08 +01:00
|
|
|
]
|
|
|
|
|
|
|
|
i18n_urlpatterns += [
|
2020-04-30 17:30:41 +02:00
|
|
|
path('api/v1/', include(v1_api_and_json_patterns)),
|
|
|
|
path('json/', include(v1_api_and_json_patterns)),
|
2016-05-19 17:33:30 +02:00
|
|
|
]
|
2013-11-05 19:30:18 +01:00
|
|
|
|
2016-10-27 12:38:16 +02:00
|
|
|
urlpatterns = i18n_urlpatterns
|