Search in sources :

Example 6 with RemoteClientModel

use of org.jbei.ice.storage.model.RemoteClientModel in project ice by JBEI.

the class Groups method getGroupMembers.

/**
     * Retrieves both local and remote members of the specified group if the user making the request
     * has the appropriate permissions
     *
     * @param groupId unique local identifier of group
     * @return information about specified group including remote and local members
     * @throws PermissionException if the user does not have read permissions
     */
public UserGroup getGroupMembers(long groupId) {
    Group group = dao.get(groupId);
    if (group == null)
        return null;
    if (group.getType() == GroupType.PUBLIC) {
        if (!accountController.isAdministrator(userId))
            throw new PermissionException("Administrative privileges required");
    } else if (!userId.equalsIgnoreCase(group.getOwner().getEmail())) {
        Account account = accountDAO.getByEmail(this.userId);
        if (account.getType() != AccountType.ADMIN)
            throw new PermissionException("Missing required permissions");
    }
    UserGroup userGroup = group.toDataTransferObject();
    for (Account account : group.getMembers()) {
        userGroup.getMembers().add(account.toDataTransferObject());
    }
    // get remote members
    List<RemoteClientModel> clients = remoteClientModelDAO.getClientsForGroup(group);
    for (RemoteClientModel clientModel : clients) {
        userGroup.getRemoteMembers().add(clientModel.toDataTransferObject());
    }
    return userGroup;
}
Also used : PermissionException(org.jbei.ice.lib.access.PermissionException) Group(org.jbei.ice.storage.model.Group) UserGroup(org.jbei.ice.lib.dto.group.UserGroup) Account(org.jbei.ice.storage.model.Account) RemoteClientModel(org.jbei.ice.storage.model.RemoteClientModel) UserGroup(org.jbei.ice.lib.dto.group.UserGroup)

Aggregations

RemoteClientModel (org.jbei.ice.storage.model.RemoteClientModel)6 Group (org.jbei.ice.storage.model.Group)4 HibernateException (org.hibernate.HibernateException)3 DAOException (org.jbei.ice.storage.DAOException)3 Account (org.jbei.ice.storage.model.Account)3 PermissionException (org.jbei.ice.lib.access.PermissionException)2 AccountTransfer (org.jbei.ice.lib.account.AccountTransfer)2 UserGroup (org.jbei.ice.lib.dto.group.UserGroup)2 RemoteUser (org.jbei.ice.lib.dto.web.RemoteUser)2 RemotePartner (org.jbei.ice.storage.model.RemotePartner)2 RegistryPartner (org.jbei.ice.lib.dto.web.RegistryPartner)1