mirror of
https://github.com/esphome/esphome.git
synced 2026-08-22 22:26:21 +00:00
182 lines
5.4 KiB
Python
182 lines
5.4 KiB
Python
from esphome import automation
|
|
from esphome.automation import Condition, maybe_simple_id
|
|
import esphome.codegen as cg
|
|
from esphome.components import mqtt, web_server
|
|
import esphome.config_validation as cv
|
|
from esphome.const import (
|
|
CONF_ENTITY_CATEGORY,
|
|
CONF_ICON,
|
|
CONF_ID,
|
|
CONF_MQTT_ID,
|
|
CONF_ON_LOCK,
|
|
CONF_ON_UNLOCK,
|
|
CONF_WEB_SERVER,
|
|
)
|
|
from esphome.core import CORE, ID, CoroPriority, coroutine_with_priority
|
|
from esphome.core.entity_helpers import (
|
|
entity_duplicate_validator,
|
|
queue_entity_register,
|
|
setup_entity,
|
|
)
|
|
from esphome.cpp_generator import MockObj, MockObjClass, TemplateArgsType
|
|
from esphome.types import ConfigType, SafeExpType
|
|
|
|
CODEOWNERS = ["@esphome/core"]
|
|
IS_PLATFORM_COMPONENT = True
|
|
|
|
lock_ns = cg.esphome_ns.namespace("lock")
|
|
Lock = lock_ns.class_("Lock", cg.EntityBase)
|
|
LockPtr = Lock.operator("ptr")
|
|
LockCall = lock_ns.class_("LockCall")
|
|
|
|
UnlockAction = lock_ns.class_("UnlockAction", automation.Action)
|
|
LockAction = lock_ns.class_("LockAction", automation.Action)
|
|
OpenAction = lock_ns.class_("OpenAction", automation.Action)
|
|
LockPublishAction = lock_ns.class_("LockPublishAction", automation.Action)
|
|
|
|
LockCondition = lock_ns.class_("LockCondition", Condition)
|
|
LockStateForwarder = lock_ns.class_("LockStateForwarder")
|
|
|
|
LockState = lock_ns.enum("LockState")
|
|
|
|
LOCK_STATES = {
|
|
"OPEN": LockState.LOCK_STATE_OPEN,
|
|
"LOCKED": LockState.LOCK_STATE_LOCKED,
|
|
"UNLOCKED": LockState.LOCK_STATE_UNLOCKED,
|
|
"JAMMED": LockState.LOCK_STATE_JAMMED,
|
|
"OPENING": LockState.LOCK_STATE_OPENING,
|
|
"LOCKING": LockState.LOCK_STATE_LOCKING,
|
|
"UNLOCKING": LockState.LOCK_STATE_UNLOCKING,
|
|
}
|
|
|
|
validate_lock_state = cv.enum(LOCK_STATES, upper=True)
|
|
|
|
_LOCK_SCHEMA = (
|
|
cv.ENTITY_BASE_SCHEMA.extend(web_server.WEBSERVER_SORTING_SCHEMA)
|
|
.extend(cv.MQTT_COMMAND_COMPONENT_SCHEMA)
|
|
.extend(
|
|
{
|
|
cv.OnlyWith(CONF_MQTT_ID, "mqtt"): cv.declare_id(mqtt.MQTTLockComponent),
|
|
cv.Optional(CONF_ON_LOCK): automation.validate_automation({}),
|
|
cv.Optional(CONF_ON_UNLOCK): automation.validate_automation({}),
|
|
}
|
|
)
|
|
)
|
|
|
|
|
|
_LOCK_SCHEMA.add_extra(entity_duplicate_validator("lock"))
|
|
|
|
|
|
def lock_schema(
|
|
class_: MockObjClass = cv.UNDEFINED,
|
|
*,
|
|
icon: str = cv.UNDEFINED,
|
|
entity_category: str = cv.UNDEFINED,
|
|
) -> cv.Schema:
|
|
schema = {}
|
|
|
|
if class_ is not cv.UNDEFINED:
|
|
schema[cv.GenerateID()] = cv.declare_id(class_)
|
|
|
|
for key, default, validator in [
|
|
(CONF_ICON, icon, cv.icon),
|
|
(CONF_ENTITY_CATEGORY, entity_category, cv.entity_category),
|
|
]:
|
|
if default is not cv.UNDEFINED:
|
|
schema[cv.Optional(key, default=default)] = validator
|
|
|
|
return _LOCK_SCHEMA.extend(schema)
|
|
|
|
|
|
_CALLBACK_AUTOMATIONS = (
|
|
automation.CallbackAutomation(
|
|
CONF_ON_LOCK,
|
|
"add_on_state_callback",
|
|
forwarder=LockStateForwarder.template(LockState.LOCK_STATE_LOCKED),
|
|
),
|
|
automation.CallbackAutomation(
|
|
CONF_ON_UNLOCK,
|
|
"add_on_state_callback",
|
|
forwarder=LockStateForwarder.template(LockState.LOCK_STATE_UNLOCKED),
|
|
),
|
|
)
|
|
|
|
|
|
@setup_entity("lock")
|
|
async def _setup_lock_core(var: MockObj, config: ConfigType) -> None:
|
|
await automation.build_callback_automations(var, config, _CALLBACK_AUTOMATIONS)
|
|
|
|
if mqtt_id := config.get(CONF_MQTT_ID):
|
|
mqtt_ = cg.new_Pvariable(mqtt_id, var)
|
|
await mqtt.register_mqtt_component(mqtt_, config)
|
|
|
|
if web_server_config := config.get(CONF_WEB_SERVER):
|
|
await web_server.add_entity_config(var, web_server_config)
|
|
|
|
|
|
async def register_lock(var: MockObj, config: ConfigType) -> None:
|
|
if not CORE.has_id(config[CONF_ID]):
|
|
var = cg.Pvariable(config[CONF_ID], var)
|
|
queue_entity_register("lock", config)
|
|
CORE.register_platform_component("lock", var)
|
|
await _setup_lock_core(var, config)
|
|
|
|
|
|
async def new_lock(config: ConfigType, *args: SafeExpType) -> MockObj:
|
|
var = cg.new_Pvariable(config[CONF_ID], *args)
|
|
await register_lock(var, config)
|
|
return var
|
|
|
|
|
|
LOCK_ACTION_SCHEMA = maybe_simple_id(
|
|
{
|
|
cv.GenerateID(CONF_ID): cv.use_id(Lock),
|
|
}
|
|
)
|
|
|
|
|
|
@automation.register_action(
|
|
"lock.unlock", UnlockAction, LOCK_ACTION_SCHEMA, synchronous=True
|
|
)
|
|
@automation.register_action(
|
|
"lock.lock", LockAction, LOCK_ACTION_SCHEMA, synchronous=True
|
|
)
|
|
@automation.register_action(
|
|
"lock.open", OpenAction, LOCK_ACTION_SCHEMA, synchronous=True
|
|
)
|
|
async def lock_action_to_code(
|
|
config: ConfigType,
|
|
action_id: ID,
|
|
template_arg: cg.TemplateArguments,
|
|
args: TemplateArgsType,
|
|
) -> MockObj:
|
|
paren = await cg.get_variable(config[CONF_ID])
|
|
return cg.new_Pvariable(action_id, template_arg, paren)
|
|
|
|
|
|
@automation.register_condition("lock.is_locked", LockCondition, LOCK_ACTION_SCHEMA)
|
|
async def lock_is_on_to_code(
|
|
config: ConfigType,
|
|
condition_id: ID,
|
|
template_arg: cg.TemplateArguments,
|
|
args: TemplateArgsType,
|
|
) -> MockObj:
|
|
paren = await cg.get_variable(config[CONF_ID])
|
|
return cg.new_Pvariable(condition_id, template_arg, paren, True)
|
|
|
|
|
|
@automation.register_condition("lock.is_unlocked", LockCondition, LOCK_ACTION_SCHEMA)
|
|
async def lock_is_off_to_code(
|
|
config: ConfigType,
|
|
condition_id: ID,
|
|
template_arg: cg.TemplateArguments,
|
|
args: TemplateArgsType,
|
|
) -> MockObj:
|
|
paren = await cg.get_variable(config[CONF_ID])
|
|
return cg.new_Pvariable(condition_id, template_arg, paren, False)
|
|
|
|
|
|
@coroutine_with_priority(CoroPriority.CORE)
|
|
async def to_code(config: ConfigType) -> None:
|
|
cg.add_global(lock_ns.using)
|