moonraker: send "client_info" after initial connection to Klippy
Signed-off-by: Eric Callahan <arksine.code@gmail.com>
This commit is contained in:
parent
d021eddb16
commit
5b87c43535
|
@ -231,14 +231,17 @@ class Server:
|
||||||
self.moonraker_app.register_remote_handler(ep)
|
self.moonraker_app.register_remote_handler(ep)
|
||||||
|
|
||||||
async def _check_ready(self):
|
async def _check_ready(self):
|
||||||
|
send_id = "identified" not in self.init_list
|
||||||
try:
|
try:
|
||||||
result = await self.klippy_apis.get_klippy_info()
|
result = await self.klippy_apis.get_klippy_info(send_id)
|
||||||
except ServerError as e:
|
except ServerError as e:
|
||||||
logging.info(
|
logging.info(
|
||||||
f"{e}\nKlippy info request error. This indicates that\n"
|
f"{e}\nKlippy info request error. This indicates that\n"
|
||||||
f"Klippy may have experienced an error during startup.\n"
|
f"Klippy may have experienced an error during startup.\n"
|
||||||
f"Please check klippy.log for more information")
|
f"Please check klippy.log for more information")
|
||||||
return
|
return
|
||||||
|
if send_id:
|
||||||
|
self.init_list.append("identified")
|
||||||
# Update filemanager fixed paths
|
# Update filemanager fixed paths
|
||||||
fixed_paths = {k: result[k] for k in
|
fixed_paths = {k: result[k] for k in
|
||||||
['klipper_path', 'python_path',
|
['klipper_path', 'python_path',
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
# Copyright (C) 2020 Eric Callahan <arksine.code@gmail.com>
|
# Copyright (C) 2020 Eric Callahan <arksine.code@gmail.com>
|
||||||
#
|
#
|
||||||
# This file may be distributed under the terms of the GNU GPLv3 license.
|
# This file may be distributed under the terms of the GNU GPLv3 license.
|
||||||
|
import utils
|
||||||
|
|
||||||
INFO_ENDPOINT = "info"
|
INFO_ENDPOINT = "info"
|
||||||
ESTOP_ENDPOINT = "emergency_stop"
|
ESTOP_ENDPOINT = "emergency_stop"
|
||||||
|
@ -98,8 +99,12 @@ class KlippyAPI:
|
||||||
async def emergency_stop(self, default=Sentinel):
|
async def emergency_stop(self, default=Sentinel):
|
||||||
return await self._send_klippy_request(ESTOP_ENDPOINT, {}, default)
|
return await self._send_klippy_request(ESTOP_ENDPOINT, {}, default)
|
||||||
|
|
||||||
async def get_klippy_info(self, default=Sentinel):
|
async def get_klippy_info(self, send_id=False, default=Sentinel):
|
||||||
return await self._send_klippy_request(INFO_ENDPOINT, {}, default)
|
params = {}
|
||||||
|
if send_id:
|
||||||
|
ver = utils.get_software_version()
|
||||||
|
params = {'client_info': {'program': "Moonraker", 'version': ver}}
|
||||||
|
return await self._send_klippy_request(INFO_ENDPOINT, params, default)
|
||||||
|
|
||||||
async def get_object_list(self, default=Sentinel):
|
async def get_object_list(self, default=Sentinel):
|
||||||
result = await self._send_klippy_request(
|
result = await self._send_klippy_request(
|
||||||
|
|
Loading…
Reference in New Issue