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('jinja: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('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('jinja: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)
@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))