I'm trying to create a field in a model, that should store an image for a registered user. This image should be renamed and stored in a separate user directory like media/users/10/photo.jpeg.

I've searched a lot, but still can't find how to do it cleanly and correctly. It seems to me that many sites require the same functionality and this should be in django docs, but it is not.

link|improve this question

You are creating a directory for every user id? Why not media/users/10.jpeg? Just asking :D – César Nov 18 '11 at 22:23
Because there could be other user-related content to store :) – dragoon Nov 18 '11 at 22:34
Oh I see! I think I've faced a similar problem let me see if I can help – César Nov 18 '11 at 22:37
feedback

4 Answers

up vote 1 down vote accepted

You want to use the "upload_to" option on an ImageField

#models.py
import os

def get_image_path(instance, filename):
    return os.path.join('photos', str(instance.id), filename)

class UserProfile(models.Model):
    user = models.ForeignKey(User, unique=True)
    profile_image = ImageField(upload_to=get_image_path, blank=True, null=True)

This is code directly from a project of mine. The uploaded image goes to /MEDIA_ROOT/photos/<user_id>/filename

For what you want, just change the 'photos' string to 'users' in def get_image_path

Here is the small bit about it in the docs, under FileField details

link|improve this answer
Cool, this actually does save file to the correct location, but when I use in template {{ user.profile_image }} it for some reason gives /users/users/40/photo.png instead of /media/users/40/photo.png – dragoon Nov 19 '11 at 14:58
1  
Sorry, I should have used {{ user.profile_image.url }} – dragoon Nov 19 '11 at 15:10
feedback

You can try something like this:

class MyClass(models.Model):
    user = models.ForeignKey(User)
    ...
    picture = models.ImageField(upload_to='users/') # will upload to media/users/

    def save(self, *args, **kwargs):
        super(MyClass, self).save(*args, **kwargs)
        if self.picture:
            extension = os.path.splitext(self.picture.name)[-1]
            filename = self.picture.field.generate_filename(self, '%s/%s.%s' % (self.id, 'photo', extension))
            self.picture = filename
            self.save()
link|improve this answer
Thanks, it's almost good except you should NOT use self.save because of infinite recursion. – dragoon Nov 19 '11 at 14:50
feedback

You'll need to make a model that has a foreign key to the User model, where you can have an image field for the User. I would not recommend modifying the User model itself.

link|improve this answer
I'm sorry, but the question is not about the model, it's about how to store images. – dragoon Nov 18 '11 at 22:35
1  
You can create a dynamic upload path for any FileField or Image field. Just add a function to your model that returns the path for upload_to. You can find an example in the Django docs at: docs.djangoproject.com/en/1.3/ref/models/fields/#filefield – Brandon Nov 18 '11 at 22:43
feedback

I suggest you to look into django-photologue. Its a django app with all image managment, uploading and storing already done!

More about at: http://code.google.com/p/django-photologue/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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