blob: f6d6413489eb27d9d969e11e5f856b6b254bb480 (
plain)
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
|
#!/usr/bin/env python3
from home.config import config
from home.database import BotsDatabase, SimpleState
from home.util import send_telegram
"""
config.toml example:
[simple_state]
file = "/home/user/.config/openwrt_log_analyzer/state.txt"
[mysql]
host = "localhost"
database = ".."
user = ".."
password = ".."
[devices]
Device1 = "00:00:00:00:00:00"
Device2 = "01:01:01:01:01:01"
[telegram]
chat_id = ".."
token = ".."
parse_mode = "HTML"
[openwrt_log_analyzer]
limit = 10
"""
def main(mac: str, title: str) -> int:
db = BotsDatabase()
data = db.get_openwrt_logs(filter_text=mac,
min_id=state['last_id'],
limit=config['openwrt_log_analyzer']['limit'])
if not data:
return 0
max_id = 0
for log in data:
if log.id > max_id:
max_id = log.id
text = '\n'.join(map(lambda s: str(s), data))
send_telegram(f'<b>{title}</b>\n\n' + text)
return max_id
if __name__ == '__main__':
config.load('openwrt_log_analyzer')
state = SimpleState(file=config['simple_state']['file'],
default={'last_id': 0})
max_last_id = 0
for name, mac in config['devices'].items():
last_id = main(mac, title=name)
if last_id > max_last_id:
max_last_id = last_id
if max_last_id:
state['last_id'] = max_last_id
|