-
Notifications
You must be signed in to change notification settings - Fork 0
/
Personas.py
406 lines (283 loc) · 13.7 KB
/
Personas.py
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
401
402
403
404
405
406
# -*- coding: utf-8 -*-
import logging
import webapp2
import pyqrcode
import StringIO
import os
import jinja2
from google.appengine.api import users, datastore_errors
from google.appengine.ext.db import Key
from django.utils import simplejson as json
from MasterHandler import MasterHandler, AjaxError
from DataModels import Persona, Contact
from DataModels import IndividualPermit, PermitEmail, PermitIM, PermitPhoneNumber, PermitWebpage, PermitAddress, UserPhoto, UserProfile, Psinque
from DataManipulation import generateVCard, reallyGenerateVCard, contactExists
jinja_environment = jinja2.Environment(
loader = jinja2.FileSystemLoader(os.path.dirname(__file__))
)
#-----------------------------------------------------------------------------
class PersonasHandler(MasterHandler):
#****************************
# Private methods
#
def _getPersonaByName(self, personaName):
return Persona.all(). \
ancestor(self.userProfile). \
filter("name =", personaName). \
get()
def _getPersonaUpdateVCard(self):
personaKey = self.getRequiredParameter('key')
persona = Persona.get(personaKey)
if persona.vcardNeedsUpdating:
reallyGenerateVCard(persona)
return persona
def _getNicknames(self):
nicknames = self.userProfile.nicknames.order('-creationTime').fetch(limit = 1000)
nicknames = { x.key(): x.itemValue for x in nicknames }
nicknames["None"] = "None"
return nicknames
def _getCompanies(self):
companies = self.userProfile.companies.order('-creationTime').fetch(limit = 1000)
companies = { x.key(): x.companyName for x in companies }
companies["None"] = "None"
return companies
def _getPhotos(self):
photos = self.userProfile.photos.order('-creationTime').fetch(limit = 1000)
return photos
#****************************
# Views
#
def view(self):
if self.getUserProfile():
self.sendContent('templates/Personas.html',
activeEntry = "Personas",
templateVariables = {
'userProfile': self.userProfile,
'companies': self._getCompanies(),
'nicknames': self._getNicknames(),
'photos': self._getPhotos(),
'personas': Persona.all(). \
ancestor(self.userProfile). \
order("name"),
})
#****************************
# AJAX methods
#
def removepersona(self):
try:
persona = Persona.get(self.getRequiredParameter('key'))
except datastore_errors.BadKeyError:
raise AjaxError("Persona not found")
# Check for errors
if persona.name == "Public": # cannot remove the public persona
raise AjaxError("Cannot remove the public persona")
if persona.name == "Default": # cannot remove the default persona
raise AjaxError("Cannot remove the default private persona")
# Get all contacts that use this persona and assign them the default persona
contacts = Contact.all(). \
ancestor(self.userProfile). \
filter("persona =", persona)
defaultPersona = self._getPersonaByName("Default")
for contact in contacts:
contact.persona = defaultPersona
contact.put()
# Remove all children individual permits
individualPermits = IndividualPermit.all().ancestor(persona)
for individualPermit in individualPermits:
individualPermit.delete()
persona.delete() # and the persona itself
self.sendJsonOK()
def addpersona(self):
personaName = self.getRequiredParameter('name')
personaIndex = self.getRequiredParameter('index')
# Error checking
if personaName == "Public":
raise AjaxError("Cannot create another public persona")
if personaName == "Default":
raise AjaxError("Cannot create another default private persona")
try:
# Check if the persona already exists
persona = self._getPersonaByName(personaName)
# Create a new Persona
newPersona = Persona(parent = self.userProfile,
name = personaName)
newPersona.put()
for email in self.userProfile.emails:
permitEmail = PermitEmail(parent = newPersona,
userEmail = email)
permitEmail.put()
for im in self.userProfile.ims:
permitIM = PermitIM(parent = newPersona,
userIM = im)
permitIM.put()
for www in self.userProfile.webpages:
permitWebpage = PermitWebpage(parent = newPersona,
userWebpage = www)
permitWebpage.put()
for phone in self.userProfile.phones:
permitPhoneNumber = PermitPhoneNumber(parent = newPersona,
userPhoneNumber = phone)
permitPhoneNumber.put()
for address in self.userProfile.addresses:
permitAddress = PermitAddress(parent = newPersona,
userAddress = address)
permitAddress.put()
# Generate the Persona's vCard and eTag:
generateVCard(newPersona)
self.sendContent('templates/Persona_Persona.html',
activeEntry = "Personas",
templateVariables = {
'persona': newPersona,
'companies': self._getCompanies(),
'nicknames': self._getNicknames(),
'photos': self._getPhotos(),
'userProfile': self.userProfile,
'personaIndex': personaIndex,
})
except datastore_errors.BadKeyError:
raise AjaxError("Persona with that name already exists")
def setgeneral(self):
try:
persona = Persona.get(self.getRequiredParameter('key'))
newName = self.request.get("name")
if newName != "":
persona.name = newName
persona.canViewPrefix = self.getRequiredBoolParameter('prefix')
persona.canViewGivenNames = self.getRequiredBoolParameter('givennames')
persona.canViewRomanGivenNames = self.getRequiredBoolParameter('givennamesroman')
persona.canViewFamilyNames = self.getRequiredBoolParameter('familynames')
persona.canViewRomanFamilyNames = self.getRequiredBoolParameter('familynamesroman')
persona.canViewSuffix = self.getRequiredBoolParameter('suffix')
persona.canViewBirthday = self.getRequiredBoolParameter('birthday')
persona.canViewGender = self.getRequiredBoolParameter('gender')
company = self.request.get("company")
if company != "None":
persona.company = Key(company)
else:
persona.company = None
nickname = self.request.get("nickname")
if nickname != "None":
persona.nickname = Key(nickname)
else:
persona.nickname = None
photoKey = self.request.get("photo")
if photoKey != "":
photo = UserPhoto.get(photoKey)
persona.picture = photo
persona.put()
generateVCard(persona)
self.sendJsonOK()
except datastore_errors.BadKeyError:
raise AjaxError("Persona not found.")
def setindividualpermit(self):
itemKey = self.getRequiredParameter('key')
canView = self.getRequiredBoolParameter('canview')
try:
individualPermit = IndividualPermit.get(itemKey)
individualPermit.canView = canView
individualPermit.put()
generateVCard(individualPermit.parent())
self.sendJsonOK()
except datastore_errors.BadKeyError:
raise AjaxError("Individual permit not found.")
def enablepublic(self):
publicEnabled = self.getRequiredBoolParameter("enable")
self.userProfile.publicEnabled = publicEnabled
self.userProfile.put()
self.sendJsonOK()
def getvcardastext(self):
persona = self._getPersonaUpdateVCard()
self.response.headers['Content-Type'] = "text/x-vcard; charset=utf-8"
self.response.headers['Content-Disposition'] = (u'inline; filename="' + persona.name + '.vcf"').encode("utf-8")
self.response.out.write(persona.vcard)
def getvcardasgif(self):
persona = self._getPersonaUpdateVCard()
qrcode = pyqrcode.MakeQRImage(persona.vcard.encode("utf-8"))
output = StringIO.StringIO()
qrcode.save(output, format="GIF")
self.response.headers['Content-Type'] = "application/octet-stream"
self.response.headers['Content-Disposition'] = (u'inline; filename="' + persona.name + '.gif"').encode("utf-8")
self.response.out.write(output.getvalue())
output.close()
def geturlasgif(self):
personaKey = self.getRequiredParameter('key')
personaKey = "http://www.psinque.com/p/" + personaKey
qrcode = pyqrcode.MakeQRImage(personaKey.encode("utf-8"))
output = StringIO.StringIO()
qrcode.save(output, format="GIF")
self.response.headers['Content-Type'] = "image/gif"
self.response.out.write(output.getvalue())
output.close()
#-----------------------------------------------------------------------------
class PersonaURLs(webapp2.RequestHandler):
def getUserProfile(self):
try:
getattr(self, 'userProfile')
return True
except AttributeError:
self.userProfile = UserProfile.all(keys_only = True).filter("user =", self.user).get()
if not self.userProfile:
self.redirect("/profile/view")
return False
self.userProfile = UserProfile.get(self.userProfile)
return True
def get(self, personaKey):
self.user = users.get_current_user()
if not self.getUserProfile():
self.sendJsonError("User profile not found")
try:
persona = Persona.get(personaKey)
friendsProfile = persona.parent()
if not contactExists(self.userProfile, friendsProfile) is None:
self.sendJsonError("Person already in contacts.")
return
existingPsinque = Psinque.all(keys_only = True).ancestor(self.userProfile).filter("fromUser =", friendsProfile).get()
if not existingPsinque is None:
self.sendJsonError("An incoming psinque from this person already exists")
return
newPsinque = Psinque(parent = self.userProfile,
fromUser = friendsProfile,
status = "established",
private = not persona.public,
persona = persona)
newPsinque.put()
# Contact on user's side
if persona.public:
status = "public"
else:
status = "private"
contact = Contact(parent = self.userProfile,
incoming = newPsinque,
friend = friendsProfile,
group = self.userProfile.defaultGroup,
status = status,
persona = self.userProfile.publicPersona)
contact.put()
# Contact on user's friend's side
friendsContact = Contact(parent = friendsProfile,
outgoing = newPsinque,
friend = self.userProfile,
friendsContact = contact,
group = friendsProfile.defaultGroup,
status = status,
persona = persona)
friendsContact.put()
contact.friendsContact = friendsContact
contact.put()
self.displayMessage("templates/Message_Success.html",
templateVariables = {
'message': 'You have successfully added a new contact to your contact list',
})
except datastore_errors.BadKeyError:
self.sendJsonError("Persona not found!")
def displayMessage(self, templateName, templateVariables = None):
template = jinja_environment.get_template(templateName)
self.response.out.write(template.render(templateVariables))
def sendJsonError(self, msg):
self.response.headers['Content-Type'] = 'application/json'
self.response.out.write(json.dumps({"status": 1, "message": msg}))
#-----------------------------------------------------------------------------
app = webapp2.WSGIApplication([
(r'/p/([a-zA-Z0-9\-]+)', PersonaURLs),
(r'/personas/(\w+)', PersonasHandler),
], debug=True)