|
| 1 | +from http.server import BaseHTTPRequestHandler, HTTPServer |
| 2 | +import json |
| 3 | +import subprocess |
| 4 | +import gi |
| 5 | +import os |
| 6 | +import webbrowser |
| 7 | +import subprocess |
| 8 | +import traceback |
| 9 | +gi.require_version('Notify', '0.7') |
| 10 | +from gi.repository import Notify |
| 11 | + |
| 12 | +HOSTNAME = "0.0.0.0" |
| 13 | +PORT = 9999 |
| 14 | +ALSA_DEVICE = os.environ['ALSA_DEVICE'] |
| 15 | +NOTIFICATION_SOUND = os.environ['NOTIFICATION_SOUND'] |
| 16 | +NOTIFICATION_SOUND_VOLUME = int(os.environ['NOTIFICATION_SOUND_VOLUME']) |
| 17 | + |
| 18 | + |
| 19 | +def on_notification_closed(notification): |
| 20 | + print(f"Notification {notification.id} closed.") |
| 21 | + |
| 22 | + |
| 23 | +def on_link_click(notification, action, link): |
| 24 | + webbrowser.open(link) |
| 25 | + |
| 26 | + |
| 27 | +def filter_notification(title, body, link): |
| 28 | + return not title.startswith("Symfony\\Component\\HttpKernel\\Exception\\NotFoundHttpException") |
| 29 | + |
| 30 | + |
| 31 | +class NotifyServer(BaseHTTPRequestHandler): |
| 32 | + def create_notification(self, title, body, link): |
| 33 | + notification = Notify.Notification.new(title, body) |
| 34 | + notification.connect("closed", on_notification_closed) |
| 35 | + notification.add_action( |
| 36 | + "action_click", |
| 37 | + "View in browser", |
| 38 | + on_link_click, |
| 39 | + link |
| 40 | + ) |
| 41 | + notification.show() |
| 42 | + |
| 43 | + |
| 44 | + def notification_sound(self, sound): |
| 45 | + # Use Popen to launch a non-blocking background process |
| 46 | + subprocess.Popen(["paplay", "--volume", str(NOTIFICATION_SOUND_VOLUME), "--device", ALSA_DEVICE, sound]) |
| 47 | + |
| 48 | + |
| 49 | + def do_POST(self): |
| 50 | + length = int(self.headers.get('Content-Length')) |
| 51 | + body = self.rfile.read(length) |
| 52 | + content = json.loads(body) |
| 53 | + print(json.dumps(content, indent=2)) |
| 54 | + |
| 55 | + att = content['attachments'][0] |
| 56 | + title = att['title'] |
| 57 | + link = att['title_link'] |
| 58 | + body = att['text'] |
| 59 | + |
| 60 | + if filter_notification(title, body, link): |
| 61 | + try: |
| 62 | + self.create_notification(title, body, link) |
| 63 | + except Exception: |
| 64 | + print(traceback.format_exc()) |
| 65 | + try: |
| 66 | + self.notification_sound(NOTIFICATION_SOUND) |
| 67 | + except Exception: |
| 68 | + print(traceback.format_exc()) |
| 69 | + |
| 70 | + self.send_response(200) |
| 71 | + self.send_header("Content-Type", "text/plain") |
| 72 | + self.end_headers() |
| 73 | + |
| 74 | + self.wfile.write(bytes("ok", "utf-8")) |
| 75 | + |
| 76 | + |
| 77 | +Notify.init("DOMjudge notifications") |
| 78 | +server = HTTPServer((HOSTNAME, PORT), NotifyServer) |
| 79 | + |
| 80 | +try: |
| 81 | + server.serve_forever() |
| 82 | +except KeyboardInterrupt: |
| 83 | + pass |
| 84 | + |
| 85 | +# Clean up |
| 86 | +server.server_close() |
| 87 | +Notify.uninit() |
0 commit comments