|
|
|
@ -1,4 +1,5 @@
|
|
|
|
|
import apprise
|
|
|
|
|
import time
|
|
|
|
|
from jinja2 import Environment, BaseLoader
|
|
|
|
|
from apprise import NotifyFormat
|
|
|
|
|
import json
|
|
|
|
@ -131,20 +132,23 @@ def process_notification(n_object, datastore):
|
|
|
|
|
# Initially text or whatever
|
|
|
|
|
n_format = datastore.data['settings']['application'].get('notification_format', valid_notification_formats[default_notification_format])
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# https://github.com/caronc/apprise/wiki/Development_LogCapture
|
|
|
|
|
# Anything higher than or equal to WARNING (which covers things like Connection errors)
|
|
|
|
|
# raise it as an exception
|
|
|
|
|
apobjs=[]
|
|
|
|
|
sent_objs=[]
|
|
|
|
|
|
|
|
|
|
sent_objs = []
|
|
|
|
|
from .apprise_asset import asset
|
|
|
|
|
for url in n_object['notification_urls']:
|
|
|
|
|
url = jinja2_env.from_string(url).render(**notification_parameters)
|
|
|
|
|
apobj = apprise.Apprise(debug=True, asset=asset)
|
|
|
|
|
|
|
|
|
|
if not n_object.get('notification_urls'):
|
|
|
|
|
return None
|
|
|
|
|
|
|
|
|
|
with apprise.LogCapture(level=apprise.logging.DEBUG) as logs:
|
|
|
|
|
for url in n_object['notification_urls']:
|
|
|
|
|
url = url.strip()
|
|
|
|
|
if len(url):
|
|
|
|
|
print(">> Process Notification: AppRise notifying {}".format(url))
|
|
|
|
|
with apprise.LogCapture(level=apprise.logging.DEBUG) as logs:
|
|
|
|
|
url = jinja2_env.from_string(url).render(**notification_parameters)
|
|
|
|
|
|
|
|
|
|
# Re 323 - Limit discord length to their 2000 char limit total or it wont send.
|
|
|
|
|
# Because different notifications may require different pre-processing, run each sequentially :(
|
|
|
|
|
# 2000 bytes minus -
|
|
|
|
@ -173,7 +177,8 @@ def process_notification(n_object, datastore):
|
|
|
|
|
n_title = n_title[0:payload_max_size]
|
|
|
|
|
n_body = n_body[0:body_limit]
|
|
|
|
|
|
|
|
|
|
elif url.startswith('discord://') or url.startswith('https://discordapp.com/api/webhooks') or url.startswith('https://discord.com/api'):
|
|
|
|
|
elif url.startswith('discord://') or url.startswith('https://discordapp.com/api/webhooks') or url.startswith(
|
|
|
|
|
'https://discord.com/api'):
|
|
|
|
|
# real limit is 2000, but minus some for extra metadata
|
|
|
|
|
payload_max_size = 1700
|
|
|
|
|
body_limit = max(0, payload_max_size - len(n_title))
|
|
|
|
@ -193,6 +198,12 @@ def process_notification(n_object, datastore):
|
|
|
|
|
|
|
|
|
|
apobj.add(url)
|
|
|
|
|
|
|
|
|
|
sent_objs.append({'title': n_title,
|
|
|
|
|
'body': n_body,
|
|
|
|
|
'url': url,
|
|
|
|
|
'body_format': n_format})
|
|
|
|
|
|
|
|
|
|
# Blast off the notifications tht are set in .add()
|
|
|
|
|
apobj.notify(
|
|
|
|
|
title=n_title,
|
|
|
|
|
body=n_body,
|
|
|
|
@ -201,21 +212,15 @@ def process_notification(n_object, datastore):
|
|
|
|
|
attach=n_object.get('screenshot', None)
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
apobj.clear()
|
|
|
|
|
|
|
|
|
|
# Incase it needs to exist in memory for a while after to process(?)
|
|
|
|
|
apobjs.append(apobj)
|
|
|
|
|
# Give apprise time to register an error
|
|
|
|
|
time.sleep(3)
|
|
|
|
|
|
|
|
|
|
# Returns empty string if nothing found, multi-line string otherwise
|
|
|
|
|
log_value = logs.getvalue()
|
|
|
|
|
|
|
|
|
|
if log_value and 'WARNING' in log_value or 'ERROR' in log_value:
|
|
|
|
|
raise Exception(log_value)
|
|
|
|
|
|
|
|
|
|
sent_objs.append({'title': n_title,
|
|
|
|
|
'body': n_body,
|
|
|
|
|
'url' : url,
|
|
|
|
|
'body_format': n_format})
|
|
|
|
|
|
|
|
|
|
# Return what was sent for better logging - after the for loop
|
|
|
|
|
return sent_objs
|
|
|
|
|
|
|
|
|
|