Child: [7af05e] (diff)

Download this file

user_main.py    165 lines (141 with data), 5.8 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
152
153
154
155
156
157
158
159
160
161
162
163
164
import os
import difflib
import logging
from pprint import pformat
from pylons import c, g
import pkg_resources
from pylons import c, request
from tg import expose, redirect, flash
from webob import exc
from pymongo.bson import ObjectId
from allura import version
from allura.app import Application, WidgetController, ConfigOption, SitemapEntry
from allura.lib import helpers as h
from allura.ext.project_home import model as M
from allura.lib.security import require, has_project_access, has_artifact_access
from allura.model import User, ArtifactLink
from allura.controllers import BaseController
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
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):
menu_id = 'User'
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:
for perm in self.permissions:
self.config.acl[perm] = [ pr._id ]
def uninstall(self, project): # pragma no cover
raise NotImplementedError, "uninstall"
class UserProfileController(BaseController):
def _check_security(self):
require(has_project_access('read'),
'Read access required')
@expose('allura.ext.user_profile.templates.user_index')
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('allura.ext.user_profile.templates.user_subscriptions')
# 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('allura.ext.user_profile.templates.user_dashboard_configuration')
def configuration(self):
username = c.project.shortname.split('/')[1]
user = User.by_username(username)
return dict(user=user)
@h.vardec
@expose()
def update_configuration(self, divs=None, layout_class=None, new_div=None, **kw):
require(has_project_access('update'), 'Update access required')
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')
@expose('json:')
def permissions(self, repo_path=None, **kw):
"""Expects repo_path to be a filesystem path like
<tool>/<project>.<neighborhood>/reponame[.git]
unless the <neighborhood> is 'p', in which case it is
<tool>/<project>/reponame[.git]
Returns JSON describing this user's permissions on that repo.
"""
if not repo_path:
return {"error":"no path specified"}
disallow = dict(allow_read=False, allow_write=False, allow_create=False)
# Find the user
username = c.project.shortname.split('/')[1]
user = User.by_username(username)
parts = [p for p in repo_path.split(os.path.sep) if p]
# strip the tool name
parts = parts[1:]
if '.' in parts[0]:
project, neighborhood = parts[0].split('.')
else:
project, neighborhood = parts[0], 'p'
parts = [ neighborhood, project ] + parts[1:]
project_path = '/' + '/'.join(parts)
project, rest = h.find_project(project_path)
if project is None:
log.info("Can't find project at %s from repo_path %s",
project_path, repo_path)
return disallow
mount_point = os.path.splitext(rest[0])[0]
c.project = project
c.app = project.app_instance(mount_point)
if c.app is None:
log.info("Can't find repo at %s on repo_path %s",
mount_point, repo_path)
return disallow
return dict(allow_read=has_artifact_access('read')(user=user),
allow_write=has_artifact_access('write')(user=user),
allow_create=has_artifact_access('create')(user=user))