__init__.py 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312
  1. # switchbot-mqtt - MQTT client controlling SwitchBot button & curtain automators,
  2. # compatible with home-assistant.io's MQTT Switch & Cover platform
  3. #
  4. # Copyright (C) 2020 Fabian Peter Hammerle <fabian@hammerle.me>
  5. #
  6. # This program is free software: you can redistribute it and/or modify
  7. # it under the terms of the GNU General Public License as published by
  8. # the Free Software Foundation, either version 3 of the License, or
  9. # any later version.
  10. #
  11. # This program is distributed in the hope that it will be useful,
  12. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. # GNU General Public License for more details.
  15. #
  16. # You should have received a copy of the GNU General Public License
  17. # along with this program. If not, see <https://www.gnu.org/licenses/>.
  18. import abc
  19. import argparse
  20. import enum
  21. import logging
  22. import pathlib
  23. import re
  24. import typing
  25. import paho.mqtt.client
  26. import switchbot
  27. _LOGGER = logging.getLogger(__name__)
  28. _MAC_ADDRESS_REGEX = re.compile(r"^[0-9a-f]{2}(:[0-9a-f]{2}){5}$")
  29. class _MQTTTopicPlaceholder(enum.Enum):
  30. MAC_ADDRESS = "MAC_ADDRESS"
  31. _MQTTTopicLevel = typing.Union[str, _MQTTTopicPlaceholder]
  32. # "homeassistant" for historic reason, may be parametrized in future
  33. _MQTT_TOPIC_LEVELS_PREFIX = ["homeassistant"] # type: typing.List[_MQTTTopicLevel]
  34. def _mac_address_valid(mac_address: str) -> bool:
  35. return _MAC_ADDRESS_REGEX.match(mac_address.lower()) is not None
  36. class _MQTTControlledActor(abc.ABC):
  37. MQTT_COMMAND_TOPIC_LEVELS = NotImplemented # type: typing.List[_MQTTTopicLevel]
  38. MQTT_STATE_TOPIC_LEVELS = NotImplemented # type: typing.List[_MQTTTopicLevel]
  39. def __init__(self, mac_address: str) -> None:
  40. self._mac_address = mac_address
  41. @abc.abstractmethod
  42. def execute_command(
  43. self, mqtt_message_payload: bytes, mqtt_client: paho.mqtt.client.Client
  44. ) -> None:
  45. raise NotImplementedError()
  46. @classmethod
  47. def _mqtt_command_callback(
  48. cls,
  49. mqtt_client: paho.mqtt.client.Client,
  50. userdata: None,
  51. message: paho.mqtt.client.MQTTMessage,
  52. ) -> None:
  53. # pylint: disable=unused-argument; callback
  54. # https://github.com/eclipse/paho.mqtt.python/blob/v1.5.0/src/paho/mqtt/client.py#L469
  55. _LOGGER.debug("received topic=%s payload=%r", message.topic, message.payload)
  56. if message.retain:
  57. _LOGGER.info("ignoring retained message")
  58. return
  59. topic_split = message.topic.split("/")
  60. if len(topic_split) != len(cls.MQTT_COMMAND_TOPIC_LEVELS):
  61. _LOGGER.warning("unexpected topic %s", message.topic)
  62. return
  63. mac_address = None
  64. for given_part, expected_part in zip(
  65. topic_split, cls.MQTT_COMMAND_TOPIC_LEVELS
  66. ):
  67. if expected_part == _MQTTTopicPlaceholder.MAC_ADDRESS:
  68. mac_address = given_part
  69. elif expected_part != given_part:
  70. _LOGGER.warning("unexpected topic %s", message.topic)
  71. return
  72. assert mac_address
  73. if not _mac_address_valid(mac_address):
  74. _LOGGER.warning("invalid mac address %s", mac_address)
  75. return
  76. cls(mac_address=mac_address).execute_command(
  77. mqtt_message_payload=message.payload, mqtt_client=mqtt_client
  78. )
  79. @classmethod
  80. def mqtt_subscribe(cls, mqtt_client: paho.mqtt.client.Client) -> None:
  81. command_topic = "/".join(
  82. "+" if isinstance(l, _MQTTTopicPlaceholder) else l
  83. for l in cls.MQTT_COMMAND_TOPIC_LEVELS
  84. )
  85. _LOGGER.info("subscribing to MQTT topic %r", command_topic)
  86. mqtt_client.subscribe(command_topic)
  87. mqtt_client.message_callback_add(
  88. sub=command_topic, callback=cls._mqtt_command_callback
  89. )
  90. def _mqtt_publish(
  91. self,
  92. topic_levels: typing.List[_MQTTTopicLevel],
  93. payload: bytes,
  94. mqtt_client: paho.mqtt.client.Client,
  95. ) -> None:
  96. topic = "/".join(
  97. self._mac_address
  98. if l == _MQTTTopicPlaceholder.MAC_ADDRESS
  99. else typing.cast(str, l)
  100. for l in topic_levels
  101. )
  102. # https://pypi.org/project/paho-mqtt/#publishing
  103. _LOGGER.debug("publishing topic=%s payload=%r", topic, payload)
  104. message_info = mqtt_client.publish(
  105. topic=topic, payload=payload, retain=True
  106. ) # type: paho.mqtt.client.MQTTMessageInfo
  107. # wait before checking status?
  108. if message_info.rc != paho.mqtt.client.MQTT_ERR_SUCCESS:
  109. _LOGGER.error(
  110. "Failed to publish MQTT message on topic %s (rc=%d)",
  111. topic,
  112. message_info.rc,
  113. )
  114. def report_state(self, state: bytes, mqtt_client: paho.mqtt.client.Client) -> None:
  115. self._mqtt_publish(
  116. topic_levels=self.MQTT_STATE_TOPIC_LEVELS,
  117. payload=state,
  118. mqtt_client=mqtt_client,
  119. )
  120. class _ButtonAutomator(_MQTTControlledActor):
  121. # https://www.home-assistant.io/integrations/switch.mqtt/
  122. MQTT_COMMAND_TOPIC_LEVELS = _MQTT_TOPIC_LEVELS_PREFIX + [
  123. "switch",
  124. "switchbot",
  125. _MQTTTopicPlaceholder.MAC_ADDRESS,
  126. "set",
  127. ]
  128. MQTT_STATE_TOPIC_LEVELS = _MQTT_TOPIC_LEVELS_PREFIX + [
  129. "switch",
  130. "switchbot",
  131. _MQTTTopicPlaceholder.MAC_ADDRESS,
  132. "state",
  133. ]
  134. def __init__(self, mac_address) -> None:
  135. self._device = switchbot.Switchbot(mac=mac_address)
  136. super().__init__(mac_address=mac_address)
  137. def execute_command(
  138. self, mqtt_message_payload: bytes, mqtt_client: paho.mqtt.client.Client
  139. ) -> None:
  140. # https://www.home-assistant.io/integrations/switch.mqtt/#payload_on
  141. if mqtt_message_payload.lower() == b"on":
  142. if not self._device.turn_on():
  143. _LOGGER.error("failed to turn on switchbot %s", self._mac_address)
  144. else:
  145. _LOGGER.info("switchbot %s turned on", self._mac_address)
  146. # https://www.home-assistant.io/integrations/switch.mqtt/#state_on
  147. self.report_state(mqtt_client=mqtt_client, state=b"ON")
  148. # https://www.home-assistant.io/integrations/switch.mqtt/#payload_off
  149. elif mqtt_message_payload.lower() == b"off":
  150. if not self._device.turn_off():
  151. _LOGGER.error("failed to turn off switchbot %s", self._mac_address)
  152. else:
  153. _LOGGER.info("switchbot %s turned off", self._mac_address)
  154. self.report_state(mqtt_client=mqtt_client, state=b"OFF")
  155. else:
  156. _LOGGER.warning(
  157. "unexpected payload %r (expected 'ON' or 'OFF')", mqtt_message_payload
  158. )
  159. class _CurtainMotor(_MQTTControlledActor):
  160. # https://www.home-assistant.io/integrations/cover.mqtt/
  161. MQTT_COMMAND_TOPIC_LEVELS = _MQTT_TOPIC_LEVELS_PREFIX + [
  162. "cover",
  163. "switchbot-curtain",
  164. _MQTTTopicPlaceholder.MAC_ADDRESS,
  165. "set",
  166. ]
  167. MQTT_STATE_TOPIC_LEVELS = _MQTT_TOPIC_LEVELS_PREFIX + [
  168. "cover",
  169. "switchbot-curtain",
  170. _MQTTTopicPlaceholder.MAC_ADDRESS,
  171. "state",
  172. ]
  173. def __init__(self, mac_address) -> None:
  174. self._device = switchbot.SwitchbotCurtain(mac=mac_address)
  175. super().__init__(mac_address=mac_address)
  176. def execute_command(
  177. self, mqtt_message_payload: bytes, mqtt_client: paho.mqtt.client.Client
  178. ) -> None:
  179. # https://www.home-assistant.io/integrations/cover.mqtt/#payload_open
  180. if mqtt_message_payload.lower() == b"open":
  181. if not self._device.open():
  182. _LOGGER.error("failed to open switchbot curtain %s", self._mac_address)
  183. else:
  184. _LOGGER.info("switchbot curtain %s opening", self._mac_address)
  185. # > state_opening string (Optional, default: opening)
  186. # https://www.home-assistant.io/integrations/cover.mqtt/#state_opening
  187. self.report_state(mqtt_client=mqtt_client, state=b"opening")
  188. elif mqtt_message_payload.lower() == b"close":
  189. if not self._device.close():
  190. _LOGGER.error("failed to close switchbot curtain %s", self._mac_address)
  191. else:
  192. _LOGGER.info("switchbot curtain %s closing", self._mac_address)
  193. # https://www.home-assistant.io/integrations/cover.mqtt/#state_closing
  194. self.report_state(mqtt_client=mqtt_client, state=b"closing")
  195. elif mqtt_message_payload.lower() == b"stop":
  196. if not self._device.stop():
  197. _LOGGER.error("failed to stop switchbot curtain %s", self._mac_address)
  198. else:
  199. _LOGGER.info("switchbot curtain %s stopped", self._mac_address)
  200. # no "stopped" state mentioned at
  201. # https://www.home-assistant.io/integrations/cover.mqtt/#configuration-variables
  202. # https://community.home-assistant.io/t/mqtt-how-to-remove-retained-messages/79029/2
  203. self.report_state(mqtt_client=mqtt_client, state=b"")
  204. else:
  205. _LOGGER.warning(
  206. "unexpected payload %r (expected 'OPEN', 'CLOSE', or 'STOP')",
  207. mqtt_message_payload,
  208. )
  209. def _mqtt_on_connect(
  210. mqtt_client: paho.mqtt.client.Client,
  211. user_data: typing.Any,
  212. flags: typing.Dict,
  213. return_code: int,
  214. ) -> None:
  215. # pylint: disable=unused-argument; callback
  216. # https://github.com/eclipse/paho.mqtt.python/blob/v1.5.0/src/paho/mqtt/client.py#L441
  217. assert return_code == 0, return_code # connection accepted
  218. mqtt_broker_host, mqtt_broker_port = mqtt_client.socket().getpeername()
  219. _LOGGER.debug("connected to MQTT broker %s:%d", mqtt_broker_host, mqtt_broker_port)
  220. _ButtonAutomator.mqtt_subscribe(mqtt_client=mqtt_client)
  221. _CurtainMotor.mqtt_subscribe(mqtt_client=mqtt_client)
  222. def _run(
  223. mqtt_host: str,
  224. mqtt_port: int,
  225. mqtt_username: typing.Optional[str],
  226. mqtt_password: typing.Optional[str],
  227. ) -> None:
  228. # https://pypi.org/project/paho-mqtt/
  229. mqtt_client = paho.mqtt.client.Client()
  230. mqtt_client.on_connect = _mqtt_on_connect
  231. _LOGGER.info("connecting to MQTT broker %s:%d", mqtt_host, mqtt_port)
  232. if mqtt_username:
  233. mqtt_client.username_pw_set(username=mqtt_username, password=mqtt_password)
  234. elif mqtt_password:
  235. raise ValueError("Missing MQTT username")
  236. mqtt_client.connect(host=mqtt_host, port=mqtt_port)
  237. # https://github.com/eclipse/paho.mqtt.python/blob/master/src/paho/mqtt/client.py#L1740
  238. mqtt_client.loop_forever()
  239. def _main() -> None:
  240. logging.basicConfig(
  241. level=logging.DEBUG,
  242. format="%(asctime)s:%(levelname)s:%(name)s:%(message)s",
  243. datefmt="%Y-%m-%dT%H:%M:%S%z",
  244. )
  245. argparser = argparse.ArgumentParser(
  246. description="MQTT client controlling SwitchBot button automators, "
  247. "compatible with home-assistant.io's MQTT Switch platform"
  248. )
  249. argparser.add_argument("--mqtt-host", type=str, required=True)
  250. argparser.add_argument("--mqtt-port", type=int, default=1883)
  251. argparser.add_argument("--mqtt-username", type=str)
  252. password_argument_group = argparser.add_mutually_exclusive_group()
  253. password_argument_group.add_argument("--mqtt-password", type=str)
  254. password_argument_group.add_argument(
  255. "--mqtt-password-file",
  256. type=pathlib.Path,
  257. metavar="PATH",
  258. dest="mqtt_password_path",
  259. help="stripping trailing newline",
  260. )
  261. args = argparser.parse_args()
  262. if args.mqtt_password_path:
  263. # .read_text() replaces \r\n with \n
  264. mqtt_password = args.mqtt_password_path.read_bytes().decode()
  265. if mqtt_password.endswith("\r\n"):
  266. mqtt_password = mqtt_password[:-2]
  267. elif mqtt_password.endswith("\n"):
  268. mqtt_password = mqtt_password[:-1]
  269. else:
  270. mqtt_password = args.mqtt_password
  271. _run(
  272. mqtt_host=args.mqtt_host,
  273. mqtt_port=args.mqtt_port,
  274. mqtt_username=args.mqtt_username,
  275. mqtt_password=mqtt_password,
  276. )