mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-04 14:03:30 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			221 lines
		
	
	
		
			8.0 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			221 lines
		
	
	
		
			8.0 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
import os
 | 
						|
import pwd
 | 
						|
 | 
						|
from scripts.lib.zulip_tools import deport
 | 
						|
from zproject.settings_types import SCIMConfigDict
 | 
						|
 | 
						|
ZULIP_ADMINISTRATOR = "desdemona+admin@zulip.com"
 | 
						|
 | 
						|
# Initiatize TEST_SUITE early, so other code can rely on the setting.
 | 
						|
TEST_SUITE = os.getenv("ZULIP_TEST_SUITE") == "true"
 | 
						|
 | 
						|
# We want LOCAL_UPLOADS_DIR to be an absolute path so that code can
 | 
						|
# 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__)))
 | 
						|
LOCAL_UPLOADS_DIR = os.path.join(DEPLOY_ROOT, "var/uploads")
 | 
						|
 | 
						|
# We assume dev droplets are the only places where
 | 
						|
# users use zulipdev as the user.
 | 
						|
IS_DEV_DROPLET = pwd.getpwuid(os.getuid()).pw_name == "zulipdev"
 | 
						|
 | 
						|
FORWARD_ADDRESS_CONFIG_FILE = "var/forward_address.ini"
 | 
						|
# Check if test_settings.py set EXTERNAL_HOST.
 | 
						|
external_host_env = os.getenv("EXTERNAL_HOST")
 | 
						|
if external_host_env is None:
 | 
						|
    if IS_DEV_DROPLET:
 | 
						|
        # For our droplets, we use the hostname (eg github_username.zulipdev.org) by default.
 | 
						|
        # Note that this code is duplicated in run-dev.
 | 
						|
        EXTERNAL_HOST = os.uname()[1].lower() + ":9991"
 | 
						|
    else:
 | 
						|
        # For local development environments, we use localhost by
 | 
						|
        # default, via the "zulipdev.com" hostname.
 | 
						|
        EXTERNAL_HOST = "zulipdev.com:9991"
 | 
						|
        # 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 = {
 | 
						|
            "zulip": "localhost:9991",
 | 
						|
        }
 | 
						|
else:
 | 
						|
    EXTERNAL_HOST = external_host_env
 | 
						|
    REALM_HOSTS = {
 | 
						|
        "zulip": EXTERNAL_HOST,
 | 
						|
    }
 | 
						|
 | 
						|
EXTERNAL_HOST_WITHOUT_PORT = deport(EXTERNAL_HOST)
 | 
						|
 | 
						|
FAKE_EMAIL_DOMAIN = "zulipdev.com"
 | 
						|
 | 
						|
ALLOWED_HOSTS = ["*"]
 | 
						|
 | 
						|
# 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.
 | 
						|
AUTHENTICATION_BACKENDS: tuple[str, ...] = (
 | 
						|
    "zproject.backends.DevAuthBackend",
 | 
						|
    "zproject.backends.EmailAuthBackend",
 | 
						|
    "zproject.backends.GitHubAuthBackend",
 | 
						|
    "zproject.backends.GoogleAuthBackend",
 | 
						|
    "zproject.backends.SAMLAuthBackend",
 | 
						|
    # 'zproject.backends.AzureADAuthBackend',
 | 
						|
    "zproject.backends.GitLabAuthBackend",
 | 
						|
    "zproject.backends.AppleAuthBackend",
 | 
						|
    "zproject.backends.GenericOpenIdConnectBackend",
 | 
						|
)
 | 
						|
 | 
						|
EXTERNAL_URI_SCHEME = "http://"
 | 
						|
 | 
						|
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]
 | 
						|
 | 
						|
EMAIL_GATEWAY_PATTERN = "%s@" + EXTERNAL_HOST_WITHOUT_PORT
 | 
						|
NOTIFICATION_BOT = "notification-bot@zulip.com"
 | 
						|
EMAIL_GATEWAY_BOT = "emailgateway@zulip.com"
 | 
						|
PHYSICAL_ADDRESS = "Zulip Headquarters, 123 Octo Stream, South Pacific Ocean"
 | 
						|
STAFF_SUBDOMAIN = "zulip"
 | 
						|
EXTRA_INSTALLED_APPS = ["zilencer", "analytics", "corporate"]
 | 
						|
# Disable Camo in development
 | 
						|
CAMO_URI = ""
 | 
						|
KATEX_SERVER = False
 | 
						|
 | 
						|
TORNADO_PORTS = [9993]
 | 
						|
 | 
						|
OPEN_REALM_CREATION = True
 | 
						|
WEB_PUBLIC_STREAMS_ENABLED = True
 | 
						|
INVITES_MIN_USER_AGE_DAYS = 0
 | 
						|
 | 
						|
# Redirect to /devlogin/ by default in dev mode
 | 
						|
CUSTOM_HOME_NOT_LOGGED_IN = "/devlogin/"
 | 
						|
LOGIN_URL = "/devlogin/"
 | 
						|
 | 
						|
# For development convenience, configure the ToS/Privacy Policies
 | 
						|
POLICIES_DIRECTORY = "corporate/policies"
 | 
						|
TERMS_OF_SERVICE_VERSION = "1.0"
 | 
						|
TERMS_OF_SERVICE_MESSAGE: str | None = "Description of changes to the ToS!"
 | 
						|
 | 
						|
EMBEDDED_BOTS_ENABLED = True
 | 
						|
 | 
						|
SYSTEM_ONLY_REALMS: set[str] = set()
 | 
						|
USING_PGROONGA = True
 | 
						|
# Flush cache after migration.
 | 
						|
POST_MIGRATION_CACHE_FLUSHING = True
 | 
						|
 | 
						|
# If a sandbox APNs key or cert is provided, use it.
 | 
						|
# To create such a key or cert, see instructions at:
 | 
						|
#   https://github.com/zulip/zulip-mobile/blob/main/docs/howto/push-notifications.md#ios
 | 
						|
_candidate_apns_token_key_file = "zproject/apns-dev-key.p8"
 | 
						|
_candidate_apns_cert_file = "zproject/apns-dev.pem"
 | 
						|
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):
 | 
						|
    APNS_CERT_FILE = _candidate_apns_cert_file
 | 
						|
 | 
						|
# Don't require anything about password strength in development
 | 
						|
PASSWORD_MIN_LENGTH = 0
 | 
						|
PASSWORD_MIN_GUESSES = 0
 | 
						|
 | 
						|
# Two factor authentication: Use the fake backend for development.
 | 
						|
TWO_FACTOR_CALL_GATEWAY = "two_factor.gateways.fake.Fake"
 | 
						|
TWO_FACTOR_SMS_GATEWAY = "two_factor.gateways.fake.Fake"
 | 
						|
 | 
						|
# FAKE_LDAP_MODE supports using a fake LDAP database in the
 | 
						|
# development environment, without needing an LDAP server!
 | 
						|
#
 | 
						|
# Three modes are allowed, and each will set up Zulip and the fake LDAP
 | 
						|
# database in a way appropriate for the corresponding mode described
 | 
						|
# in https://zulip.readthedocs.io/en/latest/production/authentication-methods.html#ldap-including-active-directory
 | 
						|
#   (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.
 | 
						|
#
 | 
						|
# Fake LDAP data has e.g. ("ldapuser1", "ldapuser1@zulip.com") for username/email.
 | 
						|
FAKE_LDAP_MODE: str | None = None
 | 
						|
# FAKE_LDAP_NUM_USERS = 8
 | 
						|
 | 
						|
if FAKE_LDAP_MODE:
 | 
						|
    import ldap
 | 
						|
    from django_auth_ldap.config import LDAPSearch
 | 
						|
 | 
						|
    # To understand these parameters, read the docs in
 | 
						|
    # prod_settings_template.py and on ReadTheDocs.
 | 
						|
    LDAP_APPEND_DOMAIN = None
 | 
						|
    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)"
 | 
						|
    )
 | 
						|
 | 
						|
    if FAKE_LDAP_MODE == "a":
 | 
						|
        AUTH_LDAP_REVERSE_EMAIL_SEARCH = LDAPSearch(
 | 
						|
            "ou=users,dc=zulip,dc=com", ldap.SCOPE_ONELEVEL, "(uid=%(email)s)"
 | 
						|
        )
 | 
						|
        AUTH_LDAP_USERNAME_ATTR = "uid"
 | 
						|
        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",
 | 
						|
        }
 | 
						|
    elif FAKE_LDAP_MODE == "b":
 | 
						|
        LDAP_APPEND_DOMAIN = "zulip.com"
 | 
						|
        AUTH_LDAP_USER_ATTR_MAP = {
 | 
						|
            "full_name": "cn",
 | 
						|
            "avatar": "jpegPhoto",
 | 
						|
            "custom_profile_field__birthday": "birthDate",
 | 
						|
            "custom_profile_field__phone_number": "phoneNumber",
 | 
						|
        }
 | 
						|
    elif FAKE_LDAP_MODE == "c":
 | 
						|
        AUTH_LDAP_USERNAME_ATTR = "uid"
 | 
						|
        LDAP_EMAIL_ATTR = "email"
 | 
						|
        AUTH_LDAP_USER_ATTR_MAP = {
 | 
						|
            "full_name": "cn",
 | 
						|
        }
 | 
						|
    AUTHENTICATION_BACKENDS += ("zproject.backends.ZulipLDAPAuthBackend",)
 | 
						|
 | 
						|
BILLING_ENABLED = True
 | 
						|
LANDING_PAGE_NAVBAR_MESSAGE: str | None = None
 | 
						|
 | 
						|
# Our run-dev proxy uses X-Forwarded-Port to communicate to Django
 | 
						|
# 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
 | 
						|
 | 
						|
# Override the default SAML entity ID
 | 
						|
SOCIAL_AUTH_SAML_SP_ENTITY_ID = "http://localhost:9991"
 | 
						|
 | 
						|
SOCIAL_AUTH_SUBDOMAIN = "auth"
 | 
						|
 | 
						|
MEMCACHED_USERNAME: str | None = None
 | 
						|
 | 
						|
SCIM_CONFIG: dict[str, SCIMConfigDict] = {
 | 
						|
    "zulip": {
 | 
						|
        "bearer_token": "token1234",
 | 
						|
        "scim_client_name": "test-scim-client",
 | 
						|
        "name_formatted_included": True,
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
SELF_HOSTING_MANAGEMENT_SUBDOMAIN = "selfhosting"
 | 
						|
DEVELOPMENT_DISABLE_PUSH_BOUNCER_DOMAIN_CHECK = True
 | 
						|
ZULIP_SERVICES_URL = f"http://push.{EXTERNAL_HOST}"
 | 
						|
 | 
						|
ZULIP_SERVICE_PUSH_NOTIFICATIONS = True
 | 
						|
ZULIP_SERVICE_SUBMIT_USAGE_STATISTICS = True
 | 
						|
 | 
						|
# 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
 | 
						|
 | 
						|
# 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
 |