mirror of
https://github.com/home-assistant/core.git
synced 2025-07-23 13:17:32 +00:00
Merge pull request #5580 from fakezeta/Added_notify.twilio_call
Added notify.twilio_call component for Voice calling with Twilio
This commit is contained in:
commit
0f939d6906
@ -272,6 +272,7 @@ omit =
|
|||||||
homeassistant/components/notify/telegram.py
|
homeassistant/components/notify/telegram.py
|
||||||
homeassistant/components/notify/telstra.py
|
homeassistant/components/notify/telstra.py
|
||||||
homeassistant/components/notify/twilio_sms.py
|
homeassistant/components/notify/twilio_sms.py
|
||||||
|
homeassistant/components/notify/twilio_call.py
|
||||||
homeassistant/components/notify/twitter.py
|
homeassistant/components/notify/twitter.py
|
||||||
homeassistant/components/notify/xmpp.py
|
homeassistant/components/notify/xmpp.py
|
||||||
homeassistant/components/nuimo_controller.py
|
homeassistant/components/nuimo_controller.py
|
||||||
|
74
homeassistant/components/notify/twilio_call.py
Normal file
74
homeassistant/components/notify/twilio_call.py
Normal file
@ -0,0 +1,74 @@
|
|||||||
|
"""
|
||||||
|
Twilio Call platform for notify component.
|
||||||
|
|
||||||
|
For more details about this platform, please refer to the documentation at
|
||||||
|
https://home-assistant.io/components/notify.twilio_call/
|
||||||
|
"""
|
||||||
|
import logging
|
||||||
|
import urllib
|
||||||
|
|
||||||
|
import voluptuous as vol
|
||||||
|
|
||||||
|
import homeassistant.helpers.config_validation as cv
|
||||||
|
from homeassistant.components.notify import (
|
||||||
|
ATTR_TARGET, PLATFORM_SCHEMA, BaseNotificationService)
|
||||||
|
|
||||||
|
_LOGGER = logging.getLogger(__name__)
|
||||||
|
REQUIREMENTS = ["twilio==5.7.0"]
|
||||||
|
|
||||||
|
|
||||||
|
CONF_ACCOUNT_SID = "account_sid"
|
||||||
|
CONF_AUTH_TOKEN = "auth_token"
|
||||||
|
CONF_FROM_NUMBER = "from_number"
|
||||||
|
|
||||||
|
PLATFORM_SCHEMA = PLATFORM_SCHEMA.extend({
|
||||||
|
vol.Required(CONF_ACCOUNT_SID): cv.string,
|
||||||
|
vol.Required(CONF_AUTH_TOKEN): cv.string,
|
||||||
|
vol.Required(CONF_FROM_NUMBER):
|
||||||
|
vol.All(cv.string, vol.Match(r"^\+?[1-9]\d{1,14}$")),
|
||||||
|
})
|
||||||
|
|
||||||
|
|
||||||
|
def get_service(hass, config, discovery_info=None):
|
||||||
|
"""Get the Twilio Call notification service."""
|
||||||
|
# pylint: disable=import-error
|
||||||
|
from twilio.rest import TwilioRestClient
|
||||||
|
|
||||||
|
twilio_client = TwilioRestClient(config[CONF_ACCOUNT_SID],
|
||||||
|
config[CONF_AUTH_TOKEN])
|
||||||
|
|
||||||
|
return TwilioCallNotificationService(twilio_client,
|
||||||
|
config[CONF_FROM_NUMBER])
|
||||||
|
|
||||||
|
|
||||||
|
class TwilioCallNotificationService(BaseNotificationService):
|
||||||
|
"""Implement the notification service for the Twilio Call service."""
|
||||||
|
|
||||||
|
def __init__(self, twilio_client, from_number):
|
||||||
|
"""Initialize the service."""
|
||||||
|
self.client = twilio_client
|
||||||
|
self.from_number = from_number
|
||||||
|
|
||||||
|
def send_message(self, message="", **kwargs):
|
||||||
|
"""Call to specified target users."""
|
||||||
|
from twilio import TwilioRestException
|
||||||
|
|
||||||
|
targets = kwargs.get(ATTR_TARGET)
|
||||||
|
|
||||||
|
if not targets:
|
||||||
|
_LOGGER.info("At least 1 target is required")
|
||||||
|
return
|
||||||
|
|
||||||
|
if message.startswith(("http://", "https://")):
|
||||||
|
twimlet_url = message
|
||||||
|
else:
|
||||||
|
twimlet_url = "http://twimlets.com/message?Message="
|
||||||
|
twimlet_url += urllib.parse.quote(message, safe="")
|
||||||
|
|
||||||
|
for target in targets:
|
||||||
|
try:
|
||||||
|
self.client.calls.create(to=target,
|
||||||
|
url=twimlet_url,
|
||||||
|
from_=self.from_number)
|
||||||
|
except TwilioRestException as exc:
|
||||||
|
_LOGGER.error(exc)
|
@ -13,7 +13,7 @@ from homeassistant.components.notify import (
|
|||||||
ATTR_TARGET, PLATFORM_SCHEMA, BaseNotificationService)
|
ATTR_TARGET, PLATFORM_SCHEMA, BaseNotificationService)
|
||||||
|
|
||||||
_LOGGER = logging.getLogger(__name__)
|
_LOGGER = logging.getLogger(__name__)
|
||||||
REQUIREMENTS = ["twilio==5.4.0"]
|
REQUIREMENTS = ["twilio==5.7.0"]
|
||||||
|
|
||||||
|
|
||||||
CONF_ACCOUNT_SID = "account_sid"
|
CONF_ACCOUNT_SID = "account_sid"
|
||||||
|
@ -635,8 +635,9 @@ tikteck==0.4
|
|||||||
# homeassistant.components.switch.transmission
|
# homeassistant.components.switch.transmission
|
||||||
transmissionrpc==0.11
|
transmissionrpc==0.11
|
||||||
|
|
||||||
|
# homeassistant.components.notify.twilio_call
|
||||||
# homeassistant.components.notify.twilio_sms
|
# homeassistant.components.notify.twilio_sms
|
||||||
twilio==5.4.0
|
twilio==5.7.0
|
||||||
|
|
||||||
# homeassistant.components.sensor.uber
|
# homeassistant.components.sensor.uber
|
||||||
uber_rides==0.2.7
|
uber_rides==0.2.7
|
||||||
|
Loading…
x
Reference in New Issue
Block a user