forked from MeshAddicts/meshinfo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
79 lines (64 loc) · 2.88 KB
/
main.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
#!/usr/bin/env python3
import asyncio
import datetime
from zoneinfo import ZoneInfo
import os
from dotenv import load_dotenv
from api import api
from config import Config
from memory_data_store import MemoryDataStore
from mqtt import MQTT
load_dotenv()
config = Config.load()
data = MemoryDataStore(config)
data.update('mqtt_connect_time', datetime.datetime.now(ZoneInfo(config['server']['timezone'])))
async def main():
global config
global data
if not os.path.exists(config['paths']['output']):
os.makedirs(config['paths']['output'])
if not os.path.exists(config['paths']['data']):
os.makedirs(config['paths']['data'])
os.environ['TZ'] = config['server']['timezone']
data.load()
data.save()
async with asyncio.TaskGroup() as tg:
loop = asyncio.get_event_loop()
api_server = api.API(config, data)
tg.create_task(api_server.serve(loop))
if config['broker']['enabled'] is True:
print("Connecting to MQTT broker")
mqtt = MQTT(config, data)
tg.create_task(mqtt.connect())
# tg.create_task(discord.start_bot())
# discord
# if os.environ.get('DISCORD_TOKEN') is not None:
# config['integrations']['discord']['token'] = os.environ['DISCORD_TOKEN']
# config['integrations']['discord']['channel_id'] = os.environ['DISCORD_CHANNEL_ID']
# config['integrations']['discord']['enabled'] = True
# discord_client = discord.Client(intents=discord.Intents.all())
# tree = app_commands.CommandTree(discord_client)
# @tree.command(
# name="lookup",
# description="Look up a node by ID",
# guild=discord.Object(id=1234910729480441947)
# )
# async def lookup_node(ctx: Interaction, node_id: str):
# node = nodes[node_id]
# if node is None:
# await ctx.response.send_message(f"Node {node_id} not found.")
# return
# await ctx.response.send_message(f"Node {node['id']}: Short Name = {node['shortname']}, Long Name = {node['longname']}, Hardware = {node['hardware']}, Position = {node['position']}, Last Seen = {node['last_seen']}, Active = {node['active']}")
# @discord_client.event
# async def on_ready():
# print(f'Discord: Logged in as {discord_client.user} (ID: {discord_client.user.id})')
# await tree.sync(guild=discord.Object(id=1234910729480441947))
# print("Discord: Synced slash commands")
# @discord_client.event
# async def on_message(message):
# print(f'Discord: {message.channel.id}: {message.author}: {message.content}')
# if message.content.startswith('!test'):
# await message.channel.send('Test successful!')
# discord_client.run(config['integrations']['discord']['token'])
if __name__ == "__main__":
asyncio.run(main())