-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbeinc_server.py
executable file
·470 lines (406 loc) · 15.1 KB
/
beinc_server.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
#!/usr/bin/env python
# Blackmore's Enhanced IRC-Notification Collection (BEINC)
# Copyright (C) 2013-2024 Simeon Simeonov
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
"""BEINC standalone server implementation"""
import argparse
import contextlib
import errno
import io
import json
import logging
import os
import pathlib
import ssl
import sys
import urllib.parse
from functools import wraps
from http.server import BaseHTTPRequestHandler, HTTPServer
from logging.config import fileConfig
try:
import notify2 as pynotify
except ImportError:
pynotify = None
__author__ = 'Simeon Simeonov'
__version__ = '4.4'
__license__ = 'GPL3'
BEINC_OSD_TYPE_NONE = 0
BEINC_OSD_TYPE_PYNOTIFY = 1
BEINC_CURRENT_CONFIG_VERSION = 3
class BEINC400Error(Exception):
"""BEINC400Error"""
class BEINC401Error(Exception):
"""BEINC401Error"""
class BEINC403Error(Exception):
"""BEINC403Error"""
class BEINC404Error(Exception):
"""BEINC404Error"""
class BEINC405Error(Exception):
"""BEINC405Error"""
def eprint(*arg, **kwargs):
"""stdderr print wrapper"""
print(*arg, file=sys.stderr, flush=True, **kwargs)
def beinc_login_required(method):
"""Decorator for checking login credentials"""
@wraps(method)
def wrapper(self, data, *arg, **kwargs):
if data.get('resource_name') is None:
raise BEINC403Error('Resource-name missing')
if data.get('password') is None:
raise BEINC401Error('Password missing')
try:
instance = self.server.instances[data.get('resource_name')]
except Exception:
raise BEINC401Error('Wrong instance or password') from None
if not instance.password_match(data.get('password')):
raise BEINC401Error('Wrong instance or password')
return method(self, data, *arg, **kwargs)
return wrapper
class BEINCInstance:
"""Represents a single server-instance"""
def __init__(self, instance_dict):
"""
instance_dict: the config-dictionary node that represents this instance
"""
self._message_queue = []
self._osd_type = BEINC_OSD_TYPE_NONE
self._osd_notification = None
self._name = instance_dict.get('name')
self._password = instance_dict.get('password', '')
self._queue_size = int(instance_dict.get('queue_size', 3))
if instance_dict['osd_system'].lower() == 'pynotify':
self._queue_size = 0 # disable queueing
if pynotify is None:
eprint('This server does not possess pynotify capability')
eprint(
f'Remove the instance {self._name} or define it with '
f'"osd_system": "none" or other '
f'available backend'
)
sys.exit(errno.EPERM)
try:
self._osd_notification = pynotify.Notification(' ')
self._osd_notification.timeout = 1000 * int(
instance_dict.get('osd_timeout', 5)
)
self._osd_notification.set_category('im.received')
self._osd_type = BEINC_OSD_TYPE_PYNOTIFY
except Exception as exp:
eprint(
f'Unable to set up a pynotify notification object '
f'for "{self._name}" ({exp})'
)
sys.exit(errno.EPERM)
@property
def name(self):
"""name-property for the server instance (read-only)"""
return self._name
@property
def queueable(self):
"""True if this instance has a queueing capability (read-only)"""
return bool(self._queue_size)
def password_match(self, password):
"""
Returns True if 'passowrd' matches the instance-password,
otherwise - False
:param password: The password to compare
:type password: str
:return: True if the password matches, False otherwise
:rtype: bool
"""
return self._password == password
def send_message(self, title, message):
"""
Displays or enqueues the message,
depending on the instance's type in regard to the osd_system
:param title: The title
:type title: str
:param message: The message
:type message: str
"""
if self._osd_type == BEINC_OSD_TYPE_PYNOTIFY:
self._send_pynotify_messaage(title, message)
else:
self._send_message_to_queue(title, message)
def get_queue(self):
"""Returns a list of dict representation of the message queue"""
r_value = self._message_queue
self._message_queue = []
return r_value
def _send_pynotify_messaage(self, title, message):
"""
Displays pynotify message
:param title: The title
:type title: str
:param message: The message
:type message: str
"""
self._osd_notification.update(summary=title, message=message)
self._osd_notification.show()
def _send_message_to_queue(self, title, message):
"""
Enqueues the message
:param title: The title
:type title: str
:param message: The message
:type message: str
"""
if len(self._message_queue) >= self._queue_size:
self._message_queue.pop(0)
self._message_queue.append({'title': title, 'message': message})
class BEINCCustomHandler(BaseHTTPRequestHandler):
"""Custom handler"""
@staticmethod
def parse_raw_POST_data(fp, headers):
"""
Parses the POST data the way the deprecated cgi.FieldStorage used to
"""
try:
clen = -1
if headers is None:
headers = {}
if 'content-length' in headers:
with contextlib.suppress(ValueError):
clen = int(headers['content-length'])
return dict(urllib.parse.parse_qsl(fp.read(clen).decode('utf-8')))
except Exception as exp:
raise BEINC400Error('Invalid POST request') from exp
def do_POST(self):
"""Handle POST requests"""
if self.path.strip('/') not in ('beinc/push', 'beinc/pull'):
self._generate_json_error(404, 'Invalid resource path')
return
try:
form = self.parse_raw_POST_data(self.rfile, self.headers)
# extract all known fields
POST_data = {
'resource_name': form.get('resource_name'),
'password': form.get('password'),
'title': form.get('title', ''),
'message': form.get('message', ''),
}
result = {}
if self.path.strip('/') == 'beinc/push':
result = self._handle_push(POST_data)
elif self.path.strip('/') == 'beinc/pull':
result = self._handle_pull(POST_data)
self._render_to_JSON_response(result)
except BEINC400Error as err:
self._generate_json_error(400, str(err))
except BEINC401Error as err:
self._generate_json_error(401, str(err))
except BEINC403Error as err:
self._generate_json_error(403, str(err))
except BEINC404Error as err:
self._generate_json_error(404, str(err))
except BEINC405Error as err:
self._generate_json_error(405, str(err))
except Exception as exp:
self._generate_json_error(500, f'Unexpected error: {exp}')
def do_GET(self):
"""Handle GET Requests"""
self._generate_json_error(405, 'Unsupported method')
@beinc_login_required
def _handle_push(self, data):
"""Handle push"""
instance = self.server.instances[data.get('resource_name')]
instance.send_message(data.get('title'), data.get('message'))
return {'message': 'OK. Sent.'}
@beinc_login_required
def _handle_pull(self, data):
"""Handle pull"""
instance = self.server.instances[data.get('resource_name')]
if not instance.queueable:
raise BEINC405Error('This instance does not support queuing')
return {
'message': 'OK. Fetched.',
'data': {'messages': instance.get_queue()},
}
def _generate_json_error(self, code, message):
"""
Generates response header and json content for errors
:param code: the HTTP code
:type code: int
:param message: the return message set in the .json response
:type message: str
"""
self.send_response(code)
self.send_header('Content-type', 'application/json; charset=utf-8')
self.end_headers()
msg = {'code': code, 'message': message, 'data': {}}
self.wfile.write(
json.dumps(msg, sort_keys=True, indent=4).encode('utf-8')
)
def _render_to_JSON_response(self, context):
"""
:param context: the context-dict to be converted to json
:type context: dict
"""
response = {'code': 200, 'message': 'OK', 'data': {}}
response.update(context)
self.send_response(200)
self.send_header('Content-type', 'application/json; charset=utf-8')
self.end_headers()
self.wfile.write(
json.dumps(response, sort_keys=True, indent=4).encode('utf-8')
)
class BEINCNotifyServer(HTTPServer):
"""BEINCNotifyServer class"""
def __init__(self, *arg, **kwargs):
"""Default constructor"""
super().__init__(*arg, **kwargs)
self._config = None
self._instances = {}
def set_config(self, config):
"""
Sets the configuration dict for the server, instantiates
the BEINC instances and initiates the defined OSD backends
"""
self._config = config
# initialize pynotify if the module exists and if needed
if pynotify:
for instance in self._config['server']['instances']:
# check if we have at least one instance that uses pynotify
# before initializing it
if instance.get('osd_system', '').lower() == 'pynotify':
if not pynotify.init('BEINC Notify'):
eprint('pynotify.init failed! Exiting...')
sys.exit(1)
break
instance = {'name': 'Invalid'}
try:
for instance in self._config['server']['instances']:
self._instances[instance['name']] = BEINCInstance(instance)
logger.info('Instance %s added', instance['name'])
except Exception as exp:
eprint(f"Unable to create instance \"{instance['name']}\": {exp}")
sys.exit(1)
@property
def instances(self):
"""a property that returns the instance list (read-only)"""
return self._instances
if __name__ == '__main__':
parser = argparse.ArgumentParser(
description='The following options are available'
)
parser.add_argument(
'-H',
'--hostname',
metavar='HOSTNAME',
type=str,
dest='hostname',
default='127.0.0.1',
help='BEINC server IP / hostname (default: 127.0.0.1)',
)
parser.add_argument(
'-L',
'--logger-name',
metavar='NAME',
type=str,
dest='logger_name',
default='',
help="BEINC logger name (default: 'beinc')",
)
parser.add_argument(
'-l',
'--logger-config',
metavar='CONFIG',
type=str,
dest='logger_config',
default=os.path.expanduser('~/.beinc_server_logger.ini'),
help=(
'BEINC logger config (.ini) '
'(default: ~/.beinc_server_logger.ini)'
),
)
parser.add_argument(
'-p',
'--port',
metavar='PORT',
type=int,
dest='port',
default=9998,
help='BEINC server port (default: 9998)',
)
parser.add_argument(
'-f',
'--config-file',
metavar='FILE',
type=str,
default=os.path.expanduser('~/.beinc_server.json'),
dest='config_file',
help='BEINC config file (default: ~/.beinc_server.json)',
)
parser.add_argument(
'-v',
'--version',
action='version',
version=f'%(prog)s {__version__}',
help='Display program-version and exit',
)
args = parser.parse_args()
try:
with io.open(args.config_file, 'r', encoding='utf-8') as fp:
config_dict = json.load(fp)
except Exception as exp:
eprint(f'Unable to parse {args.config_file}: {exp}')
sys.exit(errno.EIO)
try:
if pathlib.Path(args.logger_config).is_file():
fileConfig(args.logger_config)
logger = logging.getLogger(args.logger_name)
else:
logging.basicConfig(
format='%(asctime)s - %(levelname)s - %(message)s',
level=logging.DEBUG,
)
logger = logging.getLogger('beinc')
logger.info('BEINC starting. Loading config...')
if config_dict.get('config_version') != BEINC_CURRENT_CONFIG_VERSION:
eprint(
f'WARNING: The version of the config-file: {args.config_file} '
f'({config_dict.get("config_version", "Not set")}) does not '
'correspond to the latest version supported by this program '
f'({BEINC_CURRENT_CONFIG_VERSION})\n'
'Check beinc_config_sample.json for the newest features!'
)
ssl_certificate = config_dict['server']['general'].get(
'ssl_certificate'
)
ssl_private_key = config_dict['server']['general'].get(
'ssl_private_key'
)
ssl_acceptable_ciphers_str = config_dict['server']['general'].get(
'ssl_ciphers'
)
beinc_server = BEINCNotifyServer(
(args.hostname, args.port), BEINCCustomHandler
)
beinc_server.set_config(config_dict)
if ssl_certificate and ssl_private_key:
context = ssl.SSLContext(ssl.PROTOCOL_TLS_SERVER)
context.load_cert_chain(
certfile=ssl_certificate, keyfile=ssl_private_key
)
if ssl_acceptable_ciphers_str is not None:
context.set_ciphers(ssl_acceptable_ciphers_str)
beinc_server.socket = context.wrap_socket(
beinc_server.socket, server_side=True
)
logger.info('Done!')
beinc_server.serve_forever()
except KeyboardInterrupt:
print('\n\nTerminating...')
except Exception as exp:
eprint(f'BEINCServer critical error: {exp}')
sys.exit(1)
sys.exit(0)