2013-04-23 18:51:17 +02:00
|
|
|
from __future__ import absolute_import
|
|
|
|
|
2016-08-08 11:27:28 +02:00
|
|
|
from typing import Dict, Any
|
|
|
|
from django.http import HttpRequest
|
2012-10-15 22:52:08 +02:00
|
|
|
from django.conf import settings
|
2016-11-08 10:00:31 +01:00
|
|
|
|
2017-01-04 05:30:48 +01:00
|
|
|
from zerver.models import UserProfile, get_realm
|
2016-07-20 13:33:27 +02:00
|
|
|
from zproject.backends import (password_auth_enabled, dev_auth_enabled,
|
|
|
|
google_auth_enabled, github_auth_enabled)
|
2016-11-02 21:41:10 +01:00
|
|
|
from zerver.lib.utils import get_subdomain
|
2012-10-15 22:52:08 +02:00
|
|
|
|
2016-11-08 10:00:31 +01:00
|
|
|
|
2016-11-08 10:07:47 +01:00
|
|
|
def common_context(user):
|
|
|
|
# type: (UserProfile) -> Dict[str, Any]
|
|
|
|
return {
|
|
|
|
'realm_uri': user.realm.uri,
|
|
|
|
'server_uri': settings.SERVER_URI,
|
|
|
|
'external_uri_scheme': settings.EXTERNAL_URI_SCHEME,
|
|
|
|
'external_host': settings.EXTERNAL_HOST,
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-10-30 21:20:52 +01:00
|
|
|
def add_settings(request):
|
2016-08-08 11:27:28 +02:00
|
|
|
# type: (HttpRequest) -> Dict[str, Any]
|
2016-11-08 10:00:31 +01:00
|
|
|
realm = None
|
2016-08-14 00:57:45 +02:00
|
|
|
if hasattr(request.user, "realm"):
|
|
|
|
realm = request.user.realm
|
2016-11-08 10:00:31 +01:00
|
|
|
elif settings.REALMS_HAVE_SUBDOMAINS:
|
|
|
|
subdomain = get_subdomain(request)
|
2017-01-04 05:30:48 +01:00
|
|
|
realm = get_realm(subdomain)
|
2016-11-08 10:00:31 +01:00
|
|
|
|
|
|
|
if realm is not None:
|
2016-08-14 00:57:45 +02:00
|
|
|
realm_uri = realm.uri
|
|
|
|
else:
|
|
|
|
realm_uri = settings.SERVER_URI
|
|
|
|
|
2012-10-17 20:34:38 +02:00
|
|
|
return {
|
2017-01-24 06:21:14 +01:00
|
|
|
'custom_logo_url': settings.CUSTOM_LOGO_URL,
|
|
|
|
'register_link_disabled': settings.REGISTER_LINK_DISABLED,
|
|
|
|
'login_link_disabled': settings.LOGIN_LINK_DISABLED,
|
|
|
|
'about_link_disabled': settings.ABOUT_LINK_DISABLED,
|
|
|
|
'show_oss_announcement': settings.SHOW_OSS_ANNOUNCEMENT,
|
|
|
|
'zulip_admin': settings.ZULIP_ADMINISTRATOR,
|
|
|
|
'terms_of_service': settings.TERMS_OF_SERVICE,
|
|
|
|
'login_url': settings.HOME_NOT_LOGGED_IN,
|
|
|
|
'only_sso': settings.ONLY_SSO,
|
|
|
|
'external_api_path': settings.EXTERNAL_API_PATH,
|
|
|
|
'external_api_uri': settings.EXTERNAL_API_URI,
|
|
|
|
'external_host': settings.EXTERNAL_HOST,
|
|
|
|
'external_uri_scheme': settings.EXTERNAL_URI_SCHEME,
|
|
|
|
'realm_uri': realm_uri,
|
|
|
|
'server_uri': settings.SERVER_URI,
|
|
|
|
'api_site_required': settings.EXTERNAL_API_PATH != "api.zulip.com",
|
2013-12-04 22:35:38 +01:00
|
|
|
'email_integration_enabled': settings.EMAIL_GATEWAY_BOT != "",
|
2017-01-24 06:21:14 +01:00
|
|
|
'email_gateway_example': settings.EMAIL_GATEWAY_EXAMPLE,
|
|
|
|
'open_realm_creation': settings.OPEN_REALM_CREATION,
|
|
|
|
'password_auth_enabled': password_auth_enabled(realm),
|
|
|
|
'dev_auth_enabled': dev_auth_enabled(realm),
|
|
|
|
'google_auth_enabled': google_auth_enabled(realm),
|
|
|
|
'github_auth_enabled': github_auth_enabled(realm),
|
|
|
|
'development_environment': settings.DEVELOPMENT,
|
|
|
|
'support_email': settings.ZULIP_ADMINISTRATOR,
|
|
|
|
'find_team_link_disabled': settings.FIND_TEAM_LINK_DISABLED,
|
|
|
|
'password_min_length': settings.PASSWORD_MIN_LENGTH,
|
|
|
|
'password_min_quality': settings.PASSWORD_MIN_ZXCVBN_QUALITY,
|
2012-10-17 20:34:38 +02:00
|
|
|
}
|
2013-06-17 18:01:22 +02:00
|
|
|
|
2016-11-08 10:00:31 +01:00
|
|
|
|
2013-06-17 18:01:22 +02:00
|
|
|
def add_metrics(request):
|
2016-08-08 11:27:28 +02:00
|
|
|
# type: (HttpRequest) -> Dict[str, str]
|
2013-06-17 18:01:22 +02:00
|
|
|
return {
|
2013-10-29 22:21:17 +01:00
|
|
|
'dropboxAppKey': settings.DROPBOX_APP_KEY
|
2013-06-17 18:01:22 +02:00
|
|
|
}
|