blob: b026dad8324e137e79b00efa4989a52e4ab9df45 [file] [log] [blame]
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
"""
Add a user to group on a project.
Especially useful for making admin1 a neighborhood admin after loading a
production dataset.
Example:
# Add admin1 to Admin group for the entire /p/ neighborhood:
$ paster script production.ini ../scripts/add_user_to_group.py -- admin1 Admin
# Add admin1 to Member group on project /p/allura:
$ paster script production.ini ../scripts/add_user_to_group.py -- admin1 Member allura
# Add admin1 to Developer group on project /berlios/codeblocks:
$ paster script production.ini ../scripts/add_user_to_group.py -- admin1 Developer codeblocks --nbhd=/berlios/
# Add admin1 to Admin group for entire berlios neighborhood:
$ paster script production.ini ../scripts/add_user_to_group.py -- admin1 Admin --nbhd=/berlios/
"""
from __future__ import unicode_literals
from __future__ import absolute_import
import logging
from allura import model as M
from allura.lib.utils import chunked_find
from allura.model import main_orm_session
from ming.orm import ThreadLocalORMSession
log = logging.getLogger(__name__)
def main(options):
nbhd = M.Neighborhood.query.get(url_prefix=options.nbhd)
if not nbhd:
return "Couldn't find neighborhood with url_prefix '%s'" % options.nbhd
user = M.User.by_username(options.user)
if not user:
return "Couldn't find user with username '%s'" % options.user
if options.replace_user:
replace_user = M.User.by_username(options.replace_user)
if not replace_user:
return "Couldn't find user with username '%s'" % options.replace_user
else:
replace_user = None
if options.project == 'ALLPROJECTS':
for chunk in chunked_find(M.Project, dict(
neighborhood_id=nbhd._id,
shortname={'$ne': '--init--'},
)):
for p in chunk:
update_project(options, user, p, replace_user=replace_user)
# clears User, Project, ProjectRole... so they're not taking up memory and making flush_all() be slow
main_orm_session.clear()
else:
project = M.Project.query.get(neighborhood_id=nbhd._id,
shortname=options.project)
if not project:
return "Couldn't find project with shortname '%s'" % options.project
update_project(options, user, project, replace_user=replace_user)
def update_project(options, user, project, replace_user=None):
project_role = M.ProjectRole.by_name(options.group, project=project)
if not project_role:
return "Couldn't find group (ProjectRole) with name '%s' in %s" % (options.group, project.url())
if replace_user:
replace_user_roles = M.ProjectRole.by_user(replace_user, project=project, upsert=True).roles
if project_role._id not in replace_user_roles:
log.info('Cannot replace %s they are not %s of %s', replace_user.username, options.group, project.url())
return
if options.dry_run:
log.info('Would remove %s as %s of %s', replace_user.username, options.group, project.url())
else:
replace_user_roles.remove(project_role._id)
ThreadLocalORMSession.flush_all()
user_roles = M.ProjectRole.by_user(user, project=project, upsert=True).roles
if project_role._id in user_roles:
log.info('%s is already %s of %s', user.username, options.group, project.url())
return
if options.dry_run:
log.info('Would add %s as %s of %s', user.username, options.group, project.url())
else:
user_roles.append(project_role._id)
ThreadLocalORMSession.flush_all()
def parse_options():
import argparse
parser = argparse.ArgumentParser(description=__doc__,
formatter_class=argparse.RawDescriptionHelpFormatter)
parser.add_argument('user', help='Username to add')
parser.add_argument('group', help='Group (ProjectRole) name, e.g. Admin, '
'Member, Developer, etc.')
parser.add_argument('project', nargs='?', default='--init--',
help='Project shortname. Default is --init-- (the neighborhood itself).'
'Use "ALLPROJECTS" for all projects within a neighborhood')
parser.add_argument('--nbhd', default='/p/', help='Neighborhood '
'url_prefix. Default is /p/.')
parser.add_argument('--replace-user', help='If this is specified, remove this user and only add the new user if '
'this user was found and removed from the project(s)')
parser.add_argument('--dry-run', action='store_true',
help='Dry-run actions logged to log file')
return parser.parse_args()
if __name__ == '__main__':
import sys
sys.exit(main(parse_options()))