2016-10-06 01:42:24 +02:00
|
|
|
import os
|
2017-11-10 23:44:00 +01:00
|
|
|
import pwd
|
2016-06-17 02:30:48 +02:00
|
|
|
|
2020-07-07 01:26:50 +02:00
|
|
|
from scripts.lib.zulip_tools import deport
|
2022-09-24 06:44:08 +02:00
|
|
|
from zproject.settings_types import SCIMConfigDict
|
2020-06-27 02:37:49 +02:00
|
|
|
|
2020-06-08 03:24:49 +02:00
|
|
|
ZULIP_ADMINISTRATOR = "desdemona+admin@zulip.com"
|
|
|
|
|
2023-12-04 05:53:00 +01:00
|
|
|
# Initiatize TEST_SUITE early, so other code can rely on the setting.
|
|
|
|
TEST_SUITE = os.getenv("ZULIP_TEST_SUITE") == "true"
|
|
|
|
|
2019-02-15 20:23:54 +01:00
|
|
|
# We want LOCAL_UPLOADS_DIR to be an absolute path so that code can
|
2020-06-10 11:11:00 +02:00
|
|
|
# chdir without having problems accessing it. Unfortunately, this
|
|
|
|
# means we need a duplicate definition of DEPLOY_ROOT with the one in
|
|
|
|
# settings.py.
|
|
|
|
DEPLOY_ROOT = os.path.realpath(os.path.dirname(os.path.dirname(__file__)))
|
2021-02-12 08:20:45 +01:00
|
|
|
LOCAL_UPLOADS_DIR = os.path.join(DEPLOY_ROOT, "var/uploads")
|
2019-02-15 20:23:54 +01:00
|
|
|
|
2020-04-25 05:07:50 +02:00
|
|
|
# We assume dev droplets are the only places where
|
|
|
|
# users use zulipdev as the user.
|
2021-02-12 08:20:45 +01:00
|
|
|
IS_DEV_DROPLET = pwd.getpwuid(os.getuid()).pw_name == "zulipdev"
|
2020-04-24 20:47:22 +02:00
|
|
|
|
2017-10-25 01:58:05 +02:00
|
|
|
FORWARD_ADDRESS_CONFIG_FILE = "var/forward_address.ini"
|
2016-10-27 23:14:23 +02:00
|
|
|
# Check if test_settings.py set EXTERNAL_HOST.
|
2021-02-12 08:20:45 +01:00
|
|
|
external_host_env = os.getenv("EXTERNAL_HOST")
|
2019-07-24 02:21:03 +02:00
|
|
|
if external_host_env is None:
|
2020-04-24 20:47:22 +02:00
|
|
|
if IS_DEV_DROPLET:
|
2020-04-27 20:35:16 +02:00
|
|
|
# For our droplets, we use the hostname (eg github_username.zulipdev.org) by default.
|
2023-03-04 02:17:54 +01:00
|
|
|
# Note that this code is duplicated in run-dev.
|
2020-04-27 20:35:16 +02:00
|
|
|
EXTERNAL_HOST = os.uname()[1].lower() + ":9991"
|
2017-11-10 23:44:00 +01:00
|
|
|
else:
|
|
|
|
# For local development environments, we use localhost by
|
|
|
|
# default, via the "zulipdev.com" hostname.
|
2021-02-12 08:20:45 +01:00
|
|
|
EXTERNAL_HOST = "zulipdev.com:9991"
|
2017-11-11 21:32:33 +01:00
|
|
|
# Serve the main dev realm at the literal name "localhost",
|
|
|
|
# so it works out of the box even when not on the Internet.
|
|
|
|
REALM_HOSTS = {
|
2021-02-12 08:20:45 +01:00
|
|
|
"zulip": "localhost:9991",
|
2017-11-11 21:32:33 +01:00
|
|
|
}
|
2018-03-13 13:20:59 +01:00
|
|
|
else:
|
2019-07-24 02:21:03 +02:00
|
|
|
EXTERNAL_HOST = external_host_env
|
2018-03-13 13:20:59 +01:00
|
|
|
REALM_HOSTS = {
|
2021-02-12 08:20:45 +01:00
|
|
|
"zulip": EXTERNAL_HOST,
|
2018-03-13 13:20:59 +01:00
|
|
|
}
|
|
|
|
|
2020-07-07 01:26:50 +02:00
|
|
|
EXTERNAL_HOST_WITHOUT_PORT = deport(EXTERNAL_HOST)
|
2020-06-27 02:37:49 +02:00
|
|
|
|
2020-07-28 20:39:06 +02:00
|
|
|
FAKE_EMAIL_DOMAIN = "zulipdev.com"
|
|
|
|
|
2021-02-12 08:20:45 +01:00
|
|
|
ALLOWED_HOSTS = ["*"]
|
2017-03-18 01:58:45 +01:00
|
|
|
|
|
|
|
# Uncomment extra backends if you want to test with them. Note that
|
|
|
|
# for Google and GitHub auth you'll need to do some pre-setup.
|
2024-07-12 02:30:17 +02:00
|
|
|
AUTHENTICATION_BACKENDS: tuple[str, ...] = (
|
2021-02-12 08:20:45 +01:00
|
|
|
"zproject.backends.DevAuthBackend",
|
|
|
|
"zproject.backends.EmailAuthBackend",
|
|
|
|
"zproject.backends.GitHubAuthBackend",
|
|
|
|
"zproject.backends.GoogleAuthBackend",
|
|
|
|
"zproject.backends.SAMLAuthBackend",
|
2018-10-05 14:32:02 +02:00
|
|
|
# 'zproject.backends.AzureADAuthBackend',
|
2021-02-12 08:20:45 +01:00
|
|
|
"zproject.backends.GitLabAuthBackend",
|
|
|
|
"zproject.backends.AppleAuthBackend",
|
2021-05-21 16:45:43 +02:00
|
|
|
"zproject.backends.GenericOpenIdConnectBackend",
|
2020-07-07 02:05:02 +02:00
|
|
|
)
|
2017-03-18 01:58:45 +01:00
|
|
|
|
2016-06-17 02:30:48 +02:00
|
|
|
EXTERNAL_URI_SCHEME = "http://"
|
2023-03-13 04:06:55 +01:00
|
|
|
|
|
|
|
if os.getenv("BEHIND_HTTPS_PROXY"):
|
|
|
|
# URLs served by the development environment will be HTTPS
|
|
|
|
EXTERNAL_URI_SCHEME = "https://"
|
|
|
|
# Trust requests from this host (required due to Nginx proxy)
|
|
|
|
CSRF_TRUSTED_ORIGINS = [EXTERNAL_URI_SCHEME + EXTERNAL_HOST]
|
|
|
|
|
2020-06-27 02:37:49 +02:00
|
|
|
EMAIL_GATEWAY_PATTERN = "%s@" + EXTERNAL_HOST_WITHOUT_PORT
|
2016-06-17 02:30:48 +02:00
|
|
|
NOTIFICATION_BOT = "notification-bot@zulip.com"
|
|
|
|
EMAIL_GATEWAY_BOT = "emailgateway@zulip.com"
|
2017-10-19 04:09:53 +02:00
|
|
|
PHYSICAL_ADDRESS = "Zulip Headquarters, 123 Octo Stream, South Pacific Ocean"
|
2020-06-09 12:24:32 +02:00
|
|
|
STAFF_SUBDOMAIN = "zulip"
|
2018-09-25 12:24:11 +02:00
|
|
|
EXTRA_INSTALLED_APPS = ["zilencer", "analytics", "corporate"]
|
2016-06-17 02:30:48 +02:00
|
|
|
# Disable Camo in development
|
2021-02-12 08:20:45 +01:00
|
|
|
CAMO_URI = ""
|
2024-07-18 02:32:27 +02:00
|
|
|
KATEX_SERVER = False
|
2017-12-05 06:31:21 +01:00
|
|
|
|
2020-09-17 00:30:45 +02:00
|
|
|
TORNADO_PORTS = [9993]
|
2020-09-15 01:35:44 +02:00
|
|
|
|
2016-06-03 01:02:58 +02:00
|
|
|
OPEN_REALM_CREATION = True
|
2021-09-21 19:49:12 +02:00
|
|
|
WEB_PUBLIC_STREAMS_ENABLED = True
|
2017-12-05 06:31:21 +01:00
|
|
|
INVITES_MIN_USER_AGE_DAYS = 0
|
2016-06-03 01:02:58 +02:00
|
|
|
|
2022-05-09 04:53:19 +02:00
|
|
|
# Redirect to /devlogin/ by default in dev mode
|
2022-07-08 02:27:56 +02:00
|
|
|
CUSTOM_HOME_NOT_LOGGED_IN = "/devlogin/"
|
2022-05-09 04:53:19 +02:00
|
|
|
LOGIN_URL = "/devlogin/"
|
|
|
|
|
2021-11-03 21:36:54 +01:00
|
|
|
# For development convenience, configure the ToS/Privacy Policies
|
|
|
|
POLICIES_DIRECTORY = "corporate/policies"
|
|
|
|
TERMS_OF_SERVICE_VERSION = "1.0"
|
2024-07-12 02:30:23 +02:00
|
|
|
TERMS_OF_SERVICE_MESSAGE: str | None = "Description of changes to the ToS!"
|
2018-05-25 21:41:06 +02:00
|
|
|
|
2017-07-14 16:44:07 +02:00
|
|
|
EMBEDDED_BOTS_ENABLED = True
|
|
|
|
|
2024-07-12 02:30:17 +02:00
|
|
|
SYSTEM_ONLY_REALMS: set[str] = set()
|
2022-02-12 03:39:06 +01:00
|
|
|
USING_PGROONGA = True
|
2016-10-17 18:11:16 +02:00
|
|
|
# Flush cache after migration.
|
2020-07-07 02:05:02 +02:00
|
|
|
POST_MIGRATION_CACHE_FLUSHING = True
|
2016-10-27 12:06:44 +02:00
|
|
|
|
2023-11-08 01:37:08 +01:00
|
|
|
# If a sandbox APNs key or cert is provided, use it.
|
|
|
|
# To create such a key or cert, see instructions at:
|
2023-11-03 00:42:01 +01:00
|
|
|
# https://github.com/zulip/zulip-mobile/blob/main/docs/howto/push-notifications.md#ios
|
2023-11-08 01:37:08 +01:00
|
|
|
_candidate_apns_token_key_file = "zproject/apns-dev-key.p8"
|
2023-11-03 00:42:01 +01:00
|
|
|
_candidate_apns_cert_file = "zproject/apns-dev.pem"
|
2023-11-08 01:37:08 +01:00
|
|
|
if os.path.isfile(_candidate_apns_token_key_file):
|
|
|
|
APNS_TOKEN_KEY_FILE = _candidate_apns_token_key_file
|
|
|
|
elif os.path.isfile(_candidate_apns_cert_file):
|
2023-11-03 00:42:01 +01:00
|
|
|
APNS_CERT_FILE = _candidate_apns_cert_file
|
|
|
|
|
2017-03-22 21:08:56 +01:00
|
|
|
# Don't require anything about password strength in development
|
|
|
|
PASSWORD_MIN_LENGTH = 0
|
passwords: Express the quality threshold as guesses required.
The original "quality score" was invented purely for populating
our password-strength progress bar, and isn't expressed in terms
that are particularly meaningful. For configuration and the core
accept/reject logic, it's better to use units that are readily
understood. Switch to those.
I considered using "bits of entropy", defined loosely as the log
of this number, but both the zxcvbn paper and the linked CACM
article (which I recommend!) are written in terms of the number
of guesses. And reading (most of) those two papers made me
less happy about referring to "entropy" in our terminology.
I already knew that notion was a little fuzzy if looked at
too closely, and I gained a better appreciation of how it's
contributed to confusion in discussing password policies and
to adoption of perverse policies that favor "Password1!" over
"derived unusual ravioli raft". So, "guesses" it is.
And although the log is handy for some analysis purposes
(certainly for a graph like those in the zxcvbn paper), it adds
a layer of abstraction, and I think makes it harder to think
clearly about attacks, especially in the online setting. So
just use the actual number, and if someone wants to set a
gigantic value, they will have the pleasure of seeing just
how many digits are involved.
(Thanks to @YJDave for a prototype that the code changes in this
commit are based on.)
2017-10-03 19:48:06 +02:00
|
|
|
PASSWORD_MIN_GUESSES = 0
|
2017-10-25 01:58:05 +02:00
|
|
|
|
2017-07-12 09:36:51 +02:00
|
|
|
# Two factor authentication: Use the fake backend for development.
|
2021-02-12 08:20:45 +01:00
|
|
|
TWO_FACTOR_CALL_GATEWAY = "two_factor.gateways.fake.Fake"
|
|
|
|
TWO_FACTOR_SMS_GATEWAY = "two_factor.gateways.fake.Fake"
|
2018-02-12 18:18:03 +01:00
|
|
|
|
2018-08-04 01:44:49 +02:00
|
|
|
# FAKE_LDAP_MODE supports using a fake LDAP database in the
|
|
|
|
# development environment, without needing an LDAP server!
|
|
|
|
#
|
docs: Add missing space to compound verbs “log in”, “set up”, etc.
Noun: backup, checkout, cleanup, login, logout, setup, shutdown, signup,
timeout.
Verb: back up, check out, clean up, log in, log out, set up, shut
down, sign up, time out.
Signed-off-by: Anders Kaseorg <anders@zulip.com>
2021-04-25 23:05:38 +02:00
|
|
|
# Three modes are allowed, and each will set up Zulip and the fake LDAP
|
2018-08-04 01:44:49 +02:00
|
|
|
# database in a way appropriate for the corresponding mode described
|
2018-09-27 22:30:29 +02:00
|
|
|
# in https://zulip.readthedocs.io/en/latest/production/authentication-methods.html#ldap-including-active-directory
|
2018-08-04 01:44:49 +02:00
|
|
|
# (A) If users' email addresses are in LDAP and used as username.
|
|
|
|
# (B) If LDAP only has usernames but email addresses are of the form
|
|
|
|
# username@example.com
|
|
|
|
# (C) If LDAP usernames are completely unrelated to email addresses.
|
|
|
|
#
|
2018-09-27 22:30:29 +02:00
|
|
|
# Fake LDAP data has e.g. ("ldapuser1", "ldapuser1@zulip.com") for username/email.
|
2024-07-12 02:30:23 +02:00
|
|
|
FAKE_LDAP_MODE: str | None = None
|
2018-08-18 02:35:19 +02:00
|
|
|
# FAKE_LDAP_NUM_USERS = 8
|
2018-08-04 01:44:49 +02:00
|
|
|
|
|
|
|
if FAKE_LDAP_MODE:
|
2019-11-07 06:57:09 +01:00
|
|
|
import ldap
|
|
|
|
from django_auth_ldap.config import LDAPSearch
|
2020-06-11 00:54:34 +02:00
|
|
|
|
2019-06-17 22:11:29 +02:00
|
|
|
# To understand these parameters, read the docs in
|
|
|
|
# prod_settings_template.py and on ReadTheDocs.
|
2018-08-04 01:44:49 +02:00
|
|
|
LDAP_APPEND_DOMAIN = None
|
2021-02-12 08:19:30 +01:00
|
|
|
AUTH_LDAP_USER_SEARCH = LDAPSearch(
|
|
|
|
"ou=users,dc=zulip,dc=com", ldap.SCOPE_ONELEVEL, "(uid=%(user)s)"
|
|
|
|
)
|
|
|
|
AUTH_LDAP_REVERSE_EMAIL_SEARCH = LDAPSearch(
|
|
|
|
"ou=users,dc=zulip,dc=com", ldap.SCOPE_ONELEVEL, "(email=%(email)s)"
|
|
|
|
)
|
2018-08-04 01:44:49 +02:00
|
|
|
|
2021-02-12 08:20:45 +01:00
|
|
|
if FAKE_LDAP_MODE == "a":
|
2021-02-12 08:19:30 +01:00
|
|
|
AUTH_LDAP_REVERSE_EMAIL_SEARCH = LDAPSearch(
|
|
|
|
"ou=users,dc=zulip,dc=com", ldap.SCOPE_ONELEVEL, "(uid=%(email)s)"
|
|
|
|
)
|
2019-11-07 06:57:09 +01:00
|
|
|
AUTH_LDAP_USERNAME_ATTR = "uid"
|
2019-06-17 22:11:29 +02:00
|
|
|
AUTH_LDAP_USER_ATTR_MAP = {
|
|
|
|
"full_name": "cn",
|
|
|
|
"avatar": "thumbnailPhoto",
|
|
|
|
# This won't do much unless one changes the fact that
|
|
|
|
# all users have LDAP_USER_ACCOUNT_CONTROL_NORMAL in
|
|
|
|
# zerver/lib/dev_ldap_directory.py
|
|
|
|
"userAccountControl": "userAccountControl",
|
|
|
|
}
|
2021-02-12 08:20:45 +01:00
|
|
|
elif FAKE_LDAP_MODE == "b":
|
|
|
|
LDAP_APPEND_DOMAIN = "zulip.com"
|
2019-06-17 22:11:29 +02:00
|
|
|
AUTH_LDAP_USER_ATTR_MAP = {
|
|
|
|
"full_name": "cn",
|
|
|
|
"avatar": "jpegPhoto",
|
|
|
|
"custom_profile_field__birthday": "birthDate",
|
|
|
|
"custom_profile_field__phone_number": "phoneNumber",
|
|
|
|
}
|
2021-02-12 08:20:45 +01:00
|
|
|
elif FAKE_LDAP_MODE == "c":
|
2019-11-07 06:57:09 +01:00
|
|
|
AUTH_LDAP_USERNAME_ATTR = "uid"
|
2021-02-12 08:20:45 +01:00
|
|
|
LDAP_EMAIL_ATTR = "email"
|
2019-06-17 22:11:29 +02:00
|
|
|
AUTH_LDAP_USER_ATTR_MAP = {
|
|
|
|
"full_name": "cn",
|
|
|
|
}
|
2021-02-12 08:20:45 +01:00
|
|
|
AUTHENTICATION_BACKENDS += ("zproject.backends.ZulipLDAPAuthBackend",)
|
2018-08-04 01:44:49 +02:00
|
|
|
|
2018-08-09 21:38:22 +02:00
|
|
|
BILLING_ENABLED = True
|
2024-07-12 02:30:23 +02:00
|
|
|
LANDING_PAGE_NAVBAR_MESSAGE: str | None = None
|
2019-07-23 02:34:59 +02:00
|
|
|
|
2023-03-04 02:17:54 +01:00
|
|
|
# Our run-dev proxy uses X-Forwarded-Port to communicate to Django
|
2019-10-07 06:16:51 +02:00
|
|
|
# that the request is actually on port 9991, not port 9992 (the Django
|
|
|
|
# server's own port); this setting tells Django to read that HTTP
|
|
|
|
# header. Important for SAML authentication in the development
|
|
|
|
# environment.
|
|
|
|
USE_X_FORWARDED_PORT = True
|
2019-09-29 06:32:56 +02:00
|
|
|
|
|
|
|
# Override the default SAML entity ID
|
2020-04-30 14:46:19 +02:00
|
|
|
SOCIAL_AUTH_SAML_SP_ENTITY_ID = "http://localhost:9991"
|
2020-01-02 23:19:27 +01:00
|
|
|
|
2021-08-23 15:14:05 +02:00
|
|
|
SOCIAL_AUTH_SUBDOMAIN = "auth"
|
|
|
|
|
2024-07-12 02:30:23 +02:00
|
|
|
MEMCACHED_USERNAME: str | None = None
|
2021-09-10 18:36:56 +02:00
|
|
|
|
2024-07-12 02:30:17 +02:00
|
|
|
SCIM_CONFIG: dict[str, SCIMConfigDict] = {
|
2021-09-10 18:36:56 +02:00
|
|
|
"zulip": {
|
|
|
|
"bearer_token": "token1234",
|
|
|
|
"scim_client_name": "test-scim-client",
|
|
|
|
"name_formatted_included": True,
|
|
|
|
}
|
|
|
|
}
|
2023-10-02 01:52:22 +02:00
|
|
|
|
2023-11-20 20:16:03 +01:00
|
|
|
SELF_HOSTING_MANAGEMENT_SUBDOMAIN = "selfhosting"
|
2023-12-11 01:29:57 +01:00
|
|
|
DEVELOPMENT_DISABLE_PUSH_BOUNCER_DOMAIN_CHECK = True
|
2024-07-16 22:52:01 +02:00
|
|
|
ZULIP_SERVICES_URL = f"http://push.{EXTERNAL_HOST}"
|
|
|
|
|
|
|
|
ZULIP_SERVICE_PUSH_NOTIFICATIONS = True
|
|
|
|
ZULIP_SERVICE_SUBMIT_USAGE_STATISTICS = True
|
2024-05-30 05:45:38 +02:00
|
|
|
|
2024-06-04 22:43:37 +02:00
|
|
|
# This value needs to be lower in development than usual to allow
|
|
|
|
# for quicker testing of the feature.
|
|
|
|
RESOLVE_TOPIC_UNDO_GRACE_PERIOD_SECONDS = 5
|
2024-09-02 13:55:45 +02:00
|
|
|
|
|
|
|
# In a dev environment, 'zulipdev.com:9991' is used to access the landing page.
|
|
|
|
# See: https://zulip.readthedocs.io/en/latest/subsystems/realms.html#working-with-subdomains-in-development-environment
|
|
|
|
ROOT_DOMAIN_LANDING_PAGE = True
|