I have read other questions on this topic but none that actually answers my question.
I let users upload pictures when they submit a certain item to the site. Every user can submit multiple items, and each item has one picture.
The thing is, I don't want to save the picture with the original filename. I want to save it with the item's ID. So if a user submits a Banana item, which is given ID 5 and the filename is
banana.jpg
I want it to save as
site_media/items/5.jpg
and not
site_media/items/banana.jpg
which is what Django is doing automatically.
Now the thing is, when I get the POST multipart data from the form, I already save the picture as site_media/items/item_ID.jpg. However, when I try to display the field item.picture on a template, it tries to access
site_media/items/banana.jpg
instead of
site_media/items/5.jpg
Which is the file that actually exists. So I get a broken link.
I tried to change the picture.path property, hoping it was just a string Django reads from when linking the image, but Django gives me an exception, which drives me to think it might be something else.
Also, naturally, I would prefer if there is a solution where I just change the filename when saving, instead of removing the file with the original filename and save a copy with the new name, for good practice and efficiency purposes.
Anybody can help me with this? Thank you.
Models code:
class Item(...):
...
picture = models.ImageField(
upload_to="site_media/items/",
max_length=512,
null=True,
default=''
)
Here is the function handling the POST form:
item = Item.objects.create(... data from form)
try:
picture = FILES['picture']
print str(picture)
destination = open('site_media/items/'+str(item.id)+".png", 'wb+')
for chunk in picture.chunks():
destination.write(chunk)
destination.close()
item.picture = picture
except Exception:
messages.error(request, "Picture for item not loaded successfully")