0.0.3
add modified date timestamp to file listing
This commit is contained in:
parent
2799c23b0b
commit
8d8005d10e
@ -3,6 +3,7 @@ __license__ = "GNU Affero General Public License http://www.gnu.org/licenses/agp
|
|||||||
|
|
||||||
|
|
||||||
import collections
|
import collections
|
||||||
|
import datetime
|
||||||
import os
|
import os
|
||||||
import queue
|
import queue
|
||||||
import re
|
import re
|
||||||
@ -14,6 +15,7 @@ from pybambu import BambuClient, commands
|
|||||||
|
|
||||||
from serial import SerialTimeoutException
|
from serial import SerialTimeoutException
|
||||||
from octoprint.util import RepeatedTimer, to_bytes, to_unicode, get_dos_filename
|
from octoprint.util import RepeatedTimer, to_bytes, to_unicode, get_dos_filename
|
||||||
|
from octoprint.util.files import unix_timestamp_to_m20_timestamp
|
||||||
|
|
||||||
from .ftpsclient import IoTFTPSClient
|
from .ftpsclient import IoTFTPSClient
|
||||||
|
|
||||||
@ -45,10 +47,11 @@ class BambuPrinter:
|
|||||||
}
|
}
|
||||||
self._sendBusy = False
|
self._sendBusy = False
|
||||||
self._ambient_temperature = 21.3
|
self._ambient_temperature = 21.3
|
||||||
self.temp = [self._ambient_temperature ]
|
self.temp = [self._ambient_temperature]
|
||||||
self.targetTemp = [0.0]
|
self.targetTemp = [0.0]
|
||||||
self.bedTemp = self._ambient_temperature
|
self.bedTemp = self._ambient_temperature
|
||||||
self.bedTargetTemp = 0.0
|
self.bedTargetTemp = 0.0
|
||||||
|
self._hasChamber = printer_profile_manager.get_current().get("heatedChamber")
|
||||||
self.chamberTemp = self._ambient_temperature
|
self.chamberTemp = self._ambient_temperature
|
||||||
self.chamberTargetTemp = 0.0
|
self.chamberTargetTemp = 0.0
|
||||||
self.lastTempAt = time.monotonic()
|
self.lastTempAt = time.monotonic()
|
||||||
@ -128,6 +131,7 @@ class BambuPrinter:
|
|||||||
# )
|
# )
|
||||||
# bufferThread.start()
|
# bufferThread.start()
|
||||||
|
|
||||||
|
# Move this into M110 command response?
|
||||||
connectionThread = threading.Thread(
|
connectionThread = threading.Thread(
|
||||||
target=self._create_connection,
|
target=self._create_connection,
|
||||||
name="octoprint.plugins.bambu_printer.connection_thread",
|
name="octoprint.plugins.bambu_printer.connection_thread",
|
||||||
@ -603,7 +607,7 @@ class BambuPrinter:
|
|||||||
request_resend()
|
request_resend()
|
||||||
|
|
||||||
def _listSd(self, incl_long=False, incl_timestamp=False):
|
def _listSd(self, incl_long=False, incl_timestamp=False):
|
||||||
line = "{name} {size} \"{name}\""
|
line = "{dosname} {size} {timestamp} \"{name}\""
|
||||||
|
|
||||||
self._send("Begin file list")
|
self._send("Begin file list")
|
||||||
for item in map(lambda x: line.format(**x), self._getSdFiles()):
|
for item in map(lambda x: line.format(**x), self._getSdFiles()):
|
||||||
@ -624,20 +628,24 @@ class BambuPrinter:
|
|||||||
else:
|
else:
|
||||||
filename = entry
|
filename = entry
|
||||||
filesize = ftp.ftps_session.size(entry)
|
filesize = ftp.ftps_session.size(entry)
|
||||||
|
date_str = ftp.ftps_session.sendcmd(f"MDTM {entry}").replace("213 ", "")
|
||||||
|
filedate = datetime.datetime.strptime(date_str, "%Y%m%d%H%M%S").replace(tzinfo=datetime.timezone.utc).timestamp()
|
||||||
dosname = get_dos_filename(filename, existing_filenames=list(result.keys())).lower()
|
dosname = get_dos_filename(filename, existing_filenames=list(result.keys())).lower()
|
||||||
data = {
|
data = {
|
||||||
"dosname": dosname,
|
"dosname": dosname,
|
||||||
"name": filename,
|
"name": filename,
|
||||||
"path": filename,
|
"path": filename,
|
||||||
"size": filesize,
|
"size": filesize,
|
||||||
|
"timestamp": unix_timestamp_to_m20_timestamp(int(filedate))
|
||||||
}
|
}
|
||||||
result[filename.lower()] = data
|
result[filename.lower()] = data
|
||||||
# result[dosname.lower()] = filename.lower()
|
result[dosname.lower()] = filename.lower()
|
||||||
|
|
||||||
return result
|
return result
|
||||||
|
|
||||||
def _getSdFileData(self, filename: str) -> Optional[Dict[str, Any]]:
|
def _getSdFileData(self, filename: str) -> Optional[Dict[str, Any]]:
|
||||||
files = self._mappedSdList()
|
files = self._mappedSdList()
|
||||||
|
# TODO: swap this out to use 8 dot 3 name to find long name/path
|
||||||
data = files.get(filename.lower())
|
data = files.get(filename.lower())
|
||||||
if isinstance(data, str):
|
if isinstance(data, str):
|
||||||
data = files.get(data.lower())
|
data = files.get(data.lower())
|
||||||
@ -708,7 +716,7 @@ class BambuPrinter:
|
|||||||
temps = collections.OrderedDict()
|
temps = collections.OrderedDict()
|
||||||
temps["T"] = (self.temp[0], self.targetTemp[0])
|
temps["T"] = (self.temp[0], self.targetTemp[0])
|
||||||
temps["B"] = (self.bedTemp, self.bedTargetTemp)
|
temps["B"] = (self.bedTemp, self.bedTargetTemp)
|
||||||
if self._printer_profile_manager.get_current().get("heatedChamber"):
|
if self._hasChamber:
|
||||||
temps["C"] = (self.chamberTemp, self.chamberTargetTemp)
|
temps["C"] = (self.chamberTemp, self.chamberTargetTemp)
|
||||||
|
|
||||||
output = " ".join(
|
output = " ".join(
|
||||||
|
2
setup.py
2
setup.py
@ -14,7 +14,7 @@ plugin_package = "octoprint_bambu_printer"
|
|||||||
plugin_name = "OctoPrint-BambuPrinter"
|
plugin_name = "OctoPrint-BambuPrinter"
|
||||||
|
|
||||||
# The plugin's version. Can be overwritten within OctoPrint's internal data via __plugin_version__ in the plugin module
|
# The plugin's version. Can be overwritten within OctoPrint's internal data via __plugin_version__ in the plugin module
|
||||||
plugin_version = "0.0.2"
|
plugin_version = "0.0.3"
|
||||||
|
|
||||||
# The plugin's description. Can be overwritten within OctoPrint's internal data via __plugin_description__ in the plugin
|
# The plugin's description. Can be overwritten within OctoPrint's internal data via __plugin_description__ in the plugin
|
||||||
# module
|
# module
|
||||||
|
Loading…
x
Reference in New Issue
Block a user