Parent: [8ba72f] (diff)

Child: [5d8bfc] (diff)

Download this file

user_main.py    152 lines (131 with data), 5.1 kB

  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
import os
import logging
from pprint import pformat
import pkg_resources
from pylons import c, request
from formencode import validators
from tg import expose, redirect, validate, response
from allura import version
from allura.app import Application, WidgetController, SitemapEntry
from allura.lib import helpers as h
from allura.lib.helpers import DateTimeConverter
from allura.ext.project_home import model as M
from allura.lib.security import require, has_access, require_access
from allura.model import User, Notification, ACE
from allura.controllers import BaseController
from allura.lib.decorators import require_post
log = logging.getLogger(__name__)
class UserWidgets(WidgetController):
widgets=['welcome']
def __init__(self, app): pass
def welcome(self):
return self.portlet('<p><!-- Please configure your widgets --></p>')
class UserProfileApp(Application):
__version__ = version.__version__
widget = UserWidgets
installable = False
icons={
24:'images/sftheme/24x24/home_24.png',
32:'images/sftheme/32x32/home_32.png',
48:'images/sftheme/48x48/home_48.png'
}
def __init__(self, user, config):
Application.__init__(self, user, config)
self.root = UserProfileController()
self.templates = pkg_resources.resource_filename(
'allura.ext.user_profile', 'templates')
@property
@h.exceptionless([], log)
def sitemap(self):
return []
@h.exceptionless([], log)
def sidebar_menu(self):
return [ SitemapEntry('Preferences', '/auth/prefs/')]
def admin_menu(self):
return []
def install(self, project):
pr = c.user.project_role()
if pr:
self.config.acl = [
ACE.allow(pr._id, perm)
for perm in self.permissions ]
def uninstall(self, project): # pragma no cover
pass
class UserProfileController(BaseController):
def _check_security(self):
require_access(c.project, 'read')
@expose('jinja:allura.ext.user_profile:templates/user_index.html')
def index(self, **kw):
username = c.project.shortname.split('/')[1]
user = User.by_username(username)
return dict(user=user)
# This will be fully implemented in a future iteration
# @expose('jinja:allura.ext.user_profile:templates/user_subscriptions.html')
# def subscriptions(self):
# username = c.project.shortname.split('/')[1]
# user = User.by_username(username)
# subs = Subscriptions.query.find({'user_id':user._id}).all()
# for sub in subs:
# for s in sub.subscriptions:
# r = g.solr.search(s.artifact_index_id)
# print r.docs
# return dict(user=user)
@expose('jinja:allura.ext.user_profile:templates/user_dashboard_configuration.html')
def configuration(self):
username = c.project.shortname.split('/')[1]
user = User.by_username(username)
return dict(user=user)
@expose()
@validate(dict(
since=DateTimeConverter(if_empty=None),
until=DateTimeConverter(if_empty=None),
page=validators.Int(if_empty=None),
limit=validators.Int(if_empty=None)))
def feed(self, since=None, until=None, page=None, limit=None):
username = c.project.shortname.split('/')[1]
user = User.by_username(username)
if request.environ['PATH_INFO'].endswith('.atom'):
feed_type = 'atom'
else:
feed_type = 'rss'
title = 'Recent posts by %s' % user.display_name
feed = Notification.feed(
{'author_id':user._id},
feed_type,
title,
c.project.url(),
title,
since, until, page, limit)
response.headers['Content-Type'] = ''
response.content_type = 'application/xml'
return feed.writeString('utf-8')
@h.vardec
@expose()
@require_post()
def update_configuration(self, divs=None, layout_class=None, new_div=None, **kw):
require_access(c.project, 'update')
config = M.PortalConfig.current()
config.layout_class = layout_class
# Handle updated and deleted divs
if divs is None: divs = []
new_divs = []
for div in divs:
log.info('Got div update:%s', pformat(div))
if div.get('del'): continue
new_divs.append(div)
# Handle new divs
if new_div:
new_divs.append(dict(name=h.nonce(), content=[]))
config.layout = []
for div in new_divs:
content = []
for w in div.get('content', []):
if w.get('del'): continue
mp,wn = w['widget'].split('/')
content.append(dict(mount_point=mp, widget_name=wn))
if div.get('new_widget'):
content.append(dict(mount_point='profile', widget_name='welcome'))
config.layout.append(dict(
name=div['name'],
content=content))
redirect('configuration')