photos.py 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279
  1. # -*- coding: utf-8 -*-
  2. from __future__ import unicode_literals
  3. import os
  4. import re
  5. import logging
  6. from pelican import signals
  7. from pelican.utils import pelican_open
  8. from PIL import Image, ExifTags
  9. from itertools import chain
  10. logger = logging.getLogger(__name__)
  11. queue_resize = dict()
  12. hrefs = None
  13. def initialized(pelican):
  14. p = os.path.expanduser('~/Pictures')
  15. from pelican.settings import DEFAULT_CONFIG
  16. DEFAULT_CONFIG.setdefault('PHOTO_LIBRARY', p)
  17. DEFAULT_CONFIG.setdefault('PHOTO_GALLERY', (1024, 768, 80))
  18. DEFAULT_CONFIG.setdefault('PHOTO_ARTICLE', ( 760, 506, 80))
  19. DEFAULT_CONFIG.setdefault('PHOTO_THUMB', ( 192, 144, 60))
  20. if pelican:
  21. pelican.settings.setdefault('PHOTO_LIBRARY', p)
  22. pelican.settings.setdefault('PHOTO_GALLERY', (1024, 768, 80))
  23. pelican.settings.setdefault('PHOTO_ARTICLE', ( 760, 506, 80))
  24. pelican.settings.setdefault('PHOTO_THUMB', ( 192, 144, 60))
  25. def read_notes(filename, msg=None):
  26. notes = {}
  27. try:
  28. with pelican_open(filename) as text:
  29. for line in text.splitlines():
  30. m = line.split(':', 1)
  31. if len(m) > 1:
  32. pic = m[0].strip()
  33. note = m[1].strip()
  34. if pic and note:
  35. notes[pic] = note
  36. except:
  37. if msg:
  38. logger.warning(msg, filename)
  39. return notes
  40. def enqueue_resize(orig, resized, spec=(640, 480, 80)):
  41. global queue_resize
  42. if resized not in queue_resize:
  43. queue_resize[resized] = (orig, spec)
  44. elif queue_resize[resized] != (orig, spec):
  45. logger.error('photos: resize conflict for {}, {}-{} is not {}-{}',
  46. resized,
  47. queue_resize[resized][0], queue_resize[resized][1],
  48. orig, spec)
  49. def resize_photos(generator, writer):
  50. print('photos: {} photo resizes to consider.'
  51. .format(len(queue_resize.items())))
  52. for resized, what in queue_resize.items():
  53. resized = os.path.join(generator.output_path, resized)
  54. orig, spec = what
  55. if (not os.path.isfile(resized) or
  56. os.path.getmtime(orig) > os.path.getmtime(resized)):
  57. logger.info('photos: make photo %s -> %s', orig, resized)
  58. im = Image.open(orig)
  59. try:
  60. exif = im._getexif()
  61. except Exception:
  62. exif = None
  63. try:
  64. icc_profile = im.info.get("icc_profile")
  65. except Exception:
  66. icc_profile = None
  67. if exif:
  68. for tag, value in exif.items():
  69. decoded = ExifTags.TAGS.get(tag, tag)
  70. if decoded == 'Orientation':
  71. if value == 3: im = im.rotate(180)
  72. elif value == 6: im = im.rotate(270)
  73. elif value == 8: im = im.rotate(90)
  74. break
  75. im.thumbnail((spec[0], spec[1]), Image.ANTIALIAS)
  76. try:
  77. os.makedirs(os.path.split(resized)[0])
  78. except:
  79. pass
  80. im.save(resized, 'JPEG', quality=spec[2], icc_profile=icc_profile)
  81. def detect_content(content):
  82. def replacer(m):
  83. what = m.group('what')
  84. value = m.group('value')
  85. origin = m.group('path')
  86. if what == 'photo':
  87. if value.startswith('/'):
  88. value = value[1:]
  89. path = os.path.join(
  90. os.path.expanduser(settings['PHOTO_LIBRARY']),
  91. value)
  92. if not os.path.isfile(path):
  93. logger.error('photos: No photo %s', path)
  94. else:
  95. photo = os.path.splitext(value)[0].lower() + 'a.jpg'
  96. origin = os.path.join(settings['SITEURL'], 'photos', photo)
  97. enqueue_resize(
  98. path,
  99. os.path.join('photos', photo),
  100. settings['PHOTO_ARTICLE'])
  101. return ''.join((m.group('markup'), m.group('quote'), origin,
  102. m.group('quote')))
  103. global hrefs
  104. if hrefs is None:
  105. regex = r"""
  106. (?P<markup><\s*[^\>]* # match tag with src and href attr
  107. (?:href|src)\s*=)
  108. (?P<quote>["\']) # require value to be quoted
  109. (?P<path>{0}(?P<value>.*?)) # the url value
  110. \2""".format(content.settings['INTRASITE_LINK_REGEX'])
  111. hrefs = re.compile(regex, re.X)
  112. if content._content and '{photo}' in content._content:
  113. settings = content.settings
  114. content._content = hrefs.sub(replacer, content._content)
  115. def process_gallery_photo(generator, article, gallery):
  116. if gallery.startswith('/'):
  117. gallery = gallery[1:]
  118. dir_gallery = os.path.join(
  119. os.path.expanduser(generator.settings['PHOTO_LIBRARY']),
  120. gallery)
  121. if os.path.isdir(dir_gallery):
  122. logger.info('photos: Gallery detected: %s', gallery)
  123. dir_photo = os.path.join('photos', gallery.lower())
  124. dir_thumb = os.path.join('photos', gallery.lower())
  125. exifs = read_notes(os.path.join(dir_gallery, 'exif.txt'),
  126. msg='photos: No EXIF for gallery %s')
  127. captions = read_notes(os.path.join(dir_gallery, 'captions.txt'))
  128. article.photo_gallery = []
  129. for pic in sorted(os.listdir(dir_gallery)):
  130. if pic.startswith('.'): continue
  131. if pic.endswith('.txt'): continue
  132. photo = os.path.splitext(pic)[0].lower() + '.jpg'
  133. thumb = os.path.splitext(pic)[0].lower() + 't.jpg'
  134. article.photo_gallery.append((
  135. pic,
  136. os.path.join(dir_photo, photo),
  137. os.path.join(dir_thumb, thumb),
  138. exifs.get(pic, ''),
  139. captions.get(pic, '')))
  140. enqueue_resize(
  141. os.path.join(dir_gallery, pic),
  142. os.path.join(dir_photo, photo),
  143. generator.settings['PHOTO_GALLERY'])
  144. enqueue_resize(
  145. os.path.join(dir_gallery, pic),
  146. os.path.join(dir_thumb, thumb),
  147. generator.settings['PHOTO_THUMB'])
  148. else:
  149. logger.error('photos: Gallery does not exist: %s at %s', gallery, dir_gallery)
  150. def process_gallery_filename(generator, article, gallery):
  151. if gallery.startswith('/'):
  152. gallery = gallery[1:]
  153. else:
  154. gallery = os.path.join(article.relative_dir, gallery)
  155. dir_gallery = os.path.join(
  156. os.path.expanduser(generator.settings['PHOTO_LIBRARY']),
  157. gallery)
  158. if os.path.isdir(dir_gallery):
  159. logger.info('photos: Gallery detected: %s', gallery)
  160. dir_photo = gallery.lower()
  161. dir_thumb = os.path.join('photos', gallery.lower())
  162. exifs = read_notes(os.path.join(dir_gallery, 'exif.txt'),
  163. msg='photos: No EXIF for gallery %s')
  164. captions = read_notes(os.path.join(dir_gallery, 'captions.txt'))
  165. article.photo_gallery = []
  166. for pic in sorted(os.listdir(dir_gallery)):
  167. if pic.startswith('.'): continue
  168. if pic.endswith('.txt'): continue
  169. photo = pic.lower()
  170. thumb = os.path.splitext(pic)[0].lower() + 't.jpg'
  171. article.photo_gallery.append((
  172. pic,
  173. os.path.join(dir_photo, photo),
  174. os.path.join(dir_thumb, thumb),
  175. exifs.get(pic, ''),
  176. captions.get(pic, '')))
  177. enqueue_resize(
  178. os.path.join(dir_gallery, pic),
  179. os.path.join(dir_thumb, thumb),
  180. generator.settings['PHOTO_THUMB'])
  181. else:
  182. logger.error('photos: Gallery does not exist: %s at %s', gallery, dir_gallery)
  183. def detect_gallery(generator):
  184. for article in chain(generator.articles, generator.drafts):
  185. if 'gallery' in article.metadata:
  186. gallery = article.metadata.get('gallery')
  187. if gallery.startswith('{photo}'):
  188. process_gallery_photo(generator, article, gallery[7:])
  189. elif gallery.startswith('{filename}'):
  190. process_gallery_filename(generator, article, gallery[10:])
  191. elif gallery:
  192. logger.error('photos: Gallery tag not recognized: %s', gallery)
  193. def process_image_photo(generator, article, image):
  194. if image.startswith('/'):
  195. image = image[1:]
  196. path = os.path.join(
  197. os.path.expanduser(generator.settings['PHOTO_LIBRARY']),
  198. image)
  199. if os.path.isfile(path):
  200. photo = os.path.splitext(image)[0].lower() + 'a.jpg'
  201. thumb = os.path.splitext(image)[0].lower() + 't.jpg'
  202. article.photo_image = (
  203. os.path.basename(image).lower(),
  204. os.path.join('photos', photo),
  205. os.path.join('photos', thumb))
  206. enqueue_resize(
  207. path,
  208. os.path.join('photos', photo),
  209. generator.settings['PHOTO_ARTICLE'])
  210. enqueue_resize(
  211. path,
  212. os.path.join('photos', thumb),
  213. generator.settings['PHOTO_THUMB'])
  214. else:
  215. logger.error('photo: No photo for %s at %s', article.source_path, path)
  216. def process_image_filename(generator, article, image):
  217. if image.startswith('/'):
  218. image = image[1:]
  219. else:
  220. image = os.path.join(article.relative_dir, image)
  221. path = os.path.join(generator.path, image)
  222. if os.path.isfile(path):
  223. small = os.path.splitext(image)[0].lower() + 't.jpg'
  224. article.photo_image = (
  225. os.path.basename(image),
  226. image.lower(),
  227. os.path.join('photos', small))
  228. enqueue_resize(
  229. path,
  230. os.path.join('photos', small),
  231. generator.settings['PHOTO_THUMB'])
  232. else:
  233. logger.error('photos: No photo at %s', path)
  234. def detect_image(generator):
  235. for article in chain(generator.articles, generator.drafts):
  236. image = article.metadata.get('image', None)
  237. if image:
  238. if image.startswith('{photo}'):
  239. process_image_photo(generator, article, image[7:])
  240. elif image.startswith('{filename}'):
  241. process_image_filename(generator, article, image[10:])
  242. else:
  243. logger.error('photos: Image tag not recognized: %s', image)
  244. def register():
  245. signals.initialized.connect(initialized)
  246. signals.content_object_init.connect(detect_content)
  247. signals.article_generator_finalized.connect(detect_gallery)
  248. signals.article_generator_finalized.connect(detect_image)
  249. signals.article_writer_finalized.connect(resize_photos)