File: web_services.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 (400 lines) | stat: -rw-r--r-- 15,470 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
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
#!/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.

"""
Handlers for Sample SyncAdapter services.

Contains several RequestHandler subclasses used to handle post operations.
This script is designed to be run directly as a WSGI application.

"""

import cgi
import logging
import time as _time
from datetime import datetime
from django.utils import simplejson
from google.appengine.api import users
from google.appengine.ext import db
from google.appengine.ext import webapp
from model import datastore
import wsgiref.handlers


class BaseWebServiceHandler(webapp.RequestHandler):
    """
    Base class for our web services. We put some common helper
    functions here.
    """

    """
    Since we're only simulating a single user account, declare our
    hard-coded credentials here, so that they're easy to see/find.
    We actually accept any and all usernames that start with this
    hard-coded values. So if ACCT_USER_NAME is 'user', then we'll
    accept 'user', 'user75', 'userbuddy', etc, all as legal account
    usernames.
    """
    ACCT_USER_NAME  = 'user'
    ACCT_PASSWORD   = 'test'
    ACCT_AUTH_TOKEN = 'xyzzy'

    DATE_TIME_FORMAT = '%Y/%m/%d %H:%M'

    """
    Process a request to authenticate a client.  We assume that the username
    and password will be included in the request. If successful, we'll return
    an authtoken as the only content.  If auth fails, we'll send an "invalid
    credentials" error.
    We return a boolean indicating whether we were successful (true) or not (false).
    In the event that this call fails, we will setup the response, so callers just
    need to RETURN in the error case.
    """
    def authenticate(self):
        self.username = self.request.get('username')
        self.password = self.request.get('password')

        logging.info('Authenticatng username: ' + self.username)

        if ((self.username != None) and
                (self.username.startswith(BaseWebServiceHandler.ACCT_USER_NAME)) and
                (self.password == BaseWebServiceHandler.ACCT_PASSWORD)):
            # Authentication was successful - return our hard-coded
            # auth-token as the only response.
            self.response.set_status(200, 'OK')
            self.response.out.write(BaseWebServiceHandler.ACCT_AUTH_TOKEN)
            return True
        else:
            # Authentication failed. Return the standard HTTP auth failure
            # response to let the client know.
            self.response.set_status(401, 'Invalid Credentials')
            return False

    """
    Validate the credentials of the client for a web service request.
    The request should include username/password parameters that correspond
    to our hard-coded single account values.
    We return a boolean indicating whether we were successful (true) or not (false).
    In the event that this call fails, we will setup the response, so callers just
    need to RETURN in the error case.
    """
    def validate(self):
        self.username = self.request.get('username')
        self.authtoken = self.request.get('authtoken')

        logging.info('Validating username: ' + self.username)

        if ((self.username != None) and
                (self.username.startswith(BaseWebServiceHandler.ACCT_USER_NAME)) and
                (self.authtoken == BaseWebServiceHandler.ACCT_AUTH_TOKEN)):
            return True
        else:
            self.response.set_status(401, 'Invalid Credentials')
            return False


class Authenticate(BaseWebServiceHandler):
    """
    Handles requests for login and authentication.

    UpdateHandler only accepts post events. It expects each
    request to include username and password fields. It returns authtoken
    after successful authentication and "invalid credentials" error otherwise.
    """

    def post(self):
        self.authenticate()

    def get(self):
        """Used for debugging in a browser..."""
        self.post()


class SyncContacts(BaseWebServiceHandler):
    """Handles requests for fetching user's contacts.

    UpdateHandler only accepts post events. It expects each
    request to include username and authtoken. If the authtoken is valid
    it returns user's contact info in JSON format.
    """

    def get(self):
        """Used for debugging in a browser..."""
        self.post()

    def post(self):
        logging.info('*** Starting contact sync ***')
        if (not self.validate()):
            return

        updated_contacts = []

        # Process any client-side changes sent up in the request.
        # Any new contacts that were added are included in the
        # updated_contacts list, so that we return them to the
        # client. That way, the client can see the serverId of
        # the newly added contact.
        client_buffer = self.request.get('contacts')
        if ((client_buffer != None) and (client_buffer != '')):
            self.process_client_changes(client_buffer, updated_contacts)

        # Add any contacts that have been updated on the server-side
        # since the last sync by this client.
        client_state = self.request.get('syncstate')
        self.get_updated_contacts(client_state, updated_contacts)

        logging.info('Returning ' + str(len(updated_contacts)) + ' contact records')

        # Return the list of updated contacts to the client
        self.response.set_status(200)
        self.response.out.write(toJSON(updated_contacts))

    def get_updated_contacts(self, client_state, updated_contacts):
        logging.info('* Processing server changes')
        timestamp = None

        base_url = self.request.host_url

        # The client sends the last high-water-mark that they successfully
        # sync'd to in the syncstate parameter.  It's opaque to them, but
        # its actually a seconds-in-unix-epoch timestamp that we use
        # as a baseline.
        if client_state:
            logging.info('Client sync state: ' + client_state)
            timestamp = datetime.utcfromtimestamp(float(client_state))

        # Keep track of the update/delete counts, so we can log it
        # below.  Makes debugging easier...
        update_count = 0
        delete_count = 0

        contacts = datastore.Contact.all()
        if contacts:
            # Find the high-water mark for the most recently updated friend.
            # We'll return this as the syncstate (x) value for all the friends
            # we return from this function.
            high_water_date = datetime.min
            for contact in contacts:
                if (contact.updated > high_water_date):
                    high_water_date = contact.updated
            high_water_mark = str(long(_time.mktime(high_water_date.utctimetuple())) + 1)
            logging.info('New sync state: ' + high_water_mark)

            # Now build the updated_contacts containing all the friends that have been
            # changed since the last sync
            for contact in contacts:
                # If our list of contacts we're returning already contains this
                # contact (for example, it's a contact just uploaded from the client)
                # then don't bother processing it any further...
                if (self.list_contains_contact(updated_contacts, contact)):
                    continue

                handle = contact.handle

                if timestamp is None or contact.updated > timestamp:
                    if contact.deleted == True:
                        delete_count = delete_count + 1
                        DeletedContactData(updated_contacts, handle, high_water_mark)
                    else:
                        update_count = update_count + 1
                        UpdatedContactData(updated_contacts, handle, None, base_url, high_water_mark)

        logging.info('Server-side updates: ' + str(update_count))
        logging.info('Server-side deletes: ' + str(delete_count))

    def process_client_changes(self, contacts_buffer, updated_contacts):
        logging.info('* Processing client changes: ' + self.username)

        base_url = self.request.host_url

        # Build an array of generic objects containing contact data,
        # using the Django built-in JSON parser
        logging.info('Uploaded contacts buffer: ' + contacts_buffer)
        json_list = simplejson.loads(contacts_buffer)
        logging.info('Client-side updates: ' + str(len(json_list)))

        # Keep track of the number of new contacts the client sent to us,
        # so that we can log it below.
        new_contact_count = 0

        for jcontact in json_list:
            new_contact = False
            id = self.safe_attr(jcontact, 'i')
            if (id != None):
                logging.info('Updating contact: ' + str(id))
                contact = datastore.Contact.get(db.Key.from_path('Contact', id))
            else:
                logging.info('Creating new contact record')
                new_contact = True
                contact = datastore.Contact(handle='temp')

            # If the 'change' for this contact is that they were deleted
            # on the client-side, all we want to do is set the deleted
            # flag here, and we're done.
            if (self.safe_attr(jcontact, 'd') == True):
                contact.deleted = True
                contact.put()
                logging.info('Deleted contact: ' + contact.handle)
                continue

            contact.firstname = self.safe_attr(jcontact, 'f')
            contact.lastname = self.safe_attr(jcontact, 'l')
            contact.phone_home = self.safe_attr(jcontact, 'h')
            contact.phone_office = self.safe_attr(jcontact, 'o')
            contact.phone_mobile = self.safe_attr(jcontact, 'm')
            contact.email = self.safe_attr(jcontact, 'e')
            contact.deleted = (self.safe_attr(jcontact, 'd') == 'true')
            if (new_contact):
                # New record - add them to db...
                new_contact_count = new_contact_count + 1
                contact.handle = contact.firstname + '_' + contact.lastname
                logging.info('Created new contact handle: ' + contact.handle)
            contact.put()
            logging.info('Saved contact: ' + contact.handle)

            # We don't save off the client_id value (thus we add it after
            # the "put"), but we want it to be in the JSON object we
            # serialize out, so that the client can match this contact
            # up with the client version.
            client_id = self.safe_attr(jcontact, 'c')

            # Create a high-water-mark for sync-state from the 'updated' time
            # for this contact, so we return the correct value to the client.
            high_water = str(long(_time.mktime(contact.updated.utctimetuple())) + 1)

            # Add new contacts to our updated_contacts, so that we return them
            # to the client (so the client gets the serverId for the
            # added contact)
            if (new_contact):
                UpdatedContactData(updated_contacts, contact.handle, client_id, base_url,
                        high_water)

        logging.info('Client-side adds: ' + str(new_contact_count))

    def list_contains_contact(self, contact_list, contact):
        if (contact is None):
            return False
        contact_id = str(contact.key().id())
        for next in contact_list:
            if ((next != None) and (next['i'] == contact_id)):
                return True
        return False

    def safe_attr(self, obj, attr_name):
        if attr_name in obj:
            return obj[attr_name]
        return None

class ResetDatabase(BaseWebServiceHandler):
    """
    Handles cron request to reset the contact database.

    We have a weekly cron task that resets the database back to a
    few contacts, so that it doesn't grow to an absurd size.
    """

    def get(self):
        # Delete all the existing contacts from the database
        contacts = datastore.Contact.all()
        for contact in contacts:
            contact.delete()

        # Now create three sample contacts
        contact1 = datastore.Contact(handle = 'juliet',
                firstname = 'Juliet',
                lastname = 'Capulet',
                phone_mobile = '(650) 555-1000',
                phone_home = '(650) 555-1001',
                status = 'Wherefore art thou Romeo?')
        contact1.put()

        contact2 = datastore.Contact(handle = 'romeo',
                firstname = 'Romeo',
                lastname = 'Montague',
                phone_mobile = '(650) 555-2000',
                phone_home = '(650) 555-2001',
                status = 'I dream\'d a dream to-night')
        contact2.put()

        contact3 = datastore.Contact(handle = 'tybalt',
                firstname = 'Tybalt',
                lastname = 'Capulet',
                phone_mobile = '(650) 555-3000',
                phone_home = '(650) 555-3001',
                status = 'Have at thee, coward')
        contact3.put()




def toJSON(object):
    """Dumps the data represented by the object to JSON for wire transfer."""
    return simplejson.dumps(object)

class UpdatedContactData(object):
    """Holds data for user's contacts.

    This class knows how to serialize itself to JSON.
    """
    __FIELD_MAP = {
        'handle': 'u',
        'firstname': 'f',
        'lastname': 'l',
        'status': 's',
        'phone_home': 'h',
        'phone_office': 'o',
        'phone_mobile': 'm',
        'email': 'e',
        'client_id': 'c'
    }

    def __init__(self, contact_list, username, client_id, host_url, high_water_mark):
        obj = datastore.Contact.get_contact_info(username)
        contact = {}
        for obj_name, json_name in self.__FIELD_MAP.items():
            if hasattr(obj, obj_name):
              v = getattr(obj, obj_name)
              if (v != None):
                  contact[json_name] = str(v)
              else:
                  contact[json_name] = None
        contact['i'] = str(obj.key().id())
        contact['a'] = host_url + "/avatar?id=" + str(obj.key().id())
        contact['x'] = high_water_mark
        if (client_id != None):
            contact['c'] = str(client_id)
        contact_list.append(contact)

class DeletedContactData(object):
    def __init__(self, contact_list, username, high_water_mark):
        obj = datastore.Contact.get_contact_info(username)
        contact = {}
        contact['d'] = 'true'
        contact['i'] = str(obj.key().id())
        contact['x'] = high_water_mark
        contact_list.append(contact)

def main():
    application = webapp.WSGIApplication(
            [('/auth', Authenticate),
             ('/sync', SyncContacts),
             ('/reset_database', ResetDatabase),
            ],
            debug=True)
    wsgiref.handlers.CGIHandler().run(application)

if __name__ == "__main__":
    main()