2020-03-03 02:15:35 -08:00
|
|
|
#!/bin/env python3
|
2020-08-05 00:12:44 -07:00
|
|
|
# Copyright 2017 github.com/Enantiomerie
|
|
|
|
#
|
|
|
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
# of this software and associated documentation files (the "Software"), to deal
|
|
|
|
# in the Software without restriction, including without limitation the rights
|
|
|
|
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
# copies of the Software, and to permit persons to whom the Software is
|
|
|
|
# furnished to do so, subject to the following conditions:
|
|
|
|
#
|
|
|
|
# The above copyright notice and this permission notice shall be included in all
|
|
|
|
# copies or substantial portions of the Software.
|
|
|
|
#
|
|
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
# SOFTWARE.
|
2020-03-03 02:15:35 -08:00
|
|
|
|
|
|
|
# This script must be edited to meet your needs.
|
|
|
|
|
|
|
|
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',
|
|
|
|
)
|
|
|
|
|
|
|
|
if len(sys.argv) > 1:
|
|
|
|
start_dir = sys.argv[1]
|
|
|
|
else:
|
|
|
|
start_dir = '.'
|
|
|
|
|
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')
|