# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information.
#
import re
-from urllib2 import urlopen
from urlparse import urljoin
from django.conf import settings
from django.core.files.base import ContentFile
from django.dispatch import receiver
from django.utils.translation import ugettext_lazy as _
from django.contrib.sites.models import Site
+from cover.utils import URLOpener
class Image(models.Model):
author = models.CharField(max_length=255, verbose_name=_('author'))
license_name = models.CharField(max_length=255, verbose_name=_('license name'))
license_url = models.URLField(max_length=255, blank=True, verbose_name=_('license URL'))
- source_url = models.URLField(verbose_name=_('source URL'))
- download_url = models.URLField(unique=True, verbose_name=_('image download URL'))
- file = models.ImageField(upload_to='cover/image', editable=False, verbose_name=_('file'))
+ source_url = models.URLField(verbose_name=_('source URL'), null = True)
+ download_url = models.URLField(unique=True, verbose_name=_('image download URL'), null = True)
+ file = models.ImageField(upload_to='cover/image', editable=True, verbose_name=_('file'))
class Meta:
verbose_name = _('cover image')
@receiver(post_save, sender=Image)
def download_image(sender, instance, **kwargs):
if instance.pk and not instance.file:
- t = urlopen(instance.download_url).read()
+ t = URLOpener().open(instance.download_url).read()
instance.file.save("%d.jpg" % instance.pk, ContentFile(t))
\ No newline at end of file