-
-
Save haberda/b65113a1e505759f333a3c5f8feb4fef to your computer and use it in GitHub Desktop.
import hassapi as hass | |
import datetime | |
class reminder(hass.Hass): | |
def initialize(self): | |
self.set_namespace("reminder") | |
self.listen_event(self.set_reminder,'set_reminder', namespace='default') | |
self.listen_event(self.remove_reminder,'remove_reminder', namespace='default') | |
domain = 'reminder' | |
reminder_list = list(self.get_state(domain).keys()) | |
if len(reminder_list) > 0: | |
for reminder in reminder_list: | |
time = self.parse_datetime(self.get_state(reminder)) | |
att = self.get_state(reminder, attribute='all') | |
dt = datetime.datetime.now() | |
if dt.timestamp() > time.timestamp(): | |
self.remove_entity(reminder, namespace='default') | |
self.remove_entity(reminder, namespace='reminder') | |
else: | |
self.run_at(self.send_reminder, time, entity_id = reminder) | |
self.set_state(**att, namespace='default') | |
self.log('Subscribed to ' + reminder) | |
def set_reminder(self, event, data, kwargs): | |
"""Creates Reminder Entities to Track""" | |
if 'name' in data and 'time' in data and 'title' in data and 'recipient' in data and 'message' in data: | |
entity_name = 'reminder.' + data['name'] | |
entity_name = entity_name.replace(" ", "_") | |
else: | |
self.log('No reminder name defined, exiting') | |
return | |
self.set_state(entity_name, state=data['time'], attributes = { | |
"message": data['message'], | |
"title": data['title'], | |
"recipient": data['recipient']}, namespace='default') | |
self.add_entity(entity_name, state=data['time'], attributes = { | |
"message": data['message'], | |
"title": data['title'], | |
"recipient": data['recipient']}, namespace='reminder') | |
self.restart_app(self.name) | |
def send_reminder(self, kwargs): | |
"""Sends reminder then deletes entity""" | |
self.log('send_reminder') | |
state=self.get_state(kwargs['entity_id'], attribute="all") | |
attributes = state['attributes'] | |
self.notify(attributes['message'], title = attributes['title'], name = attributes['recipient'], namespace='default') | |
self.remove_entity(kwargs['entity_id'], namespace='default') | |
self.remove_entity(kwargs['entity_id'], namespace='reminder') | |
def remove_reminder (self, event, data, kwargs): | |
self.remove_entity(data['entity_id'], namespace='default') | |
self.remove_entity(data['entity_id'], namespace='reminder') | |
self.restart_app(self.name) |
Sure! Here is my appdaemon.yaml:
---
secrets: /config/secrets.yaml
appdaemon:
latitude: xxxxxxxxx
longitude: xxxxxxxxx
elevation: x
time_zone: xxtimezonexx
plugins:
HASS:
type: hass
http:
url: http://127.0.0.1:5050
admin:
api:
hadashboard:
namespaces:
reminder:
writeback: safe
Here is apps.yaml:
---
hello_world:
module: hello
class: HelloWorld
reminder:
module: reminder
class: reminder
Your namespaces:
key is in the wrong place in your appdaemon.yaml, It should reside indented under the appdaemon:
key. You have it at the top level.
Amazing - thank you for helping with this! I've got it working now and notifications are coming through. If you're still open to troubleshooting, it appears that reminders aren't getting deleted after they are firing. For example, reminder.name1
isn't deleting (though to be honest, I'm not sure which namespace it's failing to delete).
2022-11-19 12:45:08.621274 INFO AppDaemon: Initializing app hello_world using class HelloWorld from module hello
2022-11-19 12:45:08.629780 INFO AppDaemon: Initializing app reminder using class reminder from module reminder
2022-11-19 12:45:08.638049 INFO hello_world: Hello from AppDaemon
2022-11-19 12:45:08.641464 INFO hello_world: You are now ready to run Apps!
2022-11-19 13:28:59.773275 INFO HASS: Registering new service notify/po_andrewonly
2022-11-19 13:32:54.905814 WARNING reminder: reminder: Entity reminder.name1 not found in namespace default
2022-11-19 13:32:54.908232 INFO AppDaemon: reminder: Entity reminder.name1 created in namespace: default
2022-11-19 13:32:54.959953 INFO AppDaemon: Terminating reminder
2022-11-19 13:32:54.963842 INFO AppDaemon: Initializing app reminder using class reminder from module reminder
2022-11-19 13:32:55.015042 INFO reminder: Subscribed to reminder.name1
2022-11-19 13:34:00.018140 INFO reminder: send_reminder
2022-11-19 13:34:00.044620 WARNING HASS: Error Removing Home Assistant entity reminder.name1
2022-11-19 13:34:00.046224 WARNING HASS: Code: 405, error: 405: Method Not Allowed
Any thoughts?
Not sure why it wouldn't delete it. Couple things to try:
- Make sure you have the latest code from the gist
- Make sure there are no special characters in the names or messages
- See if you can use the remove_reminder event to delete the event
- When the app starts one of the first things it does is try and see if there are any orphaned reminders and delete them; see what happens when you manually restart it.
- Look in the AppDaemon web interface at the entities, you can look a the reminder namespace and see if it's getting stuck there
- You can comment out some of those delete commands and see if one will delete but not the other too. For example, lines 49 and 50.
See if any of those help.
- I am using the latest revision that adds an underscore to the entity name.
- I am only using lowercase, spaces, and numbers in names and messages.
- When I use remove_reminder, the front end says it fires successfully, but the logs are throwing the same
Method Not Allowed
warning:
2022-11-20 09:49:13.035382 WARNING HASS: Error Removing Home Assistant entity reminder.name1
2022-11-20 09:49:13.036443 WARNING HASS: Code: 405, error: 405: Method Not Allowed
- When I manually restart, there are no errors or warnings, which is interesting since it also runs
remove_reminder
. - Within the reminder namespace of the AppDaemon web interface, there are no entities listed. There are also no reminder. entities within the default namespace of the AppDaemon web interface, which is interesting. Despite this, home assistant still seems to think they exist.
- Here is what I did for your sixth point: When I comment out the line to delete from the
default
namespace and runremove_reminder
, there are no warnings.
def remove_reminder (self, event, data, kwargs):
#self.remove_entity(data['entity_id'], namespace='default')
self.remove_entity(data['entity_id'], namespace='reminder')
self.restart_app(self.name)
Conversely, when I comment out the line to delete from the reminder
namespace and run remove_reminder
, I do get get the method not allowed errors.
def remove_reminder (self, event, data, kwargs):
self.remove_entity(data['entity_id'], namespace='default')
#self.remove_entity(data['entity_id'], namespace='reminder')
self.restart_app(self.name)
Do you think it has anything to do with not setting a unique_id
?
Would you mind telling me how you setup the Active Reminders card in your example? Perhaps I'm just being overly fussy about this and the home assistant database will take care of cleanup over time?
I added some gists for the UI stuff. There are 2 scripts and an automation. The automation builds and maintains an input select with a list of the active reminders. However in the UI I use a custom card called autoentities that just populates any active reminders.
Automation:
https://gist.github.com/haberda/e107c442dee75c58bcd2db322da3a17e
Sctipts:
https://gist.github.com/haberda/b509816370af6c421b36dc8049a0a47f
UI:
https://gist.github.com/haberda/07a3a28e4bd2efc82754382cc0fe34d0
It could be done better, but this works for now. The automation, scripts, and helpers should probably be in a package for distribution, but none of this is required to make the appdaemon app work so I never packaged it up.
Can you post your full appdaemon.yaml? Make sure you remove your sensitive information. This app works fine for me, and if there is a namespace issue we should start with that file.