On May 18, 2009, at 12:12 PM, Patrick wrote:

>
> Well, I guess what I'm confused about is adding data that doesn't come
> directly from forms.
> I ended up doing this and it seemed to work.
>
> for line in file:
>    b=Book()
>    b.title=line
>    b.save()

Here is how I do it, Model, Form, View.  The Django file form can  
process a bunch of this but I am capturing some metadata that is NOT  
on the forms so have to do that after form processing then do a  
separate save().


Note that my models are inheriting from some abstract base classes  
which provide tracking and hierarchy relationships, but you can see  
what the upload part is doing fairly clearly.


The model:

class File(FileDropContent):
     file        = models.FileField(upload_to=FILEDROP_ROOT)
     mime_type   = models.CharField(_('mime_type'),               
max_length=127)
     downloaded  = models.DateTimeField(_('last download date'),  
null=True)
     expiration  = models.DateTimeField(_('expiration date'),    )
     parent      = models.ForeignKey(Container,                   
related_name='files', null=True)

     def is_expired(self):
         return self.expiration < datetime.datetime.now()


The form:

class FileForm(forms.ModelForm):
     """
     Upload File, select file from filesystem browser, get expriation  
description from user.
     """
     def __init__(self, *args, **kwargs):
         """
         Fix field order here too.
         """
         super(FileForm, self).__init__(*args, **kwargs)
         description = self.fields.pop('description')
         new_pos = len(self.fields)
         self.fields.insert(new_pos, 'description', description)

     class Meta:
         model = File
         fields = ['file', 'expiration', 'description']

And the view:

def file_create(request, parent_id):
     """
     Get upload file and metadata (e.g. true name), save file to disk.
     """
     parent = Container.objects.get(pk=parent_id)
     if not _is_writable(request.user, parent):
         return HttpResponse("You don't have permission to upload a  
file into parent '%s'" % parent)
     if request.method == "POST":
         form = FileForm(request.POST, request.FILES)
         if form.is_valid():
             uploadobj           = form.save(commit=False)
             uploadobj.parent    = parent
             uploadobj.title     = request.FILES['file'].name
             uploadobj.mime_type = request.FILES['file'].content_type
             uploadobj.creator   = request.user
             uploadobj.ip        = request.META.get('REMOTE_ADDR',  
"0.0.0.0")
             uploadobj.save()
             return HttpResponseRedirect(reverse("file_detail",  
args=[uploadobj.pk]))



--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to