def get_groups_moderators(groups): aot = BofhdAuthOpTarget(db) ar = BofhdAuthRole(db) aos = BofhdAuthOpSet(db) co = Factory.get('Constants')(db) en = Factory.get('Entity')(db) for group in groups: group_id = group[0] targets = [] for row in aot.list(target_type='group', entity_id=group_id): targets.append(int(row['op_target_id'])) for row in ar.list_owners(targets): aos.clear() aos.find(row['op_set_id']) id = int(row['entity_id']) en.clear() en.find(id) entity_id = int(en.entity_id) en.clear() ent = en.get_subclassed_object(entity_id) if ent.entity_type == co.entity_account: owner = ent.account_name elif ent.entity_type == co.entity_group: owner = ent.group_name else: owner = '#%d' % id group.append(" ".join( [str(co.EntityType(ent.entity_type)), owner, aos.name]))
def get_groups_moderators(groups): aot = BofhdAuthOpTarget(db) ar = BofhdAuthRole(db) aos = BofhdAuthOpSet(db) co = Factory.get('Constants')(db) en = Factory.get('Entity')(db) for group in groups: group_id = group[0] targets = [] for row in aot.list(target_type = 'group', entity_id = group_id): targets.append(int(row['op_target_id'])) for row in ar.list_owners(targets): aos.clear() aos.find(row['op_set_id']) id = int(row['entity_id']) en.clear() en.find(id) entity_id = int(en.entity_id) en.clear() ent = en.get_subclassed_object(entity_id) if ent.entity_type == co.entity_account: owner = ent.account_name elif ent.entity_type == co.entity_group: owner = ent.group_name else: owner = '#%d' % id group.append(" ".join([str(co.EntityType(ent.entity_type)), owner, aos.name]))
def group_info(self, operator, groupname): grp = self._get_group(groupname) co = self.const ret = [self._entity_info(grp), ] # find owners aot = BofhdAuthOpTarget(self.db) targets = [] for row in aot.list(target_type='group', entity_id=grp.entity_id): targets.append(int(row['op_target_id'])) ar = BofhdAuthRole(self.db) aos = BofhdAuthOpSet(self.db) for row in ar.list_owners(targets): aos.clear() aos.find(row['op_set_id']) id = int(row['entity_id']) en = self._get_entity(ident=id) if en.entity_type == co.entity_account: owner = en.account_name elif en.entity_type == co.entity_group: owner = en.group_name else: owner = '#%d' % id ret.append({ 'owner_type': text_type(co.EntityType(en.entity_type)), 'owner': owner, 'opset': aos.name, }) # Count group members of different types members = list(grp.search_members(group_id=grp.entity_id)) tmp = {} for ret_pfix, entity_type in ( ('c_group', int(co.entity_group)), ('c_account', int(co.entity_account))): tmp[ret_pfix] = len([x for x in members if int(x["member_type"]) == entity_type]) ret.append(tmp) return ret
def group_info(self, operator, groupname): grp = self._get_group(groupname) co = self.const ret = [ self._entity_info(grp) ] # find owners aot = BofhdAuthOpTarget(self.db) targets = [] for row in aot.list(target_type='group', entity_id=grp.entity_id): targets.append(int(row['op_target_id'])) ar = BofhdAuthRole(self.db) aos = BofhdAuthOpSet(self.db) for row in ar.list_owners(targets): aos.clear() aos.find(row['op_set_id']) id = int(row['entity_id']) en = self._get_entity(ident=id) if en.entity_type == co.entity_account: owner = en.account_name elif en.entity_type == co.entity_group: owner = en.group_name else: owner = '#%d' % id ret.append({'owner_type': str(co.EntityType(en.entity_type)), 'owner': owner, 'opset': aos.name}) # Count group members of different types members = list(grp.search_members(group_id=grp.entity_id)) tmp = {} for ret_pfix, entity_type in ( ('c_group', int(self.const.entity_group)), ('c_account', int(self.const.entity_account))): tmp[ret_pfix] = len([x for x in members if int(x["member_type"]) == entity_type]) ret.append(tmp) return ret