Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
Core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mirrored_repos
HomeAssistant
Core
Commits
a855a9bf
Commit
a855a9bf
authored
9 years ago
by
Florian Holzapfel
Browse files
Options
Downloads
Patches
Plain Diff
provide sms notifications via messagebird
parent
d28116f2
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.coveragerc
+1
-0
1 addition, 0 deletions
.coveragerc
homeassistant/components/notify/message_bird.py
+77
-0
77 additions, 0 deletions
homeassistant/components/notify/message_bird.py
requirements_all.txt
+3
-0
3 additions, 0 deletions
requirements_all.txt
with
81 additions
and
0 deletions
.coveragerc
+
1
−
0
View file @
a855a9bf
...
...
@@ -109,6 +109,7 @@ omit =
homeassistant/components/notify/free_mobile.py
homeassistant/components/notify/googlevoice.py
homeassistant/components/notify/instapush.py
homeassistant/components/notify/message_bird.py
homeassistant/components/notify/nma.py
homeassistant/components/notify/pushbullet.py
homeassistant/components/notify/pushetta.py
...
...
This diff is collapsed.
Click to expand it.
homeassistant/components/notify/message_bird.py
0 → 100644
+
77
−
0
View file @
a855a9bf
"""
MessageBird platform for notify component.
For more details about this platform, please refer to the documentation at
https://home-assistant.io/components/notify.message_bird/
"""
import
logging
from
homeassistant.components.notify
import
(
ATTR_TARGET
,
BaseNotificationService
)
from
homeassistant.const
import
CONF_API_KEY
CONF_SENDER
=
'
sender
'
_LOGGER
=
logging
.
getLogger
(
__name__
)
REQUIREMENTS
=
[
'
messagebird==1.1.1
'
]
def
is_valid_sender
(
sender
):
"""
Test if the sender config option is valid.
"""
length
=
len
(
sender
)
if
length
>
1
:
if
sender
[
0
]
==
'
+
'
:
return
sender
[
1
:].
isdigit
()
elif
length
<=
11
:
return
sender
.
isalpha
()
return
False
# pylint: disable=unused-argument
def
get_service
(
hass
,
config
):
"""
Get the MessageBird notification service.
"""
from
messagebird
import
Client
if
CONF_API_KEY
not
in
config
:
_LOGGER
.
error
(
"
Unable to find config key
'
%s
'"
,
CONF_API_KEY
)
return
None
sender
=
config
.
get
(
CONF_SENDER
,
'
HA
'
)
if
not
is_valid_sender
(
sender
):
_LOGGER
.
error
(
'
Sender is invalid: It must be a phone number or
'
+
'
a string not longer than 11 characters.
'
)
return
None
return
MessageBirdNotificationService
(
sender
,
Client
(
config
[
CONF_API_KEY
]))
# pylint: disable=too-few-public-methods
class
MessageBirdNotificationService
(
BaseNotificationService
):
"""
Implement the notification service for MessageBird.
"""
def
__init__
(
self
,
sender
,
client
):
"""
Initialize the service.
"""
self
.
sender
=
sender
self
.
client
=
client
def
send_message
(
self
,
message
=
None
,
**
kwargs
):
"""
Send a message to a specified target.
"""
from
messagebird.client
import
ErrorException
targets
=
kwargs
.
get
(
ATTR_TARGET
)
if
not
targets
:
_LOGGER
.
error
(
'
No target specified.
'
)
return
if
not
isinstance
(
targets
,
list
):
targets
=
[
targets
]
for
target
in
targets
:
try
:
self
.
client
.
message_create
(
self
.
sender
,
target
,
message
,
{
'
reference
'
:
'
HA
'
})
except
ErrorException
as
exception
:
_LOGGER
.
error
(
'
Failed to notify %s: %s
'
,
target
,
exception
)
continue
This diff is collapsed.
Click to expand it.
requirements_all.txt
+
3
−
0
View file @
a855a9bf
...
...
@@ -114,6 +114,9 @@ liffylights==0.9.4
# homeassistant.components.light.limitlessled
limitlessled==1.0.0
# homeassistant.components.notify.message_bird
messagebird==1.1.1
# homeassistant.components.sensor.mfi
# homeassistant.components.switch.mfi
mficlient==0.3.0
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment