59 lines
1.8 KiB
Python
59 lines
1.8 KiB
Python
"""Constants for the cloud component."""
|
|
DOMAIN = "cloud"
|
|
REQUEST_TIMEOUT = 10
|
|
|
|
PREF_ENABLE_ALEXA = "alexa_enabled"
|
|
PREF_ENABLE_GOOGLE = "google_enabled"
|
|
PREF_ENABLE_REMOTE = "remote_enabled"
|
|
PREF_GOOGLE_SECURE_DEVICES_PIN = "google_secure_devices_pin"
|
|
PREF_CLOUDHOOKS = "cloudhooks"
|
|
PREF_CLOUD_USER = "cloud_user"
|
|
PREF_GOOGLE_ENTITY_CONFIGS = "google_entity_configs"
|
|
PREF_GOOGLE_REPORT_STATE = "google_report_state"
|
|
PREF_ALEXA_ENTITY_CONFIGS = "alexa_entity_configs"
|
|
PREF_ALEXA_REPORT_STATE = "alexa_report_state"
|
|
PREF_OVERRIDE_NAME = "override_name"
|
|
PREF_DISABLE_2FA = "disable_2fa"
|
|
PREF_ALIASES = "aliases"
|
|
PREF_SHOULD_EXPOSE = "should_expose"
|
|
PREF_GOOGLE_LOCAL_WEBHOOK_ID = "google_local_webhook_id"
|
|
PREF_USERNAME = "username"
|
|
DEFAULT_SHOULD_EXPOSE = True
|
|
DEFAULT_DISABLE_2FA = False
|
|
DEFAULT_ALEXA_REPORT_STATE = False
|
|
DEFAULT_GOOGLE_REPORT_STATE = False
|
|
|
|
CONF_ALEXA = "alexa"
|
|
CONF_ALIASES = "aliases"
|
|
CONF_COGNITO_CLIENT_ID = "cognito_client_id"
|
|
CONF_ENTITY_CONFIG = "entity_config"
|
|
CONF_FILTER = "filter"
|
|
CONF_GOOGLE_ACTIONS = "google_actions"
|
|
CONF_RELAYER = "relayer"
|
|
CONF_USER_POOL_ID = "user_pool_id"
|
|
CONF_SUBSCRIPTION_INFO_URL = "subscription_info_url"
|
|
CONF_CLOUDHOOK_CREATE_URL = "cloudhook_create_url"
|
|
CONF_REMOTE_API_URL = "remote_api_url"
|
|
CONF_ACME_DIRECTORY_SERVER = "acme_directory_server"
|
|
CONF_ALEXA_ACCESS_TOKEN_URL = "alexa_access_token_url"
|
|
CONF_GOOGLE_ACTIONS_REPORT_STATE_URL = "google_actions_report_state_url"
|
|
CONF_ACCOUNT_LINK_URL = "account_link_url"
|
|
CONF_VOICE_API_URL = "voice_api_url"
|
|
|
|
MODE_DEV = "development"
|
|
MODE_PROD = "production"
|
|
|
|
DISPATCHER_REMOTE_UPDATE = "cloud_remote_update"
|
|
|
|
|
|
class InvalidTrustedNetworks(Exception):
|
|
"""Raised when invalid trusted networks config."""
|
|
|
|
|
|
class InvalidTrustedProxies(Exception):
|
|
"""Raised when invalid trusted proxies config."""
|
|
|
|
|
|
class RequireRelink(Exception):
|
|
"""The skill needs to be relinked."""
|