@@ -1795,7 +1795,7 @@ async def finalize(
1795
1795
print (f"Uploaded { temporary_pdf .name } with title { title } " )
1796
1796
1797
1797
1798
- def _process_code (name : str ) -> None :
1798
+ async def _process_code (name : str ) -> bool :
1799
1799
"""Detect ad add a page with the QR codes."""
1800
1800
pdf_filename = os .path .join (os .environ .get ("SCAN_CODES_FOLDER" , "/scan-codes" ), name )
1801
1801
@@ -1807,27 +1807,32 @@ def _process_code(name: str) -> None:
1807
1807
return
1808
1808
1809
1809
try :
1810
- _LOG .info ("Processing codes for %s" , pdf_filename )
1811
- from scan_to_paperless import code # pylint: disable=import-outside-toplevel
1812
-
1813
- code .add_codes (
1814
- pdf_filename ,
1815
- destination_filename ,
1816
- dpi = float (os .environ .get ("SCAN_CODES_DPI" , 200 )),
1817
- pdf_dpi = float (os .environ .get ("SCAN_CODES_PDF_DPI" , 72 )),
1818
- font_name = os .environ .get ("SCAN_CODES_FONT_NAME" , "Helvetica-Bold" ),
1819
- font_size = float (os .environ .get ("SCAN_CODES_FONT_SIZE" , 16 )),
1820
- margin_top = float (os .environ .get ("SCAN_CODES_MARGIN_TOP" , 0 )),
1821
- margin_left = float (os .environ .get ("SCAN_CODES_MARGIN_LEFT" , 2 )),
1822
- )
1823
- if os .path .exists (destination_filename ):
1824
- # Remove the source file on success
1825
- os .remove (pdf_filename )
1826
- _LOG .info ("Down processing codes for %s" , pdf_filename )
1810
+ if os .path .exists (pdf_filename ):
1811
+ _LOG .info ("Processing codes for %s" , pdf_filename )
1812
+ from scan_to_paperless import code # pylint: disable=import-outside-toplevel
1813
+
1814
+ code .add_codes (
1815
+ pdf_filename ,
1816
+ destination_filename ,
1817
+ dpi = float (os .environ .get ("SCAN_CODES_DPI" , 200 )),
1818
+ pdf_dpi = float (os .environ .get ("SCAN_CODES_PDF_DPI" , 72 )),
1819
+ font_name = os .environ .get ("SCAN_CODES_FONT_NAME" , "Helvetica-Bold" ),
1820
+ font_size = float (os .environ .get ("SCAN_CODES_FONT_SIZE" , 16 )),
1821
+ margin_top = float (os .environ .get ("SCAN_CODES_MARGIN_TOP" , 0 )),
1822
+ margin_left = float (os .environ .get ("SCAN_CODES_MARGIN_LEFT" , 2 )),
1823
+ )
1824
+ if os .path .exists (destination_filename ):
1825
+ # Remove the source file on success
1826
+ os .remove (pdf_filename )
1827
+ _LOG .info ("Down processing codes for %s" , pdf_filename )
1828
+ return True
1827
1829
1828
1830
except Exception as exception :
1829
1831
_LOG .exception ("Error while processing %s: %s" , pdf_filename , str (exception ))
1830
1832
1833
+ await asyncio .sleep (1 )
1834
+ return False
1835
+
1831
1836
1832
1837
def is_sources_present (images : list [str ], root_folder : str ) -> bool :
1833
1838
"""Are sources present for the next step."""
@@ -2034,7 +2039,8 @@ async def _task(status: scan_to_paperless.status.Status) -> None:
2034
2039
status .set_global_status (f"Process code '{ name } '..." )
2035
2040
status .set_current_folder (name )
2036
2041
try :
2037
- _process_code (name )
2042
+ if not await _process_code (name ):
2043
+ status .update_scan_codes ()
2038
2044
except Exception as exception :
2039
2045
print (exception )
2040
2046
trace = traceback .format_exc ()
0 commit comments