##// END OF EJS Templates
bugfix for empty groups
bugfix for empty groups

File last commit:

r1160:6e70fcca beta
r1160:6e70fcca beta
Show More
repos.py
422 lines | 15.4 KiB | text/x-python | PythonLexer
some extra fixes added docs string
r824 # -*- coding: utf-8 -*-
"""
rhodecode.controllers.admin.repos
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Admin controller for RhodeCode
:created_on: Apr 7, 2010
:author: marcink
fixed copyright year to 2011
r902 :copyright: (C) 2009-2011 Marcin Kuzminski <marcin@python-works.com>
some extra fixes added docs string
r824 :license: GPLv3, see COPYING for more details.
"""
renamed project to rhodecode
r547 # This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; version 2
# of the License or (at your opinion) any later version of the license.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
# MA 02110-1301, USA.
some extra fixes added docs string
r824
import logging
import traceback
import formencode
from operator import itemgetter
renamed project to rhodecode
r547 from formencode import htmlfill
some extra fixes added docs string
r824
renamed project to rhodecode
r547 from paste.httpexceptions import HTTPInternalServerError
from pylons import request, response, session, tmpl_context as c, url
from pylons.controllers.util import abort, redirect
from pylons.i18n.translation import _
some extra fixes added docs string
r824
renamed project to rhodecode
r547 from rhodecode.lib import helpers as h
from rhodecode.lib.auth import LoginRequired, HasPermissionAllDecorator, \
HasPermissionAnyDecorator
from rhodecode.lib.base import BaseController, render
Code refactor number 2
r1022 from rhodecode.lib.utils import invalidate_cache, action_logger, repo_name_slug
implemented public journal for anonymous users, admin can control which repositories...
r1085 from rhodecode.lib.helpers import get_token
#109, added optional clone uri when creating repo....
r1112 from rhodecode.model.db import User, Repository, UserFollowing, Group
renamed project to rhodecode
r547 from rhodecode.model.forms import RepoForm
Refactor codes for scm model...
r691 from rhodecode.model.scm import ScmModel
Code refactoring,models renames...
r629 from rhodecode.model.repo import RepoModel
some extra fixes added docs string
r824
renamed project to rhodecode
r547 log = logging.getLogger(__name__)
class ReposController(BaseController):
implemented public journal for anonymous users, admin can control which repositories...
r1085 """
REST Controller styled on the Atom Publishing Protocol"""
renamed project to rhodecode
r547 # To properly map this controller, ensure your config/routing.py
# file has a resource setup:
# map.resource('repo', 'repos')
Fixes for raw_id, needed for git...
r636
renamed project to rhodecode
r547 @LoginRequired()
@HasPermissionAnyDecorator('hg.admin', 'hg.create.repository')
def __before__(self):
c.admin_user = session.get('admin_user')
c.admin_username = session.get('admin_username')
super(ReposController, self).__before__()
Fixes for raw_id, needed for git...
r636
Changes for repo groups
r1159 def __load_defaults(self):
repo_model = RepoModel()
#109, added optional clone uri when creating repo....
r1112
Changes for repo groups
r1159 c.repo_groups = [('', '')]
parents_link = lambda k:h.literal('&raquo;'.join(
map(lambda k:k.group_name,
k.parents + [k])
)
)
c.repo_groups.extend([(x.group_id, parents_link(x)) for \
x in self.sa.query(Group).all()])
c.repo_groups_choices = map(lambda k: unicode(k[0]), c.repo_groups)
c.users_array = repo_model.get_users_js()
c.users_groups_array = repo_model.get_users_groups_js()
def __load_data(self, repo_name=None):
#109, added optional clone uri when creating repo....
r1112 """
Load defaults settings for edit, and update
:param repo_name:
"""
Changes for repo groups
r1159 self.__load_defaults()
#109, added optional clone uri when creating repo....
r1112 repo, dbrepo = ScmModel().get(repo_name, retval='repo')
repo_model = RepoModel()
c.repo_info = repo_model.get_by_repo_name(repo_name)
Changes for repo groups
r1159
#109, added optional clone uri when creating repo....
r1112 if c.repo_info is None:
h.flash(_('%s repository is not mapped to db perhaps'
' it was created or renamed from the filesystem'
' please run the application again'
' in order to rescan repositories') % repo_name,
category='error')
return redirect(url('repos'))
c.default_user_id = User.by_username('default').user_id
c.in_public_journal = self.sa.query(UserFollowing)\
.filter(UserFollowing.user_id == c.default_user_id)\
.filter(UserFollowing.follows_repository == c.repo_info).scalar()
if c.repo_info.stats:
last_rev = c.repo_info.stats.stat_on_revision
else:
last_rev = 0
c.stats_revision = last_rev
c.repo_last_rev = repo.count() - 1 if repo.revisions else 0
if last_rev == 0 or c.repo_last_rev == 0:
c.stats_percentage = 0
else:
c.stats_percentage = '%.2f' % ((float((last_rev)) /
c.repo_last_rev) * 100)
Changes for repo groups
r1159
#109, added optional clone uri when creating repo....
r1112
defaults = c.repo_info.get_dict()
group, repo_name = c.repo_info.groups_and_repo
defaults['repo_name'] = repo_name
bugfix for empty groups
r1160 defaults['repo_group'] = getattr(group[-1] if group else None, 'group_id', None)
Changes for repo groups
r1159
#109, added optional clone uri when creating repo....
r1112 #fill owner
if c.repo_info.user:
defaults.update({'user':c.repo_info.user.username})
else:
replacement_user = self.sa.query(User)\
.filter(User.admin == True).first().username
defaults.update({'user':replacement_user})
#fill repository users
for p in c.repo_info.repo_to_perm:
defaults.update({'u_perm_%s' % p.user.username:
p.permission.permission_name})
#fill repository groups
for p in c.repo_info.users_group_to_perm:
defaults.update({'g_perm_%s' % p.users_group.users_group_name:
p.permission.permission_name})
return defaults
Fixes for raw_id, needed for git...
r636 @HasPermissionAllDecorator('hg.admin')
renamed project to rhodecode
r547 def index(self, format='html'):
"""GET /repos: All items in the collection"""
# url('repos')
Refactor codes for scm model...
r691 cached_repo_list = ScmModel().get_repos()
renamed project to rhodecode
r547 c.repos_list = sorted(cached_repo_list, key=itemgetter('name_sort'))
return render('admin/repos/repos.html')
Fixes for raw_id, needed for git...
r636
renamed project to rhodecode
r547 @HasPermissionAnyDecorator('hg.admin', 'hg.create.repository')
def create(self):
implemented public journal for anonymous users, admin can control which repositories...
r1085 """
POST /repos: Create a new item"""
renamed project to rhodecode
r547 # url('repos')
repo_model = RepoModel()
Changes for repo groups
r1159 self.__load_defaults()
renamed project to rhodecode
r547 form_result = {}
try:
Changes for repo groups
r1159 form_result = RepoForm(repo_groups=c.repo_groups_choices)()\
.to_python(dict(request.POST))
replaced all global calls to template context (rhodecode_user), into instance attributes
r1121 repo_model.create(form_result, self.rhodecode_user)
#109, added optional clone uri when creating repo....
r1112 if form_result['clone_uri']:
h.flash(_('created repository %s from %s') \
% (form_result['repo_name'], form_result['clone_uri']),
category='success')
else:
h.flash(_('created repository %s') % form_result['repo_name'],
renamed project to rhodecode
r547 category='success')
if request.POST.get('user_created'):
refactor codes and setup for python 2.5...
r564 action_logger(self.rhodecode_user, 'user_created_repo',
renamed project to rhodecode
r547 form_result['repo_name'], '', self.sa)
else:
refactor codes and setup for python 2.5...
r564 action_logger(self.rhodecode_user, 'admin_created_repo',
Fixes for raw_id, needed for git...
r636 form_result['repo_name'], '', self.sa)
refactor codes and setup for python 2.5...
r564 except formencode.Invalid, errors:
#109, added optional clone uri when creating repo....
r1112
renamed project to rhodecode
r547 c.new_repo = errors.value['repo_name']
Fixes for raw_id, needed for git...
r636
renamed project to rhodecode
r547 if request.POST.get('user_created'):
r = render('admin/repos/repo_add_create_repository.html')
Fixes for raw_id, needed for git...
r636 else:
renamed project to rhodecode
r547 r = render('admin/repos/repo_add.html')
Fixes for raw_id, needed for git...
r636
renamed project to rhodecode
r547 return htmlfill.render(
r,
defaults=errors.value,
errors=errors.error_dict or {},
prefix_error=False,
Fixes for raw_id, needed for git...
r636 encoding="UTF-8")
renamed project to rhodecode
r547
except Exception:
log.error(traceback.format_exc())
fixed spelling mistakes, and some minor docs bugs
r860 msg = _('error occurred during creation of repository %s') \
renamed project to rhodecode
r547 % form_result.get('repo_name')
h.flash(msg, category='error')
if request.POST.get('user_created'):
Fixes for raw_id, needed for git...
r636 return redirect(url('home'))
renamed project to rhodecode
r547 return redirect(url('repos'))
Fixes for raw_id, needed for git...
r636
renamed project to rhodecode
r547 @HasPermissionAllDecorator('hg.admin')
def new(self, format='html'):
"""GET /repos/new: Form to create a new item"""
new_repo = request.GET.get('repo', '')
Code refactor number 2
r1022 c.new_repo = repo_name_slug(new_repo)
Changes for repo groups
r1159 self.__load_defaults()
renamed project to rhodecode
r547 return render('admin/repos/repo_add.html')
Fixes for raw_id, needed for git...
r636
renamed project to rhodecode
r547 @HasPermissionAllDecorator('hg.admin')
def update(self, repo_name):
implemented public journal for anonymous users, admin can control which repositories...
r1085 """
PUT /repos/repo_name: Update an existing item"""
renamed project to rhodecode
r547 # Forms posted to this method should contain a hidden field:
# <input type="hidden" name="_method" value="PUT" />
# Or using helpers:
# h.form(url('repo', repo_name=ID),
# method='put')
# url('repo', repo_name=ID)
Changes for repo groups
r1159 self.__load_defaults()
renamed project to rhodecode
r547 repo_model = RepoModel()
changed_name = repo_name
Changes for repo groups
r1159 _form = RepoForm(edit=True, old_data={'repo_name':repo_name},
repo_groups=c.repo_groups_choices)()
renamed project to rhodecode
r547 try:
form_result = _form.to_python(dict(request.POST))
repo_model.update(repo_name, form_result)
Moved out reposcan into hg Model....
r665 invalidate_cache('get_repo_cached_%s' % repo_name)
#50 on point cache invalidation changes....
r692 h.flash(_('Repository %s updated successfully' % repo_name),
renamed project to rhodecode
r547 category='success')
changed_name = form_result['repo_name']
#48 rewrote action logger, translated action logger messages, added some extra messages. Linked and showed pushed revisions in logs
r660 action_logger(self.rhodecode_user, 'admin_updated_repo',
changed_name, '', self.sa)
refactor codes and setup for python 2.5...
r564 except formencode.Invalid, errors:
#109, added optional clone uri when creating repo....
r1112 defaults = self.__load_data(repo_name)
defaults.update(errors.value)
renamed project to rhodecode
r547 return htmlfill.render(
render('admin/repos/repo_edit.html'),
#109, added optional clone uri when creating repo....
r1112 defaults=defaults,
renamed project to rhodecode
r547 errors=errors.error_dict or {},
prefix_error=False,
encoding="UTF-8")
Fixes for raw_id, needed for git...
r636
renamed project to rhodecode
r547 except Exception:
log.error(traceback.format_exc())
#50 on point cache invalidation changes....
r692 h.flash(_('error occurred during update of repository %s') \
renamed project to rhodecode
r547 % repo_name, category='error')
return redirect(url('edit_repo', repo_name=changed_name))
Fixes for raw_id, needed for git...
r636
renamed project to rhodecode
r547 @HasPermissionAllDecorator('hg.admin')
def delete(self, repo_name):
implemented public journal for anonymous users, admin can control which repositories...
r1085 """
DELETE /repos/repo_name: Delete an existing item"""
renamed project to rhodecode
r547 # Forms posted to this method should contain a hidden field:
# <input type="hidden" name="_method" value="DELETE" />
# Or using helpers:
# h.form(url('repo', repo_name=ID),
# method='delete')
# url('repo', repo_name=ID)
Fixes for raw_id, needed for git...
r636
renamed project to rhodecode
r547 repo_model = RepoModel()
added action loggers to following repositories,...
r735 repo = repo_model.get_by_repo_name(repo_name)
renamed project to rhodecode
r547 if not repo:
Fixes for raw_id, needed for git...
r636 h.flash(_('%s repository is not mapped to db perhaps'
renamed project to rhodecode
r547 ' it was moved or renamed from the filesystem'
' please run the application again'
' in order to rescan repositories') % repo_name,
category='error')
Fixes for raw_id, needed for git...
r636
renamed project to rhodecode
r547 return redirect(url('repos'))
try:
refactor codes and setup for python 2.5...
r564 action_logger(self.rhodecode_user, 'admin_deleted_repo',
renamed project to rhodecode
r547 repo_name, '', self.sa)
Fixes for raw_id, needed for git...
r636 repo_model.delete(repo)
Moved out reposcan into hg Model....
r665 invalidate_cache('get_repo_cached_%s' % repo_name)
renamed project to rhodecode
r547 h.flash(_('deleted repository %s') % repo_name, category='success')
Fixes for raw_id, needed for git...
r636
renamed project to rhodecode
r547 except Exception, e:
log.error(traceback.format_exc())
fixed spelling mistakes, and some minor docs bugs
r860 h.flash(_('An error occurred during deletion of %s') % repo_name,
renamed project to rhodecode
r547 category='error')
Fixes for raw_id, needed for git...
r636
renamed project to rhodecode
r547 return redirect(url('repos'))
Fixes for raw_id, needed for git...
r636
@HasPermissionAllDecorator('hg.admin')
renamed project to rhodecode
r547 def delete_perm_user(self, repo_name):
implemented public journal for anonymous users, admin can control which repositories...
r1085 """
DELETE an existing repository permission user
#56 added ajax removal of users groups,...
r1015
fixed @repo into :repo for docs...
r604 :param repo_name:
renamed project to rhodecode
r547 """
Fixes for raw_id, needed for git...
r636
renamed project to rhodecode
r547 try:
repo_model = RepoModel()
Fixes for raw_id, needed for git...
r636 repo_model.delete_perm_user(request.POST, repo_name)
refactor codes and setup for python 2.5...
r564 except Exception, e:
fixed spelling mistakes, and some minor docs bugs
r860 h.flash(_('An error occurred during deletion of repository user'),
renamed project to rhodecode
r547 category='error')
raise HTTPInternalServerError()
Fixes for raw_id, needed for git...
r636
@HasPermissionAllDecorator('hg.admin')
#56 added ajax removal of users groups,...
r1015 def delete_perm_users_group(self, repo_name):
implemented public journal for anonymous users, admin can control which repositories...
r1085 """
DELETE an existing repository permission users group
#56 added ajax removal of users groups,...
r1015
:param repo_name:
added cache reset, stats reset, and delete into repository settings in admin....
r708 """
#56 added ajax removal of users groups,...
r1015 try:
repo_model = RepoModel()
repo_model.delete_perm_users_group(request.POST, repo_name)
except Exception, e:
h.flash(_('An error occurred during deletion of repository'
' users groups'),
category='error')
raise HTTPInternalServerError()
@HasPermissionAllDecorator('hg.admin')
def repo_stats(self, repo_name):
implemented public journal for anonymous users, admin can control which repositories...
r1085 """
DELETE an existing repository statistics
#56 added ajax removal of users groups,...
r1015
added cache reset, stats reset, and delete into repository settings in admin....
r708 :param repo_name:
"""
try:
repo_model = RepoModel()
repo_model.delete_stats(repo_name)
except Exception, e:
fixed spelling mistakes, and some minor docs bugs
r860 h.flash(_('An error occurred during deletion of repository stats'),
added cache reset, stats reset, and delete into repository settings in admin....
r708 category='error')
return redirect(url('edit_repo', repo_name=repo_name))
@HasPermissionAllDecorator('hg.admin')
def repo_cache(self, repo_name):
implemented public journal for anonymous users, admin can control which repositories...
r1085 """
INVALIDATE existing repository cache
#56 added ajax removal of users groups,...
r1015
added cache reset, stats reset, and delete into repository settings in admin....
r708 :param repo_name:
"""
try:
ScmModel().mark_for_invalidation(repo_name)
except Exception, e:
fixed error for empty revisions on admin repo edit
r711 h.flash(_('An error occurred during cache invalidation'),
added cache reset, stats reset, and delete into repository settings in admin....
r708 category='error')
return redirect(url('edit_repo', repo_name=repo_name))
@HasPermissionAllDecorator('hg.admin')
implemented public journal for anonymous users, admin can control which repositories...
r1085 def repo_public_journal(self, repo_name):
"""
Set's this repository to be visible in public journal,
in other words assing default user to follow this repo
:param repo_name:
"""
cur_token = request.POST.get('auth_token')
token = get_token()
if cur_token == token:
try:
repo_id = Repository.by_repo_name(repo_name).repo_id
user_id = User.by_username('default').user_id
self.scm_model.toggle_following_repo(repo_id, user_id)
h.flash(_('Updated repository visibility in public journal'),
category='success')
except:
h.flash(_('An error occurred during setting this'
' repository in public journal'),
category='error')
else:
h.flash(_('Token mismatch'), category='error')
return redirect(url('edit_repo', repo_name=repo_name))
#109, added manual pull of changes for repositories that have remote location filled in....
r1114 @HasPermissionAllDecorator('hg.admin')
def repo_pull(self, repo_name):
"""
Runs task to update given repository with remote changes,
ie. make pull on remote location
:param repo_name:
"""
try:
replaced all global calls to template context (rhodecode_user), into instance attributes
r1121 ScmModel().pull_changes(repo_name, self.rhodecode_user.username)
#109, added manual pull of changes for repositories that have remote location filled in....
r1114 h.flash(_('Pulled from remote location'), category='success')
except Exception, e:
h.flash(_('An error occurred during pull from remote location'),
category='error')
implemented public journal for anonymous users, admin can control which repositories...
r1085
#109, added manual pull of changes for repositories that have remote location filled in....
r1114 return redirect(url('edit_repo', repo_name=repo_name))
implemented public journal for anonymous users, admin can control which repositories...
r1085
@HasPermissionAllDecorator('hg.admin')
renamed project to rhodecode
r547 def show(self, repo_name, format='html'):
"""GET /repos/repo_name: Show a specific item"""
# url('repo', repo_name=ID)
Fixes for raw_id, needed for git...
r636
@HasPermissionAllDecorator('hg.admin')
renamed project to rhodecode
r547 def edit(self, repo_name, format='html'):
"""GET /repos/repo_name/edit: Form to edit an existing item"""
# url('edit_repo', repo_name=ID)
#109, added optional clone uri when creating repo....
r1112 defaults = self.__load_data(repo_name)
Fixes for raw_id, needed for git...
r636
renamed project to rhodecode
r547 return htmlfill.render(
render('admin/repos/repo_edit.html'),
defaults=defaults,
encoding="UTF-8",
force_defaults=False
Fixes for raw_id, needed for git...
r636 )