2020-03-03 02:15:35 -08:00
|
|
|
#!/bin/env python3
|
2022-07-28 01:06:46 -07:00
|
|
|
# SPDX-FileCopyrightText: 2017 Enantiomerie
|
|
|
|
# SPDX-License-Identifier: MIT
|
2020-03-03 02:15:35 -08:00
|
|
|
|
2023-04-14 00:38:34 -07:00
|
|
|
"""Example OCRmyPDF for Synology NAS."""
|
2022-09-21 00:05:12 -07:00
|
|
|
|
2022-07-23 00:39:24 -07:00
|
|
|
from __future__ import annotations
|
2020-03-03 02:15:35 -08:00
|
|
|
|
2022-07-23 00:39:24 -07:00
|
|
|
# This script must be edited to meet your needs.
|
2020-03-03 02:15:35 -08:00
|
|
|
import logging
|
|
|
|
import os
|
|
|
|
import shutil
|
|
|
|
import subprocess
|
|
|
|
import sys
|
|
|
|
import time
|
|
|
|
|
|
|
|
# pylint: disable=logging-format-interpolation
|
|
|
|
# pylint: disable=logging-not-lazy
|
|
|
|
|
|
|
|
script_dir = os.path.dirname(os.path.realpath(__file__))
|
|
|
|
timestamp = time.strftime("%Y-%m-%d-%H%M_")
|
|
|
|
log_file = script_dir + '/' + timestamp + 'ocrmypdf.log'
|
|
|
|
logging.basicConfig(
|
|
|
|
level=logging.INFO,
|
|
|
|
format='%(asctime)s %(message)s',
|
|
|
|
filename=log_file,
|
|
|
|
filemode='w',
|
|
|
|
)
|
|
|
|
|
2022-09-21 00:05:12 -07:00
|
|
|
start_dir = sys.argv[1] if len(sys.argv) > 1 else '.'
|
2020-03-03 02:15:35 -08:00
|
|
|
|
2021-09-21 16:37:03 -07:00
|
|
|
for dir_name, _subdirs, file_list in os.walk(start_dir):
|
2020-03-03 02:15:35 -08:00
|
|
|
logging.info(dir_name)
|
|
|
|
os.chdir(dir_name)
|
|
|
|
for filename in file_list:
|
|
|
|
file_stem, file_ext = os.path.splitext(filename)
|
|
|
|
if file_ext != '.pdf':
|
|
|
|
continue
|
|
|
|
full_path = os.path.join(dir_name, filename)
|
|
|
|
timestamp_ocr = time.strftime("%Y-%m-%d-%H%M_OCR_")
|
|
|
|
filename_ocr = timestamp_ocr + file_stem + '.pdf'
|
|
|
|
# create string for pdf processing
|
|
|
|
# the script is processed as root user via chron
|
|
|
|
cmd = [
|
|
|
|
'docker',
|
|
|
|
'run',
|
|
|
|
'--rm',
|
|
|
|
'-i',
|
|
|
|
'jbarlow83/ocrmypdf',
|
|
|
|
'--deskew',
|
|
|
|
'-',
|
|
|
|
'-',
|
|
|
|
]
|
|
|
|
logging.info(cmd)
|
|
|
|
full_path_ocr = os.path.join(dir_name, filename_ocr)
|
|
|
|
with open(filename, 'rb') as input_file, open(
|
|
|
|
full_path_ocr, 'wb'
|
|
|
|
) as output_file:
|
|
|
|
proc = subprocess.run(
|
|
|
|
cmd,
|
|
|
|
stdin=input_file,
|
|
|
|
stdout=output_file,
|
|
|
|
stderr=subprocess.PIPE,
|
|
|
|
check=False,
|
2020-12-22 01:38:41 -08:00
|
|
|
text=True,
|
|
|
|
errors='ignore',
|
2020-03-03 02:15:35 -08:00
|
|
|
)
|
2020-12-22 01:38:41 -08:00
|
|
|
logging.info(proc.stderr)
|
2020-03-03 02:15:35 -08:00
|
|
|
os.chmod(full_path_ocr, 0o664)
|
|
|
|
os.chmod(full_path, 0o664)
|
|
|
|
full_path_ocr_archive = sys.argv[2]
|
|
|
|
full_path_archive = sys.argv[2] + '/no_ocr'
|
|
|
|
shutil.move(full_path_ocr, full_path_ocr_archive)
|
|
|
|
shutil.move(full_path, full_path_archive)
|
|
|
|
logging.info('Finished.\n')
|