Compare commits

..

No commits in common. "904c712d4491d60b9bb3f844f7a1c52c42b06d9b" and "12dc13237306eb5a39c728e234ce76c6c8d5cab6" have entirely different histories.

View file

@ -18,10 +18,9 @@ log_levels = {
"INFO": log.INFO,
"WARNING": log.WARNING,
"ERROR": log.ERROR,
"CRITICAL": log.CRITICAL,
"CRITICAL": log.CRITICAL
}
# Converts Nextcloud's notification buttons to ntfy.sh notification actions
def parse_actions(actions: list) -> list:
parsed_actions = []
@ -32,7 +31,7 @@ def parse_actions(actions: list) -> list:
"label": f"{action['label']}",
"url": f"{action['link']}",
"method": f"{action['type']}",
"clear": True,
"clear": True
}
# The `action['type']` is documented to be a HTTP request.
@ -46,32 +45,31 @@ def parse_actions(actions: list) -> list:
return parsed_actions
def push_to_ntfy(
url: str, token: str, topic: str, title: str, click="", message="", actions=[]
) -> requests.Response:
def push_to_ntfy(url: str, token: str, topic: str, title: str, click = "", message = "", actions = []) -> requests.Response:
jsonData = {
"topic": f"{topic}",
"title": f"{title}",
"message": f"{message}",
"click": f"{click}",
"actions": actions,
"actions": actions
}
if token != "":
response = requests.post(
url, data=json.dumps(jsonData), headers={"Authorization": f"Bearer {token}"}
)
response = requests.post(url,
data=json.dumps(jsonData),
headers={
"Authorization": f"Bearer {token}"
})
else:
response = requests.post(url, data=json.dumps(jsonData))
response = requests.post(url,
data=json.dumps(jsonData))
return response
# Nextcloud apps have quite often internal names differing from the UI names.
# - Eg. `spreed` is `Talk`
# This is the place to track the differences
def translate_app_name(app=str) -> str:
def translate_app_name(app = str) -> str:
if app == "spreed":
return "Talk"
elif app == "event_update_notification":
@ -79,18 +77,15 @@ def translate_app_name(app=str) -> str:
else:
return app
def arg_parser() -> argparse.Namespace:
parser = argparse.ArgumentParser(
description="Nextcloud to ntfy.sh notification bridge."
)
parser = argparse.ArgumentParser(description ='Nextcloud to ntfy.sh notification bridge.')
parser.add_argument(
"--log_level",
type=str,
default="INFO",
choices=["DEBUG", "INFO", "WARNING", "ERROR", "CRITICAL"],
help="Set the logging level (default: INFO)",
help="Set the logging level (default: INFO)"
)
parser.add_argument(
"-c",
@ -98,12 +93,11 @@ def arg_parser() -> argparse.Namespace:
type=str,
default="./config.json",
required=True,
help="Path to the configuration file",
help="Path to the configuration file"
)
return parser.parse_args()
def load_config(config_file: str) -> dict:
# Default values for the configuration
default_config = {
@ -111,14 +105,18 @@ def load_config(config_file: str) -> dict:
"ntfy_topic": "nextcloud",
"ntfy_auth": "false",
"ntfy_token": "authentication_token",
"nextcloud_base_url": "https://nextcloud.example.com",
"nextcloud_notification_path": "/ocs/v2.php/apps/notifications/api/v2/notifications",
"nextcloud_username": "user",
"nextcloud_password": "application_password",
"nextcloud_poll_interval_seconds": 60,
"nextcloud_error_sleep_seconds": 600,
"nextcloud_204_sleep_seconds": 3600,
"rate_limit_sleep_seconds": 600,
"rate_limit_sleep_seconds": 600
}
try:
@ -134,16 +132,10 @@ def load_config(config_file: str) -> dict:
if config_data["ntfy_auth"] == "false":
config_data["ntfy_token"] == ""
elif config_data["ntfy_auth"] == "true" and (
config_data["ntfy_token"] == ""
or config_data["ntfy_token"] == "authentication_token"
):
print(
"Error: Option 'ntfy_auth' is set to 'true' but not 'ntfy_token' was set!"
)
config_data["ntfy_token"] == "" or config_data["ntfy_token"] == "authentication_token"):
print("Error: Option 'ntfy_auth' is set to 'true' but not 'ntfy_token' was set!")
exit(2)
elif config_data["ntfy_auth"] == "true" and not config_data[
"ntfy_token"
].startswith("tk_"):
elif config_data["ntfy_auth"] == "true" and not config_data["ntfy_token"].startswith("tk_"):
print("Error: Authentication token set in 'ntfy_token' is invalid!")
exit(3)
@ -157,7 +149,6 @@ def load_config(config_file: str) -> dict:
print(f"Error decoding JSON from {config_file}. Using default values.")
return default_config
def main():
args = arg_parser()
config = load_config(args.config_file)
@ -166,7 +157,7 @@ def main():
format="{asctime} - {levelname} - {message}",
style="{",
datefmt="%d-%m-%Y %H:%M:%S",
level=log_levels[args.log_level],
level=log_levels[args.log_level]
)
log.info("Started Nextcloud to ntfy.sh notification bridge.")
@ -175,28 +166,19 @@ def main():
nextcloud_request_headers = {
"Authorization": f"{nextcloud_auth_header}",
"OCS-APIREQUEST": "true",
"Accept": "application/json",
"Accept": "application/json"
}
while True:
log.debug("Fetching notifications.")
response = requests.get(
f"{config["nextcloud_base_url"]}{config["nextcloud_notification_path"]}",
headers=nextcloud_request_headers,
)
response = requests.get(f"{config["nextcloud_base_url"]}{config["nextcloud_notification_path"]}", headers = nextcloud_request_headers)
if not response.ok:
log.error(
f"Error while fetching notifications. Response code: {response.status_code}."
)
log.warning(
f"Sleeping for {config["nextcloud_error_sleep_seconds"]} seconds."
)
log.error(f"Error while fetching notifications. Response code: {response.status_code}.")
log.warning(f"Sleeping for {config["nextcloud_error_sleep_seconds"]} seconds.")
sleep(config["nextcloud_error_sleep_seconds"])
continue
elif response.status_code == 204:
log.debug(
f"Got code 204 while fetching notifications. Sleeping for {config["nextcloud_204_sleep_seconds"]/60/60} hour(s)."
)
log.debug(f"Got code 204 while fetching notifications. Sleeping for {config["nextcloud_204_sleep_seconds"]/60/60} hour(s).")
log.debug(f"Got resonse code: {response.status_code}")
@ -207,10 +189,12 @@ def main():
log.error("Error parsing response from Nextcloud!")
log.error(f"Response code: {response.status_code}")
log.error(f"Response body:\n{response.text}")
log.error("=====================================")
log.error(f"=====================================")
log.error(f"Exception:\n{e}")
for notification in reversed(data["ocs"]["data"]):
if datetime.fromisoformat(notification["datetime"]) <= last_datetime:
log.debug("No new notifications.")
continue
@ -228,49 +212,32 @@ def main():
log.debug(f"Notification message:\n{message}")
actions = parse_actions(notification["actions"])
actions.append(
{
"action": "http",
"label": "Dismiss",
"url": f"{config["nextcloud_base_url"]}{config["nextcloud_notification_path"]}/{notification["notification_id"]}",
"method": "DELETE",
"headers": {
"Authorization": f"{nextcloud_auth_header}",
"OCS-APIREQUEST": "true",
},
"clear": True,
}
)
actions.append({
"action": "http",
"label": "Dismiss",
"url": f"{config["nextcloud_base_url"]}{config["nextcloud_notification_path"]}/{notification["notification_id"]}",
"method": "DELETE",
"headers": {
"Authorization": f"{nextcloud_auth_header}",
"OCS-APIREQUEST": "true"
},
"clear": True
})
log.debug(f"Notification actions:\n{actions}")
log.info("Pushing notification to ntfy.")
log.info(f"Pushing notification to ntfy.")
response = push_to_ntfy(
config["ntfy_base_url"],
config["ntfy_token"],
config["ntfy_topic"],
title,
notification["link"],
message,
actions,
)
response = push_to_ntfy(config["ntfy_base_url"], config["ntfy_token"], config["ntfy_topic"], title, notification["link"], message, actions)
if response.status_code == 429:
log.error(
f"Error pushing notification to {config["ntfy_base_url"]}: Too Many Requests."
)
log.warning(
f"Sleeping for {config["rate_limit_sleep_seconds"]} seconds."
)
log.error(f"Error pushing notification to {config["ntfy_base_url"]}: Too Many Requests.")
log.warning(f"Sleeping for {config["rate_limit_sleep_seconds"]} seconds.")
elif not response.ok:
log.critical(
f"Unknown erroro while pushing notification to {config["ntfy_base_url"]}. Error code: {response.status_code}."
)
log.critical(f"Unknown erroro while pushing notification to {config["ntfy_base_url"]}. Error code: {response.status_code}.")
log.critical(f"Response: {response.text}")
log.error("Stopping.")
exit(1)
sleep(config["nextcloud_poll_interval_seconds"])
if __name__ == "__main__":
main()
main()