haldis/app/notification.py

68 lines
2.1 KiB
Python
Raw Normal View History

2019-09-10 13:17:35 +00:00
"Script that handles Haldis notifications on chat platforms"
import json
import typing
from datetime import datetime
from threading import Thread
import requests
from flask import current_app as app
from flask import url_for
from models.order import Order
def webhook_text(order: Order) -> typing.Optional[str]:
"Function that makes the text for the notification"
if order.location_id == "test":
return None
if order.courier is not None:
# pylint: disable=C0301
return "<!channel|@channel> {3} is going to {1}, order <{0}|here>! Deadline in {2} minutes!".format(
url_for("order_bp.order_from_id", order_id=order.id, _external=True),
order.location_name,
remaining_minutes(order.stoptime),
order.courier.username.title(),
2019-09-05 01:33:29 +00:00
)
return "<!channel|@channel> New order for {}. Deadline in {} minutes. <{}|Open here.>".format(
order.location_name,
remaining_minutes(order.stoptime),
url_for("order_bp.order_from_id", order_id=order.id, _external=True),
)
def post_order_to_webhook(order: Order) -> None:
"Function that sends the notification for the order"
message = webhook_text(order)
if message:
2020-07-17 09:40:15 +00:00
webhookthread = WebhookSenderThread(message, app.config["SLACK_WEBHOOK"])
webhookthread.start()
class WebhookSenderThread(Thread):
"Extension of the Thread class, which sends a webhook for the notification"
2019-09-11 20:38:01 +00:00
def __init__(self, message: str, url: str) -> None:
super(WebhookSenderThread, self).__init__()
self.message = message
2019-09-11 20:38:01 +00:00
self.url = url
2019-09-07 23:58:21 +00:00
def run(self) -> None:
self.slack_webhook()
2019-09-07 23:58:21 +00:00
def slack_webhook(self) -> None:
2019-09-10 13:17:35 +00:00
"The webhook for the specified chat platform"
2019-09-11 20:38:01 +00:00
if self.url:
2019-09-16 21:14:52 +00:00
requests.post(self.url, json={"text": self.message})
else:
2019-09-11 20:38:01 +00:00
print(self.message)
2019-09-07 23:58:21 +00:00
def remaining_minutes(value) -> str:
2019-09-10 13:17:35 +00:00
"Return the remaining minutes until the deadline of and order"
delta = value - datetime.now()
if delta.total_seconds() < 0:
return "0"
2019-09-11 20:38:01 +00:00
minutes = delta.total_seconds() // 60
return "%02d" % minutes