Backend: Integrate file size calculation and API endpoint (#322)

This commit is contained in:
vkartk 2024-01-26 09:38:38 +05:30
parent 4a3a27e71c
commit d5e6c8bf98

View file

@ -39,6 +39,7 @@ class DownloadInfo:
self.custom_name_prefix = custom_name_prefix
self.msg = self.percent = self.speed = self.eta = None
self.status = "pending"
self.size = None
self.timestamp = time.time_ns()
self.error = error
@ -138,7 +139,9 @@ class Download:
return
self.tmpfilename = status.get('tmpfilename')
if 'filename' in status:
self.info.filename = os.path.relpath(status.get('filename'), self.download_dir)
fileName = status['filename']
self.info.filename = os.path.relpath(fileName, self.download_dir)
self.info.size = os.path.getsize(fileName) if os.path.exists(fileName) else None
# Set correct file extension for thumbnails
if(self.info.format == 'thumbnail'):