class Chef::Group

Public Instance Methods

actor_delete_would_leave_admins_empty?() click to toggle source
# File lib/chef/group.rb, line 58
def actor_delete_would_leave_admins_empty?
  admins = group("admins")
  if admins["groups"].empty?
    # exclude 'pivotal' but don't mutate the group since we're caching it
    if admins["actors"].include? "pivotal"
      admins["actors"].length <= 2
    else
      admins["actors"].length <= 1
    end
  else
    # We don't check recursively. If the admins group contains a group,
    # and the user is the only member of that group,
    # we'll still turn up a 'safe to delete'.
    false
  end
end
add_user_to_group(groupname, username) click to toggle source
# File lib/chef/group.rb, line 33
def add_user_to_group(groupname, username)
  group = group(groupname)
  body_hash = {
    groupname: "#{groupname}",
    actors: {
      "users" => group["actors"].concat([username]),
      "groups" => group["groups"],
    },
  }
  chef_rest.put_rest "organizations/#{name}/groups/#{groupname}", body_hash
end
group(groupname) click to toggle source
# File lib/chef/group.rb, line 23
def group(groupname)
  @group ||= {}
  @group[groupname] ||= chef_rest.get_rest "organizations/#{name}/groups/#{groupname}"
end
remove_user_from_group(groupname, username) click to toggle source
# File lib/chef/group.rb, line 45
def remove_user_from_group(groupname, username)
  group = group(groupname)
  group["actors"].delete(username)
  body_hash = {
    groupname: "#{groupname}",
    actors: {
      "users" => group["actors"],
      "groups" => group["groups"],
    },
  }
  chef_rest.put_rest "organizations/#{name}/groups/#{groupname}", body_hash
end
user_member_of_group?(username, groupname) click to toggle source
# File lib/chef/group.rb, line 28
def user_member_of_group?(username, groupname)
  group = group(groupname)
  group["actors"].include? username
end