f0c8a3309ab29065444f6aa102954646db7d505f
[zzz-spline-users.git] / spline / plugins / users / __init__.py
1 from pkg_resources import resource_filename
2
3 from pylons import c, session
4
5 from spline.lib.plugin import PluginBase
6 from spline.lib.plugin import PluginBase, PluginLink, Priority
7 import spline.model as model
8 import spline.model.meta as meta
9
10 import spline.plugins.users.controllers.accounts
11 import spline.plugins.users.controllers.users
12 import spline.plugins.users.model
13
14 def add_routes_hook(map, *args, **kwargs):
15 """Hook to inject some of our behavior into the routes configuration."""
16 # Login, logout
17 map.connect('/accounts/login', controller='accounts', action='login')
18 map.connect('/accounts/login_begin', controller='accounts', action='login_begin')
19 map.connect('/accounts/login_finish', controller='accounts', action='login_finish')
20 map.connect('/accounts/logout', controller='accounts', action='logout')
21
22 # Self-admin
23 map.connect('/users/{id};{name}/edit', controller='users', action='profile_edit')
24
25 # Public per-user pages
26 map.connect('/users/{id};{name}', controller='users', action='profile')
27 map.connect('/users/{id}', controller='users', action='profile')
28
29 def check_userid_hook(action, **params):
30 """Hook to see if a user is logged in and, if so, stick a user object in
31 c.
32 """
33
34 c.user = None
35
36 if not 'user_id' in session:
37 return
38
39 user = meta.Session.query(model.User).get(session['user_id'])
40 if not user:
41 # Bogus id in the session somehow. Clear it
42 del session['user_id']
43 session.save()
44 return
45
46 c.user = user
47
48
49 class UsersPlugin(PluginBase):
50 def controllers(self):
51 return dict(
52 accounts = spline.plugins.users.controllers.accounts.AccountsController,
53 users = spline.plugins.users.controllers.users.UsersController,
54 )
55
56 def model(self):
57 return [
58 spline.plugins.users.model.User,
59 spline.plugins.users.model.OpenID,
60 ]
61
62 def template_dirs(self):
63 return [
64 (resource_filename(__name__, 'templates'), Priority.NORMAL)
65 ]
66
67 def hooks(self):
68 return [
69 ('routes_mapping', Priority.NORMAL, add_routes_hook),
70 ('before_controller', Priority.VERY_FIRST, check_userid_hook),
71 ]
72
73 def widgets(self):
74 return [
75 ('page_header', Priority.NORMAL, 'widgets/user_state.mako'),
76 ]