Having issues with SORL Thumbnail and deleting thumbnails files or refreshing thumbnails when a file is overwritten. The scenario is that I have a file that for each entry is always the same but can be overwritten. Need the thumbnail to be recreated when a new file is uploaded and the old file is overwritten.

This is at the model + form level so I'm using the low level API to generate thumbs.

Have tried using:

from sorl.thumbnail import delete

delete(filename)

But with no success, the thumbnail is never deleted or overwritten.

I have even tried:

from sorl.thumbnail.images import ImageFile
from sorl.thumbnail import default

image_file = ImageFile(filename)
default.kvstore.delete_thumbnails(image_file)

Again with no success.

Please help!

Update:

I found a work around by creating an alternate ThumbnailBackend and a new _get_thumbnail_filename method. The new method uses a file's SHA-1 hash to always have a thumbnail specific to the current file.

Here's the backend for anyone else that might encounter a similar scenario.

class HashThumbnailBackend(ThumbnailBackend):

  def _get_thumbnail_filename(self, source, geometry_string, options):
    """
    Computes the destination filename.
    """
    import hashlib

    # hash object
    hash = hashlib.sha1()

    # open file and read it in as chunks to save memory
    f = source.storage.open(u'%s' % source, 'rb')
    while True:
      chunk = f.read(128)
      if not chunk:
        break
      hash.update(hashlib.sha1(chunk).hexdigest())

    # close file
    f.close()

    hash.update(geometry_string)
    hash.update(serialize(options))
    key = hash.hexdigest()

    # make some subdirs
    path = '%s/%s/%s' % (key[:2], key[2:4], key)
    return '%s%s.%s' % (settings.THUMBNAIL_PREFIX, path,
                        self.extensions[options['format']])
link|improve this question
feedback

1 Answer

Its a little hard to explain so I made this awesome table. the first column's commands are listed below, the other columns marks wheter it deletes using an X. Original is the original file, thumbnails the thumbnails for the original and KV means the Key Value store reference.

| Command | Original | Thumbnails | KV Original | KV Thumbnails |
| #1      | X        | X          | X           | X             |
| #2      |          | X          |             | X             |
| #3      |          | X          | X           | X             |
  1. sorl.thumbnail.delete(filename)
  2. sorl.thumbnail.default.kvstore.delete_thumbnails(image_file)
  3. sorl.thumbnail.delete(filename, delete_file=False)

As I understand it you really want to do #3. Now, your problem... a guess is that filename does not refer to a filename relative to MEDIA_ROOT (if you are using another storage backend the situation would be similar). But I think I need to know what you are doing besides this to get a better picture, note that ImageFields and FileFields do not overwrite, also note that django changed the deletion behaviour in 1.2.5, see release notes.

Update: Anyone reading this should note that the above way to generate thumbnail filenames is extremely inefficient, please do not use if you care anything at about performance.

link|improve this answer
Thanks for the great table, it has helped confirm my understanding. I have code that generates the filename and if a file of that name already exists deletes it so that it may be overwritten in a way. As stated previously I attempted the first two methods you mention with zero effect. I was hoping that the thumbnail cache was keyed to the file data and not just the file name and would delete stale thumbnails or at least create new ones when a file of the same name was overwritten. My new hash based backend resolves this by creating new thumbnails when the file changes. – Fred Feb 23 '11 at 14:44
The problem with your solution using file data is that it is a VERY expensive operation since you would need to open the whole file in memory every time the thumbnail is requested. I have working tests for the commands I have in the above table so I cannot really see why it would fail on your side, perhaps you can use a debugger like pdb to get more information at some wisely chosen breakpoint. Perhaps you are regenerating the thumbnails (from the old image) and thus updating the key value store after you have deleted them using sorl.thumbnail.delete? – sorl Feb 25 '11 at 5:06
I'm thinking there could be some problem that the database does not update within your timeframe, that there is a pending transaction (if you are using the cached db key value store) but even if this was the problem sorl.thumbnail.delete would still delete the thumbnail files. If the thumbnail files are still there after delete you are regenerating them, assuming that you have the permission to delete the files. – sorl Feb 25 '11 at 5:35
How would one remove database records for images that no longer exist. I'm doing some cleanup, and at the moment a couple of files that don't exist is causing template syntax errors. – Nathan Keller Oct 15 '11 at 11:30
This did the trick: class ItemImageManager(models.Manager): def remove_stale_records(self): for item in ItemImage.objects.all(): try: size = item.picture.size if not (size > 0): item.delete() except: item.delete() – Nathan Keller Oct 15 '11 at 12:01
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.