annotate core/management/commands/ssl_images.py @ 981:ef1558941bc9

Additional tweaks to ssl_images.
author Brian Neal <bgneal@gmail.com>
date Sat, 24 Oct 2015 21:29:07 -0500
parents 3ebde23a59d0
children 7db9037915c4
rev   line source
bgneal@859 1 """
bgneal@859 2 ssl_images is a custom manage.py command to convert forum post and comment
bgneal@859 3 images to https. It does this by rewriting the markup:
bgneal@859 4 - Images with src = http://surfguitar101.com/something are rewritten to be
bgneal@859 5 /something.
bgneal@859 6 - Non SG101 images that use http: are downloaded, resized, and uploaded to
bgneal@859 7 an S3 bucket. The src attribute is replaced with the new S3 URL.
bgneal@859 8 """
bgneal@882 9 import base64
bgneal@895 10 import datetime
bgneal@899 11 import json
bgneal@859 12 import logging
bgneal@859 13 from optparse import make_option
bgneal@888 14 import os
bgneal@863 15 import re
bgneal@863 16 import signal
bgneal@868 17 import urlparse
bgneal@881 18 import uuid
bgneal@859 19
bgneal@859 20 from django.core.management.base import NoArgsCommand, CommandError
bgneal@859 21 from django.conf import settings
bgneal@894 22 from lxml import etree
bgneal@863 23 import markdown.inlinepatterns
bgneal@881 24 from PIL import Image
bgneal@979 25 import requests
bgneal@859 26
bgneal@860 27 from comments.models import Comment
bgneal@860 28 from forums.models import Post
bgneal@979 29 from core.download import download_file
bgneal@979 30 from core.functions import remove_file
bgneal@881 31 from core.s3 import S3Bucket
bgneal@860 32
bgneal@860 33
bgneal@859 34 LOGFILE = os.path.join(settings.PROJECT_PATH, 'logs', 'ssl_images.log')
bgneal@859 35 logger = logging.getLogger(__name__)
bgneal@859 36
bgneal@871 37 IMAGE_LINK_RE = re.compile(markdown.inlinepatterns.IMAGE_LINK_RE,
bgneal@871 38 re.DOTALL | re.UNICODE)
bgneal@871 39 IMAGE_REF_RE = re.compile(markdown.inlinepatterns.IMAGE_REFERENCE_RE,
bgneal@871 40 re.DOTALL | re.UNICODE)
bgneal@863 41
bgneal@868 42 SG101_HOSTS = set(['www.surfguitar101.com', 'surfguitar101.com'])
bgneal@963 43 WHITELIST_HOSTS = set(settings.USER_IMAGES_SOURCES)
bgneal@866 44 MODEL_CHOICES = ['comments', 'posts']
bgneal@866 45
bgneal@881 46 PHOTO_MAX_SIZE = (660, 720)
bgneal@979 47 PHOTO_BASE_URL = settings.HOT_LINK_PHOTOS_BASE_URL
bgneal@979 48 PHOTO_BUCKET_NAME = settings.HOT_LINK_PHOTOS_BUCKET
bgneal@881 49
bgneal@899 50 CACHE_FILENAME = 'ssl_images_cache.json'
bgneal@899 51
bgneal@863 52 quit_flag = False
bgneal@881 53 bucket = None
bgneal@881 54 url_cache = {}
bgneal@899 55 bad_hosts = set()
bgneal@980 56 request_timeout = None
bgneal@863 57
bgneal@863 58
bgneal@863 59 def signal_handler(signum, frame):
bgneal@863 60 """SIGINT signal handler"""
bgneal@863 61 global quit_flag
bgneal@863 62 quit_flag = True
bgneal@863 63
bgneal@859 64
bgneal@859 65 def _setup_logging():
bgneal@859 66 logger.setLevel(logging.DEBUG)
bgneal@859 67 logger.propagate = False
bgneal@859 68 handler = logging.FileHandler(filename=LOGFILE, encoding='utf-8')
bgneal@859 69 formatter = logging.Formatter('%(asctime)s %(levelname)s %(message)s')
bgneal@859 70 handler.setFormatter(formatter)
bgneal@859 71 logger.addHandler(handler)
bgneal@859 72
bgneal@981 73 requests_log = logging.getLogger("requests.packages.urllib3")
bgneal@981 74 requests_log.setLevel(logging.INFO)
bgneal@981 75 requests_log.propagate = True
bgneal@981 76 requests_log.addHandler(handler)
bgneal@981 77
bgneal@859 78
bgneal@979 79 def resize_image(img_path):
bgneal@979 80 """Resizes the image found at img_path if necessary.
bgneal@979 81
bgneal@979 82 Returns True if the image was resized or resizing wasn't necessary.
bgneal@979 83 Returns False if the image could not be read or processed.
bgneal@881 84 """
bgneal@979 85 try:
bgneal@979 86 image = Image.open(img_path)
bgneal@979 87 except IOError as ex:
bgneal@979 88 logger.error("Error opening %s: %s", img_path, ex)
bgneal@979 89 return False
bgneal@881 90
bgneal@881 91 if image.size > PHOTO_MAX_SIZE:
bgneal@881 92 logger.info('Resizing from %s to %s', image.size, PHOTO_MAX_SIZE)
bgneal@981 93 try:
bgneal@981 94 image.thumbnail(PHOTO_MAX_SIZE, Image.ANTIALIAS)
bgneal@981 95 image.save(img_path)
bgneal@981 96 except IOError as ex:
bgneal@981 97 logger.error("Error resizing image from %s: %s", img_path, ex)
bgneal@981 98 return False
bgneal@881 99
bgneal@979 100 return True
bgneal@979 101
bgneal@881 102
bgneal@882 103 def gen_key():
bgneal@882 104 """Return a random key."""
bgneal@882 105 return base64.b64encode(uuid.uuid4().bytes, '-_').rstrip('=')
bgneal@882 106
bgneal@882 107
bgneal@881 108 def upload_image(img_path):
bgneal@881 109 """Upload image file located at img_path to our S3 bucket.
bgneal@881 110
bgneal@881 111 Returns the URL of the image in the bucket or None if an error occurs.
bgneal@881 112 """
bgneal@881 113 logger.info("upload_image starting")
bgneal@881 114 # Make a unique name for the image in the bucket
bgneal@881 115 ext = os.path.splitext(img_path)[1]
bgneal@882 116 file_key = gen_key() + ext
bgneal@881 117 try:
bgneal@881 118 return bucket.upload_from_filename(file_key, img_path, public=True)
bgneal@881 119 except IOError as ex:
bgneal@881 120 logger.error("Error uploading file: %s", ex)
bgneal@881 121 return None
bgneal@881 122
bgneal@881 123
bgneal@888 124 def convert_to_ssl(parsed_url):
bgneal@888 125 """Top-level function for moving an image to SSL."""
bgneal@888 126
bgneal@888 127 src = parsed_url.geturl()
bgneal@888 128
bgneal@899 129 if parsed_url.hostname in bad_hosts:
bgneal@899 130 logger.info("Host known to be bad, skipping: %s", src)
bgneal@899 131 return None
bgneal@899 132
bgneal@899 133 # Check the cache
bgneal@897 134 try:
bgneal@897 135 new_url = url_cache[src]
bgneal@897 136 except KeyError:
bgneal@897 137 # cache miss, try to get the file
bgneal@899 138 new_url = save_image_to_cloud(parsed_url)
bgneal@897 139 url_cache[src] = new_url
bgneal@897 140 else:
bgneal@897 141 if new_url:
bgneal@897 142 logger.info("Found URL in cache: %s => %s", src, new_url)
bgneal@897 143 else:
bgneal@897 144 logger.info("URL known to be bad, skipping: %s", src)
bgneal@888 145
bgneal@889 146 return new_url
bgneal@888 147
bgneal@888 148
bgneal@899 149 def save_image_to_cloud(parsed_url):
bgneal@881 150 """Downloads an image at a given source URL. Uploads it to cloud storage.
bgneal@881 151
bgneal@881 152 Returns the new URL or None if unsuccessful.
bgneal@881 153 """
bgneal@979 154 url = parsed_url.geturl()
bgneal@979 155 fn = None
bgneal@979 156 try:
bgneal@980 157 fn = download_file(url, timeout=request_timeout)
bgneal@979 158 except requests.ConnectionError as ex:
bgneal@979 159 logger.error("ConnectionError, ignoring host %s", parsed_url.hostname)
bgneal@979 160 bad_hosts.add(parsed_url.hostname)
bgneal@979 161 except requests.RequestException as ex:
bgneal@979 162 logger.error("%s", ex)
bgneal@979 163 except Exception as ex:
bgneal@979 164 logger.exception("%s", ex)
bgneal@979 165
bgneal@881 166 if fn:
bgneal@979 167 with remove_file(fn):
bgneal@979 168 if resize_image(fn):
bgneal@979 169 return upload_image(fn)
bgneal@881 170 return None
bgneal@868 171
bgneal@868 172
bgneal@866 173 def replace_image_markup(match):
bgneal@870 174 src_parts = match.group(8).split()
bgneal@868 175 if src_parts:
bgneal@868 176 src = src_parts[0]
bgneal@868 177 if src[0] == "<" and src[-1] == ">":
bgneal@868 178 src = src[1:-1]
bgneal@868 179 else:
bgneal@868 180 src = ''
bgneal@868 181
bgneal@868 182 title = ''
bgneal@868 183 if len(src_parts) > 1:
bgneal@868 184 title = " ".join(src_parts[1:])
bgneal@870 185 alt = match.group(1)
bgneal@868 186
bgneal@871 187 new_src = None
bgneal@868 188 if src:
bgneal@868 189 r = urlparse.urlparse(src)
bgneal@871 190 if r.hostname in SG101_HOSTS:
bgneal@871 191 new_src = r.path # convert to relative path
bgneal@871 192 elif r.scheme == 'http':
bgneal@888 193 # Try a few things to get this on ssl:
bgneal@888 194 new_src = convert_to_ssl(r)
bgneal@868 195 elif r.scheme == 'https':
bgneal@963 196 if r.hostname in WHITELIST_HOSTS:
bgneal@963 197 new_src = src # already in whitelist
bgneal@963 198 else:
bgneal@963 199 new_src = convert_to_ssl(r)
bgneal@868 200
bgneal@868 201 if new_src:
bgneal@868 202 if title:
bgneal@871 203 s = u'![{alt}]({src} {title})'.format(alt=alt, src=new_src, title=title)
bgneal@868 204 else:
bgneal@868 205 s = u'![{alt}]({src})'.format(alt=alt, src=new_src)
bgneal@868 206 else:
bgneal@868 207 # something's messed up, convert to a link using original src
bgneal@868 208 s = u'[{alt}]({src})'.format(alt=alt, src=src)
bgneal@868 209
bgneal@868 210 return s
bgneal@860 211
bgneal@860 212
bgneal@887 213 def warn_if_image_refs(text, model_name, pk):
bgneal@887 214 """Search text for Markdown image reference markup.
bgneal@887 215
bgneal@887 216 We aren't expecting these, but we will log something if we see any.
bgneal@887 217 """
bgneal@887 218 if IMAGE_REF_RE.search(text):
bgneal@887 219 logger.warning("Image reference found in %s pk = #%d", model_name, pk)
bgneal@887 220
bgneal@887 221
bgneal@866 222 def process_post(text):
bgneal@863 223 """Process the post object:
bgneal@863 224
bgneal@863 225 A regex substitution is run on the post's text field. This fixes up image
bgneal@863 226 links, getting rid of plain old http sources; either converting to https
bgneal@863 227 or relative style links (if the link is to SG101).
bgneal@863 228
bgneal@863 229 """
bgneal@866 230 return IMAGE_LINK_RE.sub(replace_image_markup, text)
bgneal@863 231
bgneal@863 232
bgneal@894 233 def html_check(html):
bgneal@894 234 """Return True if the given HTML fragment has <img> tags with src attributes
bgneal@894 235 that use http, and False otherwise.
bgneal@894 236 """
bgneal@894 237 if not html:
bgneal@894 238 return False
bgneal@894 239
bgneal@894 240 root = etree.HTML(html)
bgneal@894 241 for img in root.iter('img'):
bgneal@894 242 src = img.get('src')
bgneal@894 243 if src and src.lower().startswith('http:'):
bgneal@894 244 return True
bgneal@894 245 return False
bgneal@894 246
bgneal@894 247
bgneal@859 248 class Command(NoArgsCommand):
bgneal@859 249 help = "Rewrite forum posts and comments to not use http for images"
bgneal@859 250 option_list = NoArgsCommand.option_list + (
bgneal@866 251 make_option('-m', '--model',
bgneal@866 252 choices=MODEL_CHOICES,
bgneal@866 253 help="which model to update; must be one of {{{}}}".format(
bgneal@866 254 ', '.join(MODEL_CHOICES))),
bgneal@860 255 make_option('-i', '--i',
bgneal@859 256 type='int',
bgneal@863 257 help="optional first slice index; the i in [i:j]"),
bgneal@860 258 make_option('-j', '--j',
bgneal@859 259 type='int',
bgneal@863 260 help="optional second slice index; the j in [i:j]"),
bgneal@898 261 make_option('-t', '--timeout',
bgneal@980 262 type='float',
bgneal@979 263 help="optional socket timeout (secs)",
bgneal@980 264 default=30.0),
bgneal@859 265 )
bgneal@859 266
bgneal@859 267 def handle_noargs(self, **options):
bgneal@895 268 time_started = datetime.datetime.now()
bgneal@859 269 _setup_logging()
bgneal@860 270 logger.info("Starting; arguments received: %s", options)
bgneal@859 271
bgneal@866 272 if options['model'] not in MODEL_CHOICES:
bgneal@866 273 raise CommandError('Please choose a --model option')
bgneal@859 274
bgneal@866 275 if options['model'] == 'comments':
bgneal@860 276 qs = Comment.objects.all()
bgneal@866 277 text_attr = 'comment'
bgneal@881 278 model_name = 'Comment'
bgneal@860 279 else:
bgneal@860 280 qs = Post.objects.all()
bgneal@866 281 text_attr = 'body'
bgneal@881 282 model_name = 'Post'
bgneal@860 283
bgneal@860 284 i, j = options['i'], options['j']
bgneal@860 285
bgneal@860 286 if i is not None and i < 0:
bgneal@860 287 raise CommandError("-i must be >= 0")
bgneal@860 288 if j is not None and j < 0:
bgneal@860 289 raise CommandError("-j must be >= 0")
bgneal@860 290 if j is not None and i is not None and j <= i:
bgneal@860 291 raise CommandError("-j must be > -i")
bgneal@860 292
bgneal@860 293 if i is not None and j is not None:
bgneal@860 294 qs = qs[i:j]
bgneal@860 295 elif i is not None and j is None:
bgneal@860 296 qs = qs[i:]
bgneal@860 297 elif i is None and j is not None:
bgneal@860 298 qs = qs[:j]
bgneal@860 299
bgneal@881 300 # Set global socket timeout
bgneal@980 301 global request_timeout
bgneal@980 302 request_timeout = options.get('timeout')
bgneal@980 303 logger.info("Using socket timeout of %4.2f", request_timeout)
bgneal@881 304
bgneal@863 305 # Install signal handler for ctrl-c
bgneal@863 306 signal.signal(signal.SIGINT, signal_handler)
bgneal@863 307
bgneal@881 308 # Create bucket to upload photos
bgneal@881 309 global bucket
bgneal@881 310 bucket = S3Bucket(access_key=settings.USER_PHOTOS_ACCESS_KEY,
bgneal@881 311 secret_key=settings.USER_PHOTOS_SECRET_KEY,
bgneal@881 312 base_url=PHOTO_BASE_URL,
bgneal@881 313 bucket_name=PHOTO_BUCKET_NAME)
bgneal@887 314
bgneal@899 315 # Load cached info from previous runs
bgneal@899 316 load_cache()
bgneal@899 317
bgneal@887 318 if i is None:
bgneal@887 319 i = 0
bgneal@887 320
bgneal@895 321 count = 0
bgneal@881 322 for n, model in enumerate(qs.iterator()):
bgneal@863 323 if quit_flag:
bgneal@863 324 logger.warning("SIGINT received, exiting")
bgneal@881 325 break
bgneal@881 326 logger.info("Processing %s #%d (pk = %d)", model_name, n + i, model.pk)
bgneal@866 327 txt = getattr(model, text_attr)
bgneal@887 328 warn_if_image_refs(txt, model_name, model.pk)
bgneal@866 329 new_txt = process_post(txt)
bgneal@881 330 if txt != new_txt:
bgneal@889 331 logger.info("Content changed on %s #%d (pk = %d)",
bgneal@887 332 model_name, n + i, model.pk)
bgneal@881 333 logger.debug("original: %s", txt)
bgneal@881 334 logger.debug("changed: %s", new_txt)
bgneal@887 335 setattr(model, text_attr, new_txt)
bgneal@887 336 model.save()
bgneal@894 337 elif html_check(model.html):
bgneal@894 338 # Check for content generated with older smiley code that used
bgneal@894 339 # absolute URLs for the smiley images. If True, then just save
bgneal@894 340 # the model again to force updated HTML to be created.
bgneal@894 341 logger.info("Older Smiley HTML detected, forcing a save")
bgneal@894 342 model.save()
bgneal@895 343 count += 1
bgneal@860 344
bgneal@895 345 time_finished = datetime.datetime.now()
bgneal@895 346 elapsed = time_finished - time_started
bgneal@895 347 logger.info("ssl_images exiting; number of objects: %d; elapsed: %s",
bgneal@895 348 count, elapsed)
bgneal@897 349
bgneal@897 350 http_images = len(url_cache)
bgneal@897 351 https_images = sum(1 for v in url_cache.itervalues() if v)
bgneal@897 352 bad_images = http_images - https_images
bgneal@897 353 if http_images > 0:
bgneal@897 354 pct_saved = float(https_images) / http_images * 100.0
bgneal@897 355 else:
bgneal@897 356 pct_saved = 0.0
bgneal@897 357
bgneal@897 358 logger.info("Summary: http: %d; https: %d; lost: %d; saved: %3.1f %%",
bgneal@897 359 http_images, https_images, bad_images, pct_saved)
bgneal@899 360
bgneal@899 361 save_cache()
bgneal@899 362 logger.info("ssl_images done")
bgneal@899 363
bgneal@899 364
bgneal@899 365 def load_cache():
bgneal@899 366 """Load cache from previous runs."""
bgneal@899 367 logger.info("Loading cached information")
bgneal@899 368 try:
bgneal@899 369 with open(CACHE_FILENAME, 'r') as fp:
bgneal@899 370 d = json.load(fp)
bgneal@899 371 except IOError as ex:
bgneal@899 372 logger.error("Cache file (%s) IOError: %s", CACHE_FILENAME, ex)
bgneal@899 373 return
bgneal@899 374 except ValueError:
bgneal@899 375 logger.error("Mangled cache file: %s", CACHE_FILENAME)
bgneal@899 376 return
bgneal@899 377
bgneal@899 378 global bad_hosts, url_cache
bgneal@899 379 try:
bgneal@899 380 bad_hosts = set(d['bad_hosts'])
bgneal@899 381 url_cache = d['url_cache']
bgneal@899 382 except KeyError:
bgneal@899 383 logger.error("Malformed cache file: %s", CACHE_FILENAME)
bgneal@899 384
bgneal@899 385
bgneal@899 386 def save_cache():
bgneal@899 387 """Save our cache to a file for future runs."""
bgneal@899 388 logger.info("Saving cached information")
bgneal@899 389 d = {'bad_hosts': list(bad_hosts), 'url_cache': url_cache}
bgneal@899 390 with open(CACHE_FILENAME, 'w') as fp:
bgneal@899 391 json.dump(d, fp, indent=4)