core/homeassistant/components/wake_on_lan/switch.py

105 lines
3.0 KiB
Python
Raw Normal View History

"""Support for wake on lan."""
2016-03-18 14:01:53 +00:00
import logging
import platform
import subprocess as sp
2016-08-25 04:36:41 +00:00
import voluptuous as vol
import wakeonlan
2016-08-25 04:36:41 +00:00
2018-09-10 14:07:31 +00:00
from homeassistant.components.switch import PLATFORM_SCHEMA, SwitchDevice
from homeassistant.const import CONF_BROADCAST_ADDRESS, CONF_HOST, CONF_MAC, CONF_NAME
2016-08-25 04:36:41 +00:00
import homeassistant.helpers.config_validation as cv
from homeassistant.helpers.script import Script
2016-03-18 14:01:53 +00:00
2016-08-25 04:36:41 +00:00
_LOGGER = logging.getLogger(__name__)
2019-07-31 19:25:30 +00:00
CONF_OFF_ACTION = "turn_off"
2016-08-25 04:36:41 +00:00
2019-07-31 19:25:30 +00:00
DEFAULT_NAME = "Wake on LAN"
2016-03-18 14:01:53 +00:00
DEFAULT_PING_TIMEOUT = 1
2019-07-31 19:25:30 +00:00
PLATFORM_SCHEMA = PLATFORM_SCHEMA.extend(
{
vol.Required(CONF_MAC): cv.string,
2019-07-31 19:25:30 +00:00
vol.Optional(CONF_BROADCAST_ADDRESS): cv.string,
vol.Optional(CONF_HOST): cv.string,
vol.Optional(CONF_NAME, default=DEFAULT_NAME): cv.string,
vol.Optional(CONF_OFF_ACTION): cv.SCRIPT_SCHEMA,
}
)
2016-08-25 04:36:41 +00:00
2016-03-18 14:01:53 +00:00
def setup_platform(hass, config, add_entities, discovery_info=None):
"""Set up a wake on lan switch."""
2018-09-10 14:07:31 +00:00
broadcast_address = config.get(CONF_BROADCAST_ADDRESS)
2016-08-25 04:36:41 +00:00
host = config.get(CONF_HOST)
mac_address = config[CONF_MAC]
name = config[CONF_NAME]
off_action = config.get(CONF_OFF_ACTION)
2016-08-25 04:36:41 +00:00
2019-07-31 19:25:30 +00:00
add_entities(
[WolSwitch(hass, name, host, mac_address, off_action, broadcast_address)], True
2019-07-31 19:25:30 +00:00
)
2016-03-18 14:01:53 +00:00
class WolSwitch(SwitchDevice):
2016-03-18 14:01:53 +00:00
"""Representation of a wake on lan switch."""
2019-07-31 19:25:30 +00:00
def __init__(self, hass, name, host, mac_address, off_action, broadcast_address):
2016-03-18 14:01:53 +00:00
"""Initialize the WOL switch."""
self._hass = hass
self._name = name
self._host = host
self._mac_address = mac_address
self._broadcast_address = broadcast_address
self._off_script = Script(hass, off_action) if off_action else None
2016-03-18 14:01:53 +00:00
self._state = False
@property
def is_on(self):
"""Return true if switch is on."""
2016-03-18 14:01:53 +00:00
return self._state
@property
def name(self):
"""Return the name of the switch."""
2016-03-18 14:01:53 +00:00
return self._name
def turn_on(self, **kwargs):
2016-03-18 14:01:53 +00:00
"""Turn the device on."""
if self._broadcast_address:
wakeonlan.send_magic_packet(
2019-07-31 19:25:30 +00:00
self._mac_address, ip_address=self._broadcast_address
)
else:
wakeonlan.send_magic_packet(self._mac_address)
2016-03-18 14:01:53 +00:00
def turn_off(self, **kwargs):
"""Turn the device off if an off action is present."""
if self._off_script is not None:
self._off_script.run()
2016-03-18 14:01:53 +00:00
def update(self):
"""Check if device is on and update the state."""
2019-07-31 19:25:30 +00:00
if platform.system().lower() == "windows":
ping_cmd = [
"ping",
"-n",
"1",
"-w",
str(DEFAULT_PING_TIMEOUT * 1000),
str(self._host),
]
2016-03-18 14:01:53 +00:00
else:
2019-07-31 19:25:30 +00:00
ping_cmd = [
"ping",
"-c",
"1",
"-W",
str(DEFAULT_PING_TIMEOUT),
str(self._host),
]
2016-03-18 14:01:53 +00:00
status = sp.call(ping_cmd, stdout=sp.DEVNULL, stderr=sp.DEVNULL)
2016-03-18 14:01:53 +00:00
self._state = not bool(status)