Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions src/omero/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -2410,6 +2410,12 @@ def find_user(self, admin, id_or_name, fatal=False):

return u.id.val, u

def set_users_default_group_by_user_id(self, admin, group, users):
import omero
for user in list(users):
admin.setDefaultGroup(omero.model.ExperimenterI(user, False), group)
self.ctx.out("Set the default group of user %s to group %s" % (user, group.id.val))

def addusersbyid(self, admin, group, users):
import omero
for user in list(users):
Expand Down
42 changes: 39 additions & 3 deletions src/omero/plugins/user.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,13 +92,19 @@ def _configure(self, parser):
"--all", action="store_true", default=False,
help="Include all users, including deactivated accounts")

joingroup = parser.add(sub, self.joingroup, "Join one or more groups")
joingroup = parser.add(sub, self.joingroup,
"Join one or more groups and set default group")
self.add_id_name_arguments(
joingroup, "user. Default to the current user")
group = self.add_group_arguments(joingroup, " to join")
group.add_argument(
"--as-owner", action="store_true", default=False,
help="Join the group(s) as an owner")
group.add_argument(
"--as-default", action="store_true", default=False,
help="Sets the group as the user's default group. "
"Requires a single group. Can be used to change "
"default group even if already a member.")

leavegroup = parser.add(
sub, self.leavegroup, "Leave one or more groups")
Expand Down Expand Up @@ -180,7 +186,8 @@ def password(self, args):
except omero.SecurityViolation as sv:
import traceback
self.ctx.die(456, "SecurityViolation: Bad credentials")
self.ctx.dbg(traceback.format_exception(None, e, sys.exc_info()[2]))
self.ctx.dbg(traceback.format_exception(None, sv,
sys.exc_info()[2]))

if args.username:
try:
Expand Down Expand Up @@ -341,14 +348,43 @@ def joingroup(self, args):

uid, username = self.parse_userid(a, args)
[gid, groups] = self.list_groups(a, args, use_context=False)
groups = self.filter_groups(groups, uid, args.as_owner, True)

if args.as_default:
# Check group count BEFORE filtering
# Otherwise we can't tell if multiple groups were passed
# for setting default group.
if len(groups) == 1:
# If that's the case, set that to be the default group
# which will happen in the rest of the function.
pass
else:
if len(groups) > 1:
# Message to user that we can only
# set the default group if only one group
# is supplied as an argument.
self.ctx.out("--as-default requires a "
"single group ID to be supplied.")
# Exit the function making no changes.
return None

if args.as_default:
# Store the group to be set as default as filter_groups
# will remove it from the list if the user is already a member.
default_group = groups[0]

groups = self.filter_groups(groups, uid, args.as_owner, True)
for group in groups:
if args.as_owner:
self.addownersbyid(a, group, [uid])
else:
self.addusersbyid(a, group, [uid])

if args.as_default:
# Here, we know only one group is being processed.
# Even if user was already a member of the group,
# we still want to set it as the default group.
self.set_users_default_group_by_user_id(a, default_group, [uid])

def leavegroup(self, args):
c = self.ctx.conn(args)
a = c.sf.getAdminService()
Expand Down
Loading