vote up 10 vote down star
8

I am planning to create a web app that allows users to downgrade their visual studio project files. However, It seems Google App Engine accepts files uploading and flat file storing on the Google Server through db.TextProperty and db.BlobProperty.

I'll be glad anyone can provide code sample ( both the client and the server side) on how this can be done, thanks

flag

49% accept rate

8 Answers

vote up 0 vote down

Personally i found the tutorial described here useful when using the Java run time with GAE. for some reason, when i tried to upload a file using the following form:

<form action="/testservelet" method="get" enctype="multipart/form-data">
    <div>
        Myfile:<input type="file" name="file" size="50"/>
    </div>

    <div>
        <input type="submit" value="Upload file">
    </div>
</form>

I found that my HttpServlet class for some reason wouldn't accept the form with the 'enctype' attribute. Removing it works, however, this means i can't upload any files.

link|flag
It may be because you are using the get method, try setting it to post instead. I'm not certain if it'll work but it's worth trying. – slashnick Sep 9 at 19:55
vote up 1 vote down

If your still having a problem, check you are using enctype in the form tag

No:

<form encoding="multipart/form-data" action="/upload">

Yes:

<form enctype="multipart/form-data" action="/upload">
link|flag
vote up 0 vote down

Thank you Guido for the answer, but I am having problem with this statement:

file_contents = request.FILES['myfile'].read()

I am getting this error "AttributeError: FILES" and I have to use

file_contents = request.get('myfile')

to make it work

Is request.FILES valid in GAE ?

Do you know where the documentation for this is? I couldn't find anything on request.FILES in GAE website.

Thank you.


Details of the error

Traceback (most recent call last):
  File "C:\Program Files\Google\google_appengine\google\appengine\ext\webapp\__init__.py", line 501, in __call__
    handler.post(*groups)
  File "c:\helloworldform01\helloworld.py", line 52, in post
    greeting.file1 = self.request.FILES['myfile1'].read()
  File "C:\Program Files\Google\google_appengine\lib\webob\webob\__init__.py", line 500, in __getattr__
    raise AttributeError(attr)
AttributeError: FILES
link|flag
2  
request.FILES is for django only, for the default (webob - do what you described). – Michael Neale May 18 at 12:18
vote up 4 vote down

In fact, this question is answered in the App Egnine documentation. See an example on Uploading User Images.

HTML code, inside <form></form>:

<input type="file" name="img"/>

Python code:

class Guestbook(webapp.RequestHandler):
  def post(self):
    greeting = Greeting()
    if users.get_current_user():
      greeting.author = users.get_current_user()
    greeting.content = self.request.get("content")
    avatar = self.request.get("img")
    greeting.avatar = db.Blob(avatar)
    greeting.put()
    self.redirect('/')
link|flag
vote up 4 vote down

There is a thread in google groups about it

Uploading Files

With a lot of useful code, that discussion help me very much in this topic of uploading files.

link|flag
vote up 5 vote down

Client side upload :

<form enctype="multipart/form-data" action="/upload">
<input type="file" name="myfile" />
<input type="submit" />
</form>

Server side storing :

class MyModel(db.Model):
   blob = db.BlobProperty()


def upload(request) :
    # TODO add your own validations
    file_contents = request.FILES['myfile'].read() # django only
    obj = MyModel()
    obj.blob = db.Blob( file_contents )
    obj.put()

def download(request, id) :
    obj = MyModel.all().filter("id", id).get()
    # TODO write obj.blob to the response

Untested copy&paste. I use django. The url mapping is up to you :)

Hope that helps a little.

link|flag
Thanks! Seem to be exactly what I wanted – Ngu Soon Hui Sep 17 '08 at 12:27
WRONG. Check your answer before you post. OP this definitely should not be marked as the correct answer. It has several mistakes in it. It is not because it uses django either. Test your code. – bobobobo Sep 11 at 11:35
Shouldn't "form encoding=" be "form enctype=" ? – Bill the Lizard Sep 11 at 11:44
vote up 0 vote down

There's no flat file storing in Google App Engine. Everything has to go in to the Datastore which is a bit like a relational database but not quite.

You could store the files as TextProperty or BlobProperty attributes.

There is a 1MB limit on DataStore entries which may or may not be a problem.

link|flag
vote up 1 vote down

You can not store files as there is not a traditional file system. You can only store them in their own DataStore (in a field defined as a BlobProperty)

There is an example in the previous link:

class MyModel(db.Model):
  blob = db.BlobProperty()

obj = MyModel()
obj.blob = db.Blob( file_contents )
link|flag

Your Answer

Get an OpenID
or

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