Skip to content
Snippets Groups Projects
Commit 4277f4d9 authored by Anton Sarukhanov's avatar Anton Sarukhanov
Browse files

WIP Photos: case insensitive file extensions, fix config.

parent e5f02999
No related branches found
No related tags found
No related merge requests found
Pipeline #247 passed with stages
in 1 minute and 40 seconds
...@@ -402,6 +402,11 @@ def galleries_string_decompose(gallery_string): ...@@ -402,6 +402,11 @@ def galleries_string_decompose(gallery_string):
def process_gallery(generator, content, location): def process_gallery(generator, content, location):
RE_PHOTO = re.compile('.*\.jpg', re.I)
RE_VIDEO = re.compile('.*\.mp4', re.I)
RE_HIDDEN_FILE = re.compile('^\..*')
RE_TEXT_FILE = re.compile('.*\.txt', re.I)
content.photo_gallery = [] content.photo_gallery = []
galleries = galleries_string_decompose(location) galleries = galleries_string_decompose(location)
...@@ -439,18 +444,15 @@ def process_gallery(generator, content, location): ...@@ -439,18 +444,15 @@ def process_gallery(generator, content, location):
title = gallery['title'] title = gallery['title']
for item in sorted(os.listdir(dir_gallery)): for item in sorted(os.listdir(dir_gallery)):
if item.startswith('.'): if any(regex.match(item) for regex in (RE_HIDDEN_FILE, RE_TEXT_FILE)):
continue
if item.endswith('.txt'):
continue continue
if item in blacklist: if item in blacklist:
continue continue
if item.endswith('.mp4.jpg'): if RE_VIDEO.match(item) and os.path.isfile(
if os.path.isfile( os.path.join(dir_gallery, os.path.splitext(item)[0])):
os.path.join(dir_gallery, os.path.splitext(item)[0])): continue
continue
thumb = os.path.splitext(item)[0] + 't.jpg' thumb = os.path.splitext(item)[0] + 't.jpg'
if item.endswith('.jpg'): if RE_PHOTO.match(item):
enqueue_resize( enqueue_resize(
os.path.join(dir_gallery, item), os.path.join(dir_gallery, item),
os.path.join(dir_photo, item), os.path.join(dir_photo, item),
...@@ -459,7 +461,7 @@ def process_gallery(generator, content, location): ...@@ -459,7 +461,7 @@ def process_gallery(generator, content, location):
os.path.join(dir_gallery, item), os.path.join(dir_gallery, item),
os.path.join(dir_thumb, thumb), os.path.join(dir_thumb, thumb),
generator.settings['PHOTO_THUMB']) generator.settings['PHOTO_THUMB'])
elif item.endswith('.mp4'): elif RE_VIDEO.match(item):
enqueue_copy( enqueue_copy(
os.path.join(dir_gallery, item), os.path.join(dir_gallery, item),
os.path.join(generator.output_path, dir_photo, item), os.path.join(generator.output_path, dir_photo, item),
......
...@@ -9,7 +9,7 @@ SITENAME = 'Anton Sarukhanov' ...@@ -9,7 +9,7 @@ SITENAME = 'Anton Sarukhanov'
SITESUBTITLE = 'Full-Stack Developer' SITESUBTITLE = 'Full-Stack Developer'
SITEURL = os.environ.get('SITEURL') SITEURL = os.environ.get('SITEURL')
PLUGIN_PATHS = ['plugins'] PLUGIN_PATHS = ['my_plugins']
PLUGINS = ['advthumbnailer', 'photos'] PLUGINS = ['advthumbnailer', 'photos']
# Photos # Photos
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment