12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- #!/usr/bin/env python3
- """
- wifi-with-matrix script.
- Bridge between https://code.ffdn.org/FFDN/wifi-with-me & a matrix room
- """
- import json
- import os
- from http.server import BaseHTTPRequestHandler, HTTPServer
- from matrix_client.client import MatrixClient
- SERVER_ADDRESS = ('', int(os.environ.get('PORT', 4785)))
- MATRIX_URL = os.environ.get('MATRIX_URL', 'https://matrix.org')
- MATRIX_ID = os.environ.get('MATRIX_ID', 'wwm')
- MATRIX_PW = os.environ['MATRIX_PW']
- API_KEY = os.environ['API_KEY']
- class WWMBotServer(HTTPServer):
- """
- an HTTPServer that also contain a matrix client
- """
- def __init__(self, *args, **kwargs):
- super().__init__(*args, **kwargs)
- client = MatrixClient(MATRIX_URL)
- client.login(username=MATRIX_ID, password=MATRIX_PW)
- self.rooms = client.get_rooms()
- class WWMBotForwarder(BaseHTTPRequestHandler):
- """
- Class given to the server, st. it knows what to do with a request.
- This one handles the HTTP request, and forwards it to the matrix room.
- """
- def do_POST(self):
- """
- main method, get a json dict from wifi-with-me, send a message to a matrix room
- """
- length = int(self.headers.get('Content-Length'))
- data = json.loads(self.rfile.read(length).decode())
- status = 'I need a json dict with text & key'
- if all(key in data for key in ['text', 'key']):
- status = 'wrong key'
- if data['key'] == API_KEY:
- status = 'I need the id of the room as a path'
- if self.path[1:] in self.server.rooms:
- status = 'OK'
- self.server.rooms[self.path[1:]].send_text(data['text'])
- self.send_response(200 if status == 'OK' else 401)
- self.send_header('Content-Type', 'application/json')
- self.end_headers()
- self.wfile.write(b'{"status": "%a"}' % status)
- if __name__ == '__main__':
- print('Wifi-With-Matrix bridge starting…')
- WWMBotServer(SERVER_ADDRESS, WWMBotForwarder).serve_forever()
|