-
-
Notifications
You must be signed in to change notification settings - Fork 33.8k
Nello.io lock support #8957
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Nello.io lock support #8957
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,99 @@ | ||
""" | ||
Nello.io lock platform. | ||
|
||
For more details about this platform, please refer to the documentation | ||
https://home-assistant.io/components/lock.nello/ | ||
""" | ||
from itertools import filterfalse | ||
import logging | ||
|
||
import voluptuous as vol | ||
|
||
import homeassistant.helpers.config_validation as cv | ||
from homeassistant.components.lock import (LockDevice, PLATFORM_SCHEMA) | ||
from homeassistant.const import (CONF_PASSWORD, CONF_USERNAME) | ||
|
||
REQUIREMENTS = ['pynello==1.5'] | ||
|
||
_LOGGER = logging.getLogger(__name__) | ||
|
||
ATTR_ADDRESS = 'address' | ||
ATTR_LOCATION_ID = 'location_id' | ||
EVENT_DOOR_BELL = 'nello_bell_ring' | ||
|
||
PLATFORM_SCHEMA = PLATFORM_SCHEMA.extend({ | ||
vol.Required(CONF_USERNAME): cv.string, | ||
vol.Required(CONF_PASSWORD): cv.string | ||
}) | ||
|
||
|
||
# pylint: disable=unused-argument | ||
def setup_platform(hass, config, add_devices, discovery_info=None): | ||
"""Set up the Nello lock platform.""" | ||
from pynello import Nello | ||
nello = Nello(config.get(CONF_USERNAME), config.get(CONF_PASSWORD)) | ||
add_devices([NelloLock(lock) for lock in nello.locations], True) | ||
|
||
|
||
class NelloLock(LockDevice): | ||
"""Representation of a Nello lock.""" | ||
|
||
def __init__(self, nello_lock): | ||
"""Initialize the lock.""" | ||
self._nello_lock = nello_lock | ||
self._device_attrs = None | ||
self._activity = None | ||
self._name = None | ||
|
||
@property | ||
def name(self): | ||
"""Return the name of the lock.""" | ||
return self._name | ||
|
||
@property | ||
def is_locked(self): | ||
"""Return true if lock is locked.""" | ||
return True | ||
|
||
@property | ||
def device_state_attributes(self): | ||
"""Return the device specific state attributes.""" | ||
return self._device_attrs | ||
|
||
def update(self): | ||
"""Update the nello lock properties.""" | ||
self._nello_lock.update() | ||
# Location identifiers | ||
location_id = self._nello_lock.location_id | ||
short_id = self._nello_lock.short_id | ||
address = self._nello_lock.address | ||
self._name = 'Nello {}'.format(short_id) | ||
self._device_attrs = { | ||
ATTR_ADDRESS: address, | ||
ATTR_LOCATION_ID: location_id | ||
} | ||
# Process recent activity | ||
activity = self._nello_lock.activity | ||
if self._activity: | ||
# Filter out old events | ||
new_activity = list( | ||
filterfalse(lambda x: x in self._activity, activity)) | ||
if new_activity: | ||
for act in new_activity: | ||
activity_type = act.get('type') | ||
if activity_type == 'bell.ring.denied': | ||
event_data = { | ||
'address': address, | ||
'date': act.get('date'), | ||
'description': act.get('description'), | ||
'location_id': location_id, | ||
'short_id': short_id | ||
} | ||
self.hass.bus.fire(EVENT_DOOR_BELL, event_data) | ||
# Save the activity history so that we don't trigger an event twice | ||
self._activity = activity | ||
|
||
def unlock(self, **kwargs): | ||
"""Unlock the device.""" | ||
if not self._nello_lock.open_door(): | ||
_LOGGER.error("Failed to unlock") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This method is a little confusing. Isn't
self._locked
always going to be reset toTrue
before this method exits?Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes. See 55ef048