* Do less inside try statements * Replace controller id with config entry id since it doesn't serve a purpose anymore * Improve how controller connection state is communicated in the client and device tracker Remove the need to disable arguments-differ lint * Remove broad exception handling from config flow I'm not sure there ever was a reason for this more than to catch all exceptions * Replace site string with constant for SSDP title_placeholders * Unload platforms in the defacto way * Noone reads the method descriptions * Improve file descriptions
34 lines
1,010 B
Python
34 lines
1,010 B
Python
"""Constants for the UniFi component."""
|
|
import logging
|
|
|
|
LOGGER = logging.getLogger(__package__)
|
|
DOMAIN = "unifi"
|
|
|
|
CONF_CONTROLLER = "controller"
|
|
CONF_SITE_ID = "site"
|
|
|
|
UNIFI_WIRELESS_CLIENTS = "unifi_wireless_clients"
|
|
|
|
CONF_ALLOW_BANDWIDTH_SENSORS = "allow_bandwidth_sensors"
|
|
CONF_ALLOW_UPTIME_SENSORS = "allow_uptime_sensors"
|
|
CONF_BLOCK_CLIENT = "block_client"
|
|
CONF_DETECTION_TIME = "detection_time"
|
|
CONF_DPI_RESTRICTIONS = "dpi_restrictions"
|
|
CONF_IGNORE_WIRED_BUG = "ignore_wired_bug"
|
|
CONF_POE_CLIENTS = "poe_clients"
|
|
CONF_TRACK_CLIENTS = "track_clients"
|
|
CONF_TRACK_DEVICES = "track_devices"
|
|
CONF_TRACK_WIRED_CLIENTS = "track_wired_clients"
|
|
CONF_SSID_FILTER = "ssid_filter"
|
|
|
|
DEFAULT_ALLOW_BANDWIDTH_SENSORS = False
|
|
DEFAULT_ALLOW_UPTIME_SENSORS = False
|
|
DEFAULT_DPI_RESTRICTIONS = True
|
|
DEFAULT_IGNORE_WIRED_BUG = False
|
|
DEFAULT_POE_CLIENTS = True
|
|
DEFAULT_TRACK_CLIENTS = True
|
|
DEFAULT_TRACK_DEVICES = True
|
|
DEFAULT_TRACK_WIRED_CLIENTS = True
|
|
DEFAULT_DETECTION_TIME = 300
|
|
|
|
ATTR_MANUFACTURER = "Ubiquiti Networks"
|