##// END OF EJS Templates
Update LICENSE.md to include license information about Mousetrap.
Update LICENSE.md to include license information about Mousetrap.

File last commit:

r4116:ffd45b18 rhodecode-2.2.5-gpl
r4127:f8bb2cf6 rhodecode-2.2.5-gpl
Show More
repos.py
675 lines | 27.1 KiB | text/x-python | PythonLexer
some extra fixes added docs string
r824 # -*- coding: utf-8 -*-
fixed license issue #149
r1206 # 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, either version 3 of the License, or
# (at your option) any later version.
source code cleanup: remove trailing white space, normalize file endings
r1203 #
renamed project to rhodecode
r547 # 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.
source code cleanup: remove trailing white space, normalize file endings
r1203 #
renamed project to rhodecode
r547 # You should have received a copy of the GNU General Public License
fixed license issue #149
r1206 # along with this program. If not, see <http://www.gnu.org/licenses/>.
Bradley M. Kuhn
Imported some of the GPLv3'd changes from RhodeCode v2.2.5....
r4116 """
rhodecode.controllers.admin.repos
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Repositories controller for RhodeCode
:created_on: Apr 7, 2010
:author: marcink
:copyright: (c) 2013 RhodeCode GmbH.
:license: GPLv3, see LICENSE for more details.
"""
some extra fixes added docs string
r824
import logging
import traceback
import formencode
renamed project to rhodecode
r547 from formencode import htmlfill
Bradley M. Kuhn
Imported some of the GPLv3'd changes from RhodeCode v2.2.5....
r4116 from webob.exc import HTTPInternalServerError, HTTPForbidden, HTTPNotFound
from pylons import request, tmpl_context as c, url
#235 forking page repo group selection...
r1722 from pylons.controllers.util import redirect
renamed project to rhodecode
r547 from pylons.i18n.translation import _
Bradley M. Kuhn
Imported some of the GPLv3'd changes from RhodeCode v2.2.5....
r4116 from sqlalchemy.sql.expression import func
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, \
Bradley M. Kuhn
Imported some of the GPLv3'd changes from RhodeCode v2.2.5....
r4116 HasRepoPermissionAllDecorator, NotAnonymous,HasPermissionAny, \
HasRepoGroupPermissionAny, HasRepoPermissionAnyDecorator
Mads Kiilerich
repo edit: it is a repo thing more than an admin thing - show it that way in ui and url
r3288 from rhodecode.lib.base import BaseRepoController, render
Bradley M. Kuhn
Imported some of the GPLv3'd changes from RhodeCode v2.2.5....
r4116 from rhodecode.lib.utils import action_logger, repo_name_slug, jsonify
implemented public journal for anonymous users, admin can control which repositories...
r1085 from rhodecode.lib.helpers import get_token
Bradley M. Kuhn
Imported some of the GPLv3'd changes from RhodeCode v2.2.5....
r4116 from rhodecode.lib.vcs import RepositoryError
#235 forking page repo group selection...
r1722 from rhodecode.model.meta import Session
Implemented #379 defaults settings page for creation of repositories...
r3056 from rhodecode.model.db import User, Repository, UserFollowing, RepoGroup,\
repository extra fields implementation...
r3308 RhodeCodeSetting, RepositoryField
moved permission management into separate entity....
r3628 from rhodecode.model.forms import RepoForm, RepoFieldForm, RepoPermsForm
Do read only checks on attach as fork of repo list....
r3864 from rhodecode.model.scm import ScmModel, RepoGroupList, RepoList
Code refactoring,models renames...
r629 from rhodecode.model.repo import RepoModel
rewrote admin repos page....
r2664 from rhodecode.lib.compat import json
recursive forks detach...
r3641 from rhodecode.lib.exceptions import AttachedForksError
consistent handling of grant/revoke of permissions widgets...
r3715 from rhodecode.lib.utils2 import safe_int
some extra fixes added docs string
r824
renamed project to rhodecode
r547 log = logging.getLogger(__name__)
PEP8ify - controllers
r1245
Mads Kiilerich
repo edit: it is a repo thing more than an admin thing - show it that way in ui and url
r3288 class ReposController(BaseRepoController):
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()
def __before__(self):
super(ReposController, self).__before__()
Fixes for raw_id, needed for git...
r636
Bradley M. Kuhn
Imported some of the GPLv3'd changes from RhodeCode v2.2.5....
r4116 def _load_repo(self, repo_name):
repo_obj = Repository.get_by_repo_name(repo_name)
if repo_obj is None:
h.not_mapped_error(repo_name)
return redirect(url('repos'))
return repo_obj
def __load_defaults(self, repo=None):
- Manage User’s Groups: create, delete, rename, add/remove users inside....
r3714 acl_groups = RepoGroupList(RepoGroup.query().all(),
filter out repo groups choices to only ones that you have write+ access to. Before it was read+ access and you got proper...
r3239 perm_set=['group.write', 'group.admin'])
c.repo_groups = RepoGroup.groups_choices(groups=acl_groups)
unified generation of repo groups choices...
r1547 c.repo_groups_choices = map(lambda k: unicode(k[0]), c.repo_groups)
#235 forking page repo group selection...
r1722
Bradley M. Kuhn
Imported some of the GPLv3'd changes from RhodeCode v2.2.5....
r4116 # in case someone no longer have a group.write access to a repository
# pre fill the list with this entry, we don't care if this is the same
# but it will allow saving repo data properly.
repo_group = None
if repo:
repo_group = repo.group
if repo_group and unicode(repo_group.group_id) not in c.repo_groups_choices:
c.repo_groups_choices.append(unicode(repo_group.group_id))
c.repo_groups.append(RepoGroup._generate_choice(repo_group))
validating choices for landing_rev
r2460 choices, c.landing_revs = ScmModel().get_repo_landing_revs()
c.landing_revs_choices = choices
Changes for repo groups
r1159
def __load_data(self, repo_name=None):
#109, added optional clone uri when creating repo....
r1112 """
Load defaults settings for edit, and update
source code cleanup: remove trailing white space, normalize file endings
r1203
#109, added optional clone uri when creating repo....
r1112 :param repo_name:
"""
Bradley M. Kuhn
Imported some of the GPLv3'd changes from RhodeCode v2.2.5....
r4116 c.repo_info = self._load_repo(repo_name)
self.__load_defaults(c.repo_info)
#109, added optional clone uri when creating repo....
r1112
Fixed some issues with edit form...
r3089 ##override defaults for exact repo info here git/hg etc
validating choices for landing_rev
r2460 choices, c.landing_revs = ScmModel().get_repo_landing_revs(c.repo_info)
c.landing_revs_choices = choices
fixes #288...
r1594 defaults = RepoModel()._get_defaults(repo_name)
auto white-space removal
r1818
#109, added optional clone uri when creating repo....
r1112 return defaults
renamed project to rhodecode
r547 def index(self, format='html'):
"""GET /repos: All items in the collection"""
# url('repos')
Bradley M. Kuhn
Imported some of the GPLv3'd changes from RhodeCode v2.2.5....
r4116 _list = Repository.query()\
.order_by(func.lower(Repository.repo_name))\
.all()
Admin view will see repos_groups in main list
r1344
Bradley M. Kuhn
Imported some of the GPLv3'd changes from RhodeCode v2.2.5....
r4116 c.repos_list = RepoList(_list, perm_set=['repository.admin'])
Use common function for generation of grid data...
r3154 repos_data = RepoModel().get_repos_as_dict(repos_list=c.repos_list,
fixes issue #739 Delete/Edit repositories should only point to admin links if the user is an super admin.
r3245 admin=True,
super_user_actions=True)
Use common function for generation of grid data...
r3154 #json used to render the grid
c.data = json.dumps(repos_data)
rewrote admin repos page....
r2664
renamed project to rhodecode
r547 return render('admin/repos/repos.html')
Fixes for raw_id, needed for git...
r636
Implemented #738 Giving a user WRITE+ permissions on folder should not allow repo creation in root folder....
r3333 @NotAnonymous()
renamed project to rhodecode
r547 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')
#235 forking page repo group selection...
r1722
Changes for repo groups
r1159 self.__load_defaults()
renamed project to rhodecode
r547 form_result = {}
Bradley M. Kuhn
Imported some of the GPLv3'd changes from RhodeCode v2.2.5....
r4116 task_id = None
renamed project to rhodecode
r547 try:
Bradley M. Kuhn
Imported some of the GPLv3'd changes from RhodeCode v2.2.5....
r4116 # CanWriteToGroup validators checks permissions of this POST
validating choices for landing_rev
r2460 form_result = RepoForm(repo_groups=c.repo_groups_choices,
landing_revs=c.landing_revs_choices)()\
Changes for repo groups
r1159 .to_python(dict(request.POST))
Implemented #738 Giving a user WRITE+ permissions on folder should not allow repo creation in root folder....
r3333
Bradley M. Kuhn
Imported some of the GPLv3'd changes from RhodeCode v2.2.5....
r4116 # create is done sometimes async on celery, db transaction
# management is handled there.
task = RepoModel().create(form_result, self.rhodecode_user.user_id)
from celery.result import BaseAsyncResult
if isinstance(task, BaseAsyncResult):
task_id = task.task_id
refactor codes and setup for python 2.5...
r564 except formencode.Invalid, errors:
renamed project to rhodecode
r547 return htmlfill.render(
Implemented #738 Giving a user WRITE+ permissions on folder should not allow repo creation in root folder....
r3333 render('admin/repos/repo_add.html'),
renamed project to rhodecode
r547 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())
Bradley M. Kuhn
Imported some of the GPLv3'd changes from RhodeCode v2.2.5....
r4116 msg = (_('Error creating repository %s')
% form_result.get('repo_name'))
renamed project to rhodecode
r547 h.flash(msg, category='error')
Implemented #738 Giving a user WRITE+ permissions on folder should not allow repo creation in root folder....
r3333 return redirect(url('home'))
Bradley M. Kuhn
Imported some of the GPLv3'd changes from RhodeCode v2.2.5....
r4116
return redirect(h.url('repo_creating_home',
repo_name=form_result['repo_name_full'],
task_id=task_id))
Fixes for raw_id, needed for git...
r636
#749 and #516 Removed dupliciting of repo settings for rhodecode admins and repo admins...
r3629 @NotAnonymous()
def create_repository(self):
"""GET /_admin/create_repository: Form to create a new item"""
new_repo = request.GET.get('repo', '')
parent_group = request.GET.get('parent_group')
if not HasPermissionAny('hg.admin', 'hg.create.repository')():
#you're not super admin nor have global create permissions,
#but maybe you have at least write permission to a parent group ?
_gr = RepoGroup.get(parent_group)
gr_name = _gr.group_name if _gr else None
Bradley M. Kuhn
Imported some of the GPLv3'd changes from RhodeCode v2.2.5....
r4116 # create repositories with write permission on group is set to true
create_on_write = HasPermissionAny('hg.create.write_on_repogroup.true')()
group_admin = HasRepoGroupPermissionAny('group.admin')(group_name=gr_name)
group_write = HasRepoGroupPermissionAny('group.write')(group_name=gr_name)
if not (group_admin or (group_write and create_on_write)):
#749 and #516 Removed dupliciting of repo settings for rhodecode admins and repo admins...
r3629 raise HTTPForbidden
use the GET parent_group param to pre-fill the group choice
r3233
- Manage User’s Groups: create, delete, rename, add/remove users inside....
r3714 acl_groups = RepoGroupList(RepoGroup.query().all(),
#749 and #516 Removed dupliciting of repo settings for rhodecode admins and repo admins...
r3629 perm_set=['group.write', 'group.admin'])
c.repo_groups = RepoGroup.groups_choices(groups=acl_groups)
c.repo_groups_choices = map(lambda k: unicode(k[0]), c.repo_groups)
choices, c.landing_revs = ScmModel().get_repo_landing_revs()
use the GET parent_group param to pre-fill the group choice
r3233
#749 and #516 Removed dupliciting of repo settings for rhodecode admins and repo admins...
r3629 c.new_repo = repo_name_slug(new_repo)
Fixed some issues with edit form...
r3089 ## apply the defaults from defaults page
defaults = RhodeCodeSetting.get_default_repo_settings(strip_prefix=True)
use the GET parent_group param to pre-fill the group choice
r3233 if parent_group:
defaults.update({'repo_group': parent_group})
Fixed some issues with edit form...
r3089 return htmlfill.render(
render('admin/repos/repo_add.html'),
defaults=defaults,
errors={},
prefix_error=False,
encoding="UTF-8"
)
Fixes for raw_id, needed for git...
r636
Bradley M. Kuhn
Imported some of the GPLv3'd changes from RhodeCode v2.2.5....
r4116 @LoginRequired()
@NotAnonymous()
def repo_creating(self, repo_name):
c.repo = repo_name
c.task_id = request.GET.get('task_id')
if not c.repo:
raise HTTPNotFound()
return render('admin/repos/repo_creating.html')
@LoginRequired()
@NotAnonymous()
@jsonify
def repo_check(self, repo_name):
c.repo = repo_name
task_id = request.GET.get('task_id')
if task_id and task_id not in ['None']:
from rhodecode import CELERY_ON
from celery.result import AsyncResult
if CELERY_ON:
task = AsyncResult(task_id)
if task.failed():
raise HTTPInternalServerError(task.traceback)
repo = Repository.get_by_repo_name(repo_name)
if repo and repo.repo_state == Repository.STATE_CREATED:
if repo.clone_uri:
clone_uri = repo.clone_uri_hidden
h.flash(_('Created repository %s from %s')
% (repo.repo_name, clone_uri), category='success')
else:
repo_url = h.link_to(repo.repo_name,
h.url('summary_home',
repo_name=repo.repo_name))
fork = repo.fork
if fork:
fork_name = fork.repo_name
h.flash(h.literal(_('Forked repository %s as %s')
% (fork_name, repo_url)), category='success')
else:
h.flash(h.literal(_('Created repository %s') % repo_url),
category='success')
return {'result': True}
return {'result': False}
#749 and #516 Removed dupliciting of repo settings for rhodecode admins and repo admins...
r3629 @HasRepoPermissionAllDecorator('repository.admin')
renamed project to rhodecode
r547 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)
Bradley M. Kuhn
Imported some of the GPLv3'd changes from RhodeCode v2.2.5....
r4116 c.repo_info = self._load_repo(repo_name)
c.active = 'settings'
c.repo_fields = RepositoryField.query()\
.filter(RepositoryField.repository == c.repo_info).all()
self.__load_defaults(c.repo_info)
renamed project to rhodecode
r547 repo_model = RepoModel()
changed_name = repo_name
Readme renderer now uses landing_rev parameter to render the readme based on...
r2603 #override the choices with extracted revisions !
choices, c.landing_revs = ScmModel().get_repo_landing_revs(repo_name)
c.landing_revs_choices = choices
Pass in old groups data to CanWriteToGroup validator for later skipping group checks....
r3524 repo = Repository.get_by_repo_name(repo_name)
fix required repo_type param on repo edit form
r3863 old_data = {
'repo_name': repo_name,
'repo_group': repo.group.get_dict() if repo.group else {},
'repo_type': repo.repo_type,
}
_form = RepoForm(edit=True, old_data=old_data,
validating choices for landing_rev
r2460 repo_groups=c.repo_groups_choices,
landing_revs=c.landing_revs_choices)()
fix required repo_type param on repo edit form
r3863
renamed project to rhodecode
r547 try:
form_result = _form.to_python(dict(request.POST))
Fixed some issues with edit form...
r3089 repo = repo_model.update(repo_name, **form_result)
removed duplicated logic of how we invalidate caches for repos
r3693 ScmModel().mark_for_invalidation(repo_name)
Takumi IINO
i18n improve
r2570 h.flash(_('Repository %s updated successfully') % repo_name,
renamed project to rhodecode
r547 category='success')
fixes #260 Put repo in group, then move group to another group -> repo becomes unavailable
r1539 changed_name = repo.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',
Implemented #467 Journal logs comments on changesets...
r2375 changed_name, self.ip_addr, self.sa)
sqlalchemy sessions cleanup in admin...
r2662 Session().commit()
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())
Mads Kiilerich
consistently capitalize initial letter in flash messages
r3565 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
#749 and #516 Removed dupliciting of repo settings for rhodecode admins and repo admins...
r3629 @HasRepoPermissionAllDecorator('repository.admin')
renamed project to rhodecode
r547 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:
- #683 fixed difference between messages about not mapped repositories
r3110 h.not_mapped_error(repo_name)
renamed project to rhodecode
r547 return redirect(url('repos'))
try:
implemented #689 Deleting Repositories with Forks Should Be Easier...
r3391 _forks = repo.forks.count()
recursive forks detach...
r3641 handle_forks = None
implemented #689 Deleting Repositories with Forks Should Be Easier...
r3391 if _forks and request.POST.get('forks'):
do = request.POST['forks']
if do == 'detach_forks':
recursive forks detach...
r3641 handle_forks = 'detach'
Mads Kiilerich
consistently capitalize initial letter in flash messages
r3565 h.flash(_('Detached %s forks') % _forks, category='success')
implemented #689 Deleting Repositories with Forks Should Be Easier...
r3391 elif do == 'delete_forks':
recursive forks detach...
r3641 handle_forks = 'delete'
Mads Kiilerich
consistently capitalize initial letter in flash messages
r3565 h.flash(_('Deleted %s forks') % _forks, category='success')
recursive forks detach...
r3641 repo_model.delete(repo, forks=handle_forks)
refactor codes and setup for python 2.5...
r564 action_logger(self.rhodecode_user, 'admin_deleted_repo',
recursive forks detach...
r3641 repo_name, self.ip_addr, self.sa)
removed duplicated logic of how we invalidate caches for repos
r3693 ScmModel().mark_for_invalidation(repo_name)
Mads Kiilerich
consistently capitalize initial letter in flash messages
r3565 h.flash(_('Deleted repository %s') % repo_name, category='success')
sqlalchemy sessions cleanup in admin...
r2662 Session().commit()
recursive forks detach...
r3641 except AttachedForksError:
h.flash(_('Cannot delete %s it still contains attached forks')
% repo_name, category='warning')
fixed #47 adding a new repo that have a group chosen had wrong paths.
r1361
recursive forks detach...
r3641 except Exception:
renamed project to rhodecode
r547 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
Bradley M. Kuhn
Imported some of the GPLv3'd changes from RhodeCode v2.2.5....
r4116 @HasPermissionAllDecorator('hg.admin')
def show(self, repo_name, format='html'):
"""GET /repos/repo_name: Show a specific item"""
# url('repo', repo_name=ID)
white space cleanup
r1869 @HasRepoPermissionAllDecorator('repository.admin')
Bradley M. Kuhn
Imported some of the GPLv3'd changes from RhodeCode v2.2.5....
r4116 def edit(self, repo_name):
"""GET /repo_name/settings: Form to edit an existing item"""
# url('edit_repo', repo_name=ID)
defaults = self.__load_data(repo_name)
if 'clone_uri' in defaults:
del defaults['clone_uri']
c.repo_fields = RepositoryField.query()\
.filter(RepositoryField.repository == c.repo_info).all()
c.active = 'settings'
return htmlfill.render(
render('admin/repos/repo_edit.html'),
defaults=defaults,
encoding="UTF-8",
force_defaults=False)
@HasRepoPermissionAllDecorator('repository.admin')
def edit_permissions(self, repo_name):
"""GET /repo_name/settings: Form to edit an existing item"""
# url('edit_repo', repo_name=ID)
c.repo_info = self._load_repo(repo_name)
repo_model = RepoModel()
c.users_array = repo_model.get_users_js()
c.user_groups_array = repo_model.get_user_groups_js()
c.active = 'permissions'
defaults = RepoModel()._get_defaults(repo_name)
return htmlfill.render(
render('admin/repos/repo_edit.html'),
defaults=defaults,
encoding="UTF-8",
force_defaults=False)
def edit_permissions_update(self, repo_name):
moved permission management into separate entity....
r3628 form = RepoPermsForm()().to_python(request.POST)
- Manage User’s Groups: create, delete, rename, add/remove users inside....
r3714 RepoModel()._update_permissions(repo_name, form['perms_new'],
form['perms_updates'])
moved permission management into separate entity....
r3628 #TODO: implement this
#action_logger(self.rhodecode_user, 'admin_changed_repo_permissions',
# repo_name, self.ip_addr, self.sa)
Session().commit()
Mads Kiilerich
Fix a lot of casings - use standard casing in most places
r3654 h.flash(_('Repository permissions updated'), category='success')
Bradley M. Kuhn
Imported some of the GPLv3'd changes from RhodeCode v2.2.5....
r4116 return redirect(url('edit_repo_perms', repo_name=repo_name))
moved permission management into separate entity....
r3628
Bradley M. Kuhn
Imported some of the GPLv3'd changes from RhodeCode v2.2.5....
r4116 def edit_permissions_revoke(self, repo_name):
renamed project to rhodecode
r547 try:
consistent handling of grant/revoke of permissions widgets...
r3715 obj_type = request.POST.get('obj_type')
obj_id = None
if obj_type == 'user':
obj_id = safe_int(request.POST.get('user_id'))
elif obj_type == 'user_group':
obj_id = safe_int(request.POST.get('user_group_id'))
if obj_type == 'user':
RepoModel().revoke_user_permission(repo=repo_name, user=obj_id)
elif obj_type == 'user_group':
Bradley M. Kuhn
Imported some of the GPLv3'd changes from RhodeCode v2.2.5....
r4116 RepoModel().revoke_user_group_permission(
consistent handling of grant/revoke of permissions widgets...
r3715 repo=repo_name, group_name=obj_id
)
moved permission management into separate entity....
r3628 #TODO: implement this
#action_logger(self.rhodecode_user, 'admin_revoked_repo_permissions',
# repo_name, self.ip_addr, self.sa)
sqlalchemy sessions cleanup in admin...
r2662 Session().commit()
#227 Initial version of repository groups permissions system...
r1982 except Exception:
log.error(traceback.format_exc())
consistent handling of grant/revoke of permissions widgets...
r3715 h.flash(_('An error occurred during revoking of permission'),
#56 added ajax removal of users groups,...
r1015 category='error')
raise HTTPInternalServerError()
#749 and #516 Removed dupliciting of repo settings for rhodecode admins and repo admins...
r3629 @HasRepoPermissionAllDecorator('repository.admin')
Bradley M. Kuhn
Imported some of the GPLv3'd changes from RhodeCode v2.2.5....
r4116 def edit_fields(self, repo_name):
"""GET /repo_name/settings: Form to edit an existing item"""
# url('edit_repo', repo_name=ID)
c.repo_info = self._load_repo(repo_name)
c.repo_fields = RepositoryField.query()\
.filter(RepositoryField.repository == c.repo_info).all()
c.active = 'fields'
if request.POST:
return redirect(url('repo_edit_fields'))
return render('admin/repos/repo_edit.html')
@HasRepoPermissionAllDecorator('repository.admin')
def create_repo_field(self, repo_name):
try:
form_result = RepoFieldForm()().to_python(dict(request.POST))
new_field = RepositoryField()
new_field.repository = Repository.get_by_repo_name(repo_name)
new_field.field_key = form_result['new_field_key']
new_field.field_type = form_result['new_field_type'] # python type
new_field.field_value = form_result['new_field_value'] # set initial blank value
new_field.field_desc = form_result['new_field_desc']
new_field.field_label = form_result['new_field_label']
Session().add(new_field)
Session().commit()
except Exception, e:
log.error(traceback.format_exc())
msg = _('An error occurred during creation of field')
if isinstance(e, formencode.Invalid):
msg += ". " + e.msg
h.flash(msg, category='error')
return redirect(url('edit_repo_fields', repo_name=repo_name))
@HasRepoPermissionAllDecorator('repository.admin')
def delete_repo_field(self, repo_name, field_id):
field = RepositoryField.get_or_404(field_id)
try:
Session().delete(field)
Session().commit()
except Exception, e:
log.error(traceback.format_exc())
msg = _('An error occurred during removal of field')
h.flash(msg, category='error')
return redirect(url('edit_repo_fields', repo_name=repo_name))
@HasRepoPermissionAllDecorator('repository.admin')
def edit_advanced(self, repo_name):
"""GET /repo_name/settings: Form to edit an existing item"""
# url('edit_repo', repo_name=ID)
c.repo_info = self._load_repo(repo_name)
c.default_user_id = User.get_default_user().user_id
c.in_public_journal = UserFollowing.query()\
.filter(UserFollowing.user_id == c.default_user_id)\
.filter(UserFollowing.follows_repository == c.repo_info).scalar()
_repos = Repository.query().order_by(Repository.repo_name).all()
read_access_repos = RepoList(_repos)
c.repos_list = [(None, _('-- Not a fork --'))]
c.repos_list += [(x.repo_id, x.repo_name)
for x in read_access_repos
if x.repo_id != c.repo_info.repo_id]
defaults = {
'id_fork_of': c.repo_info.fork.repo_id if c.repo_info.fork else ''
}
c.active = 'advanced'
if request.POST:
return redirect(url('repo_edit_advanced'))
return htmlfill.render(
render('admin/repos/repo_edit.html'),
defaults=defaults,
encoding="UTF-8",
force_defaults=False)
@HasRepoPermissionAllDecorator('repository.admin')
def edit_advanced_journal(self, repo_name):
implemented public journal for anonymous users, admin can control which repositories...
r1085 """
Bradley M. Kuhn
Imported some of the GPLv3'd changes from RhodeCode v2.2.5....
r4116 Set's this repository to be visible in public journal,
in other words assing default user to follow this repo
source code cleanup: remove trailing white space, normalize file endings
r1203
added cache reset, stats reset, and delete into repository settings in admin....
r708 :param repo_name:
"""
Bradley M. Kuhn
Imported some of the GPLv3'd changes from RhodeCode v2.2.5....
r4116 cur_token = request.POST.get('auth_token')
token = get_token()
if cur_token == token:
try:
repo_id = Repository.get_by_repo_name(repo_name).repo_id
user_id = User.get_default_user().user_id
self.scm_model.toggle_following_repo(repo_id, user_id)
h.flash(_('Updated repository visibility in public journal'),
category='success')
Session().commit()
except Exception:
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_advanced', repo_name=repo_name))
added cache reset, stats reset, and delete into repository settings in admin....
r708
#749 and #516 Removed dupliciting of repo settings for rhodecode admins and repo admins...
r3629 @HasRepoPermissionAllDecorator('repository.admin')
Bradley M. Kuhn
Imported some of the GPLv3'd changes from RhodeCode v2.2.5....
r4116 def edit_advanced_fork(self, repo_name):
implemented public journal for anonymous users, admin can control which repositories...
r1085 """
Bradley M. Kuhn
Imported some of the GPLv3'd changes from RhodeCode v2.2.5....
r4116 Mark given repository as a fork of another
source code cleanup: remove trailing white space, normalize file endings
r1203
added cache reset, stats reset, and delete into repository settings in admin....
r708 :param repo_name:
"""
try:
Bradley M. Kuhn
Imported some of the GPLv3'd changes from RhodeCode v2.2.5....
r4116 fork_id = request.POST.get('id_fork_of')
repo = ScmModel().mark_as_fork(repo_name, fork_id,
self.rhodecode_user.username)
fork = repo.fork.repo_name if repo.fork else _('Nothing')
sqlalchemy sessions cleanup in admin...
r2662 Session().commit()
Bradley M. Kuhn
Imported some of the GPLv3'd changes from RhodeCode v2.2.5....
r4116 h.flash(_('Marked repo %s as fork of %s') % (repo_name, fork),
category='success')
except RepositoryError, e:
log.error(traceback.format_exc())
h.flash(str(e), category='error')
added cache reset, stats reset, and delete into repository settings in admin....
r708 except Exception, e:
Implemented basic locking functionality....
r2726 log.error(traceback.format_exc())
Bradley M. Kuhn
Imported some of the GPLv3'd changes from RhodeCode v2.2.5....
r4116 h.flash(_('An error occurred during this operation'),
added cache reset, stats reset, and delete into repository settings in admin....
r708 category='error')
Bradley M. Kuhn
Imported some of the GPLv3'd changes from RhodeCode v2.2.5....
r4116
return redirect(url('edit_repo_advanced', repo_name=repo_name))
added cache reset, stats reset, and delete into repository settings in admin....
r708
#749 and #516 Removed dupliciting of repo settings for rhodecode admins and repo admins...
r3629 @HasRepoPermissionAllDecorator('repository.admin')
Bradley M. Kuhn
Imported some of the GPLv3'd changes from RhodeCode v2.2.5....
r4116 def edit_advanced_locking(self, repo_name):
Implemented basic locking functionality....
r2726 """
Unlock repository when it is locked !
:param repo_name:
"""
try:
repo = Repository.get_by_repo_name(repo_name)
if request.POST.get('set_lock'):
Repository.lock(repo, c.rhodecode_user.user_id)
Bradley M. Kuhn
Imported some of the GPLv3'd changes from RhodeCode v2.2.5....
r4116 h.flash(_('Locked repository'), category='success')
Implemented basic locking functionality....
r2726 elif request.POST.get('set_unlock'):
Repository.unlock(repo)
Bradley M. Kuhn
Imported some of the GPLv3'd changes from RhodeCode v2.2.5....
r4116 h.flash(_('Unlocked repository'), category='success')
Implemented basic locking functionality....
r2726 except Exception, e:
log.error(traceback.format_exc())
h.flash(_('An error occurred during unlocking'),
category='error')
Bradley M. Kuhn
Imported some of the GPLv3'd changes from RhodeCode v2.2.5....
r4116 return redirect(url('edit_repo_advanced', repo_name=repo_name))
Implemented basic locking functionality....
r2726
#749 and #516 Removed dupliciting of repo settings for rhodecode admins and repo admins...
r3629 @HasRepoPermissionAnyDecorator('repository.write', 'repository.admin')
def toggle_locking(self, repo_name):
"""
Toggle locking of repository by simple GET call to url
:param repo_name:
"""
try:
repo = Repository.get_by_repo_name(repo_name)
if repo.enable_locking:
if repo.locked[0]:
Repository.unlock(repo)
Mads Kiilerich
Fix a lot of casings - use standard casing in most places
r3654 action = _('Unlocked')
#749 and #516 Removed dupliciting of repo settings for rhodecode admins and repo admins...
r3629 else:
Repository.lock(repo, c.rhodecode_user.user_id)
Mads Kiilerich
Fix a lot of casings - use standard casing in most places
r3654 action = _('Locked')
#749 and #516 Removed dupliciting of repo settings for rhodecode admins and repo admins...
r3629
h.flash(_('Repository has been %s') % action,
category='success')
except Exception, e:
log.error(traceback.format_exc())
h.flash(_('An error occurred during unlocking'),
category='error')
return redirect(url('summary_home', repo_name=repo_name))
@HasRepoPermissionAllDecorator('repository.admin')
Bradley M. Kuhn
Imported some of the GPLv3'd changes from RhodeCode v2.2.5....
r4116 def edit_caches(self, repo_name):
"""GET /repo_name/settings: Form to edit an existing item"""
# url('edit_repo', repo_name=ID)
c.repo_info = self._load_repo(repo_name)
c.active = 'caches'
if request.POST:
implemented public journal for anonymous users, admin can control which repositories...
r1085 try:
Bradley M. Kuhn
Imported some of the GPLv3'd changes from RhodeCode v2.2.5....
r4116 ScmModel().mark_for_invalidation(repo_name, delete=True)
Session().commit()
h.flash(_('Cache invalidation successful'),
implemented public journal for anonymous users, admin can control which repositories...
r1085 category='success')
Bradley M. Kuhn
Imported some of the GPLv3'd changes from RhodeCode v2.2.5....
r4116 except Exception, e:
log.error(traceback.format_exc())
h.flash(_('An error occurred during cache invalidation'),
implemented public journal for anonymous users, admin can control which repositories...
r1085 category='error')
Bradley M. Kuhn
Imported some of the GPLv3'd changes from RhodeCode v2.2.5....
r4116 return redirect(url('edit_repo_caches', repo_name=c.repo_name))
return render('admin/repos/repo_edit.html')
implemented public journal for anonymous users, admin can control which repositories...
r1085
#749 and #516 Removed dupliciting of repo settings for rhodecode admins and repo admins...
r3629 @HasRepoPermissionAllDecorator('repository.admin')
Bradley M. Kuhn
Imported some of the GPLv3'd changes from RhodeCode v2.2.5....
r4116 def edit_remote(self, repo_name):
"""GET /repo_name/settings: Form to edit an existing item"""
# url('edit_repo', repo_name=ID)
c.repo_info = self._load_repo(repo_name)
c.active = 'remote'
if request.POST:
try:
ScmModel().pull_changes(repo_name, self.rhodecode_user.username)
h.flash(_('Pulled from remote location'), category='success')
except Exception, e:
log.error(traceback.format_exc())
h.flash(_('An error occurred during pull from remote location'),
category='error')
return redirect(url('edit_repo_remote', repo_name=c.repo_name))
return render('admin/repos/repo_edit.html')
Fixes for raw_id, needed for git...
r636
#749 and #516 Removed dupliciting of repo settings for rhodecode admins and repo admins...
r3629 @HasRepoPermissionAllDecorator('repository.admin')
Bradley M. Kuhn
Imported some of the GPLv3'd changes from RhodeCode v2.2.5....
r4116 def edit_statistics(self, repo_name):
"""GET /repo_name/settings: Form to edit an existing item"""
renamed project to rhodecode
r547 # url('edit_repo', repo_name=ID)
Bradley M. Kuhn
Imported some of the GPLv3'd changes from RhodeCode v2.2.5....
r4116 c.repo_info = self._load_repo(repo_name)
repo = c.repo_info.scm_instance
Fixes for raw_id, needed for git...
r636
Bradley M. Kuhn
Imported some of the GPLv3'd changes from RhodeCode v2.2.5....
r4116 if c.repo_info.stats:
# this is on what revision we ended up so we add +1 for count
last_rev = c.repo_info.stats.stat_on_revision + 1
else:
last_rev = 0
c.stats_revision = last_rev
c.repo_last_rev = repo.count() if repo.revisions else 0
repository extra fields implementation...
r3308
Bradley M. Kuhn
Imported some of the GPLv3'd changes from RhodeCode v2.2.5....
r4116 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)
repository extra fields implementation...
r3308
Bradley M. Kuhn
Imported some of the GPLv3'd changes from RhodeCode v2.2.5....
r4116 c.active = 'statistics'
if request.POST:
try:
RepoModel().delete_stats(repo_name)
Session().commit()
except Exception, e:
log.error(traceback.format_exc())
h.flash(_('An error occurred during deletion of repository stats'),
category='error')
return redirect(url('edit_repo_statistics', repo_name=c.repo_name))
repository extra fields implementation...
r3308
Bradley M. Kuhn
Imported some of the GPLv3'd changes from RhodeCode v2.2.5....
r4116 return render('admin/repos/repo_edit.html')