2021-01-29 10:13:59 +00:00
|
|
|
import syncthing_monitor.config_xml as xml
|
2021-01-29 10:19:53 +00:00
|
|
|
from syncthing_monitor.etcd_cluster_info import EtcdClient
|
2021-01-29 10:36:02 +00:00
|
|
|
from syncthing_monitor.syncthing_client import SyncthingClient
|
2021-01-29 10:13:59 +00:00
|
|
|
|
2021-01-29 10:35:18 +00:00
|
|
|
DEFAULT_ST_CONFIG_XML_PATH = '/config/config.xml'
|
|
|
|
DEFAULT_ST_GUI_PORT = 8384
|
2021-01-28 10:56:11 +00:00
|
|
|
|
|
|
|
|
2021-01-28 13:31:25 +00:00
|
|
|
def loop(gui_port="8384", host="sync"):
|
2021-01-29 10:35:18 +00:00
|
|
|
api_key = xml.parse_api_key(DEFAULT_ST_CONFIG_XML_PATH)
|
2021-01-28 10:56:11 +00:00
|
|
|
print("Found API Key: {0}".format(api_key))
|
|
|
|
|
2021-01-29 10:35:18 +00:00
|
|
|
xml.set_listen_ip_to_any(DEFAULT_ST_CONFIG_XML_PATH, DEFAULT_ST_CONFIG_XML_PATH, DEFAULT_ST_GUI_PORT)
|
2021-01-28 13:31:25 +00:00
|
|
|
|
2021-01-29 10:35:18 +00:00
|
|
|
syncthing = SyncthingClient(api_key, host, gui_port)
|
2021-01-29 10:13:59 +00:00
|
|
|
my_device_id = syncthing.get_my_device_id()
|
|
|
|
print("Found Device ID: {0}".format(my_device_id))
|
2021-01-28 13:31:25 +00:00
|
|
|
|
2021-01-29 10:19:53 +00:00
|
|
|
etcd = EtcdClient('etcd')
|
|
|
|
etcd.append_device_id(my_device_id)
|
|
|
|
device_ids = etcd.get_device_list()
|
2021-01-29 10:35:18 +00:00
|
|
|
|
2021-01-29 10:19:53 +00:00
|
|
|
syncthing.add_devices(device_ids)
|
2021-01-29 10:35:18 +00:00
|
|
|
syncthing.print_config()
|
2021-01-29 08:28:35 +00:00
|
|
|
|
2021-01-28 10:56:11 +00:00
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
loop()
|