4 from wtforms
import Form
, ValidationError
, fields
, validators
, widgets
6 from pylons
import config
, request
, response
, session
, tmpl_context
as c
, url
7 from pylons
.controllers
.util
import abort
, redirect_to
8 from routes
import request_config
9 from sqlalchemy
.orm
.exc
import NoResultFound
11 from spline
import model
12 from spline
.model
import meta
13 from spline
.lib
import helpers
as h
14 from spline
.lib
.base
import BaseController
, render
16 log
= logging
.getLogger(__name__
)
19 class ProfileEditForm(Form
):
20 name
= fields
.TextField(u
'Display name', [validators
.Required()])
22 def validate_name(form
, field
):
23 if not 1 < len(field
.data
) <= 20:
24 raise ValidationError("Name can't be longer than 20 characters")
26 any_real_characters
= False
27 for char
in field
.data
:
28 cat
= unicodedata
.category(char
)
30 # Non-spacing marks and spaces don't count as letters
31 if cat
not in ('Mn', 'Zs'):
32 any_real_characters
= True
34 # Disallow control characters, format characters, non-assigned,
35 # private use, surrogates, spacing-combining marks (for Arabic,
36 # etc), enclosing marks (millions sign), line-spacing,
38 # This also, thankfully, includes the RTL characters.
39 if cat
in ('Cc', 'Cf', 'Cn', 'Co', 'Cs', 'Mc', 'Me', 'Zl', 'Zp'):
40 raise ValidationError("Please don't play stupid Unicode tricks")
42 class UsersController(BaseController
):
45 c
.users
= meta
.Session
.query(model
.User
).order_by(model
.User
.id.asc())
46 return render('/users/list.mako')
48 def profile(self
, id, name
=None):
51 URL is /users/id:name, where 'name' only exists for readability and is
52 entirely optional and ignored.
55 c
.page_user
= meta
.Session
.query(model
.User
).get(id)
59 return render('/users/profile.mako')
61 def profile_edit(self
, id, name
=None):
62 """Main user profile editing."""
63 c
.page_user
= meta
.Session
.query(model
.User
).get(id)
67 # XXX could use some real permissions
68 if c
.page_user
!= c
.user
:
71 c
.form
= ProfileEditForm(request
.params
,
72 name
=c
.page_user
.name
,
75 if request
.method
!= 'POST' or not c
.form
.validate():
76 return render('/users/profile_edit.mako')
79 c
.page_user
.name
= c
.form
.name
.data
81 meta
.Session
.add(c
.page_user
)
84 h
.flash('Saved your profile.', icon
='tick')
86 redirect_to(controller
='users', action
='profile',
87 id=c
.page_user
.id, name
=c
.page_user
.name
,