File: dashboard.py

package info (click to toggle)
android-platform-development 10.0.0%2Br36-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 135,564 kB
  • sloc: java: 160,253; xml: 127,434; python: 40,579; cpp: 17,579; sh: 2,569; javascript: 1,612; ansic: 879; lisp: 261; ruby: 183; makefile: 172; sql: 140; perl: 88
file content (208 lines) | stat: -rw-r--r-- 7,046 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
#!/usr/bin/python2.5

# Copyright (C) 2010 The Android Open Source Project
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may not
# use this file except in compliance with the License. You may obtain a copy of
# the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations under
# the License.

"""
Defines Django forms for inserting/updating/viewing contact data
to/from SampleSyncAdapter datastore.
"""

import cgi
import datetime
import os

from google.appengine.ext import db
from google.appengine.ext import webapp
from google.appengine.ext.webapp import template
from google.appengine.ext.db import djangoforms
from model import datastore
from google.appengine.api import images

import wsgiref.handlers

class BaseRequestHandler(webapp.RequestHandler):
    """
    Base class for our page-based request handlers that contains
    some helper functions we use in most pages.
    """

    """
    Return a form (potentially partially filled-in) to
    the user.
    """
    def send_form(self, title, action, contactId, handle, content_obj):
        if (contactId >= 0):
            idInfo = '<input type="hidden" name="_id" value="%s">'
        else:
            idInfo = ''

        template_values = {
                'title': title,
                'header': title,
                'action': action,
                'contactId': contactId,
                'handle': handle,
                'has_contactId': (contactId >= 0),
                'has_handle': (handle != None),
                'form_data_rows': str(content_obj)
                }

        path = os.path.join(os.path.dirname(__file__), 'templates', 'simple_form.html')
        self.response.out.write(template.render(path, template_values))

class ContactForm(djangoforms.ModelForm):
    """Represents django form for entering contact info."""

    class Meta:
        model = datastore.Contact


class ContactInsertPage(BaseRequestHandler):
    """
    Processes requests to add a new contact. GET presents an empty
    contact form for the user to fill in.  POST saves the new contact
    with the POSTed information.
    """

    def get(self):
        self.send_form('Add Contact', '/add_contact', -1, None, ContactForm())

    def post(self):
        data = ContactForm(data=self.request.POST)
        if data.is_valid():
            # Save the data, and redirect to the view page
            entity = data.save(commit=False)
            entity.put()
            self.redirect('/')
        else:
            # Reprint the form
            self.send_form('Add Contact', '/add_contact', -1, None, data)


class ContactEditPage(BaseRequestHandler):
    """
    Process requests to edit a contact's information.  GET presents a form
    with the current contact information filled in. POST saves new information
    into the contact record.
    """

    def get(self):
        id = int(self.request.get('id'))
        contact = datastore.Contact.get(db.Key.from_path('Contact', id))
        self.send_form('Edit Contact', '/edit_contact', id, contact.handle, 
                       ContactForm(instance=contact))

    def post(self):
        id = int(self.request.get('id'))
        contact = datastore.Contact.get(db.Key.from_path('Contact', id))
        data = ContactForm(data=self.request.POST, instance=contact)
        if data.is_valid():
            # Save the data, and redirect to the view page
            entity = data.save(commit=False)
            entity.updated = datetime.datetime.utcnow()
            entity.put()
            self.redirect('/')
        else:
            # Reprint the form
            self.send_form('Edit Contact', '/edit_contact', id, contact.handle, data)

class ContactDeletePage(BaseRequestHandler):
    """Processes delete contact request."""

    def get(self):
        id = int(self.request.get('id'))
        contact = datastore.Contact.get(db.Key.from_path('Contact', id))
        contact.deleted = True
        contact.updated = datetime.datetime.utcnow()
        contact.put()

        self.redirect('/')

class AvatarEditPage(webapp.RequestHandler):
    """
    Processes requests to edit contact's avatar. GET is used to fetch
    a page that displays the contact's current avatar and allows the user 
    to specify a file containing a new avatar image.  POST is used to
    submit the form which will change the contact's avatar.
    """

    def get(self):
        id = int(self.request.get('id'))
        contact = datastore.Contact.get(db.Key.from_path('Contact', id))
        template_values = {
                'avatar': contact.avatar,
                'contactId': id
                }
        
        path = os.path.join(os.path.dirname(__file__), 'templates', 'edit_avatar.html')
        self.response.out.write(template.render(path, template_values))

    def post(self):
        id = int(self.request.get('id'))
        contact = datastore.Contact.get(db.Key.from_path('Contact', id))
        #avatar = images.resize(self.request.get("avatar"), 128, 128)
        avatar = self.request.get("avatar")
        contact.avatar = db.Blob(avatar)
        contact.updated = datetime.datetime.utcnow()
        contact.put()
        self.redirect('/')

class AvatarViewPage(BaseRequestHandler):
    """
    Processes request to view contact's avatar. This is different from
    the GET AvatarEditPage request in that this doesn't return a page -
    it just returns the raw image itself.
    """

    def get(self):
        id = int(self.request.get('id'))
        contact = datastore.Contact.get(db.Key.from_path('Contact', id))
        if (contact.avatar):
            self.response.headers['Content-Type'] = "image/png"
            self.response.out.write(contact.avatar)
        else:
            self.redirect(self.request.host_url + '/static/img/default_avatar.gif')

class ContactsListPage(webapp.RequestHandler):
    """
    Display a page that lists all the contacts associated with
    the specifies user account.
    """

    def get(self):
        contacts = datastore.Contact.all()
        template_values = {
                'contacts': contacts,
                'username': 'user'
                }

        path = os.path.join(os.path.dirname(__file__), 'templates', 'contacts.html')
        self.response.out.write(template.render(path, template_values))


def main():
    application = webapp.WSGIApplication(
        [('/', ContactsListPage),
         ('/add_contact', ContactInsertPage),
         ('/edit_contact', ContactEditPage),
         ('/delete_contact', ContactDeletePage),
         ('/avatar', AvatarViewPage),
         ('/edit_avatar', AvatarEditPage)
        ],
        debug=True)
    wsgiref.handlers.CGIHandler().run(application)

if __name__ == '__main__':
  main()