Search in sources :

Example 36 with BusinessGroupQueryParams

use of org.olat.group.model.BusinessGroupQueryParams in project openolat by klemens.

the class SelectOwnedBusinessGroupController method getSearchParams.

@Override
protected BusinessGroupQueryParams getSearchParams(SearchEvent event) {
    BusinessGroupQueryParams params = new BusinessGroupQueryParams(true, false);
    params.setWaiting(false);
    return params;
}
Also used : BusinessGroupQueryParams(org.olat.group.model.BusinessGroupQueryParams)

Example 37 with BusinessGroupQueryParams

use of org.olat.group.model.BusinessGroupQueryParams in project openolat by klemens.

the class SelectSearchBusinessGroupController method getSearchParams.

@Override
protected BusinessGroupQueryParams getSearchParams(SearchEvent event) {
    BusinessGroupQueryParams params = event.convertToBusinessGroupQueriesParams();
    // security
    if (restricted && !params.isAttendee() && !params.isOwner() && !params.isWaiting() && (params.getPublicGroups() == null || !params.getPublicGroups().booleanValue())) {
        params.setOwner(true);
        params.setAttendee(true);
        params.setWaiting(true);
    }
    return params;
}
Also used : BusinessGroupQueryParams(org.olat.group.model.BusinessGroupQueryParams)

Example 38 with BusinessGroupQueryParams

use of org.olat.group.model.BusinessGroupQueryParams in project openolat by klemens.

the class SelectSearchBusinessGroupController method getDefaultSearchParams.

@Override
protected BusinessGroupQueryParams getDefaultSearchParams() {
    BusinessGroupQueryParams params = new BusinessGroupQueryParams();
    // security
    if (restricted) {
        params.setOwner(true);
        params.setAttendee(true);
        params.setWaiting(true);
    }
    return params;
}
Also used : BusinessGroupQueryParams(org.olat.group.model.BusinessGroupQueryParams)

Example 39 with BusinessGroupQueryParams

use of org.olat.group.model.BusinessGroupQueryParams in project openolat by klemens.

the class CourseBusinessGroupListController method getDefaultSearchParams.

@Override
protected BusinessGroupQueryParams getDefaultSearchParams() {
    BusinessGroupQueryParams params = new BusinessGroupQueryParams();
    params.setRepositoryEntry(re);
    return params;
}
Also used : BusinessGroupQueryParams(org.olat.group.model.BusinessGroupQueryParams)

Example 40 with BusinessGroupQueryParams

use of org.olat.group.model.BusinessGroupQueryParams in project OpenOLAT by OpenOLAT.

the class BusinessGroupDAOTest method findBusinessGroupsWithResources.

@Test
public void findBusinessGroupsWithResources() {
    // create a group attach to a resource
    Identity id = JunitTestHelper.createAndPersistIdentityAsRndUser("bg-search-10");
    Identity owner = JunitTestHelper.createAndPersistIdentityAsRndUser("marker-");
    RepositoryEntry re = JunitTestHelper.createAndPersistRepositoryEntry();
    BusinessGroup group1 = businessGroupDao.createAndPersist(owner, "rsrc-grp-1", "rsrc-grp-1-desc", 0, 5, true, false, true, false, false);
    BusinessGroup group2 = businessGroupDao.createAndPersist(owner, "rsrc-grp-2", "rsrc-grp-2-desc", 0, 5, true, false, true, false, false);
    businessGroupRelationDao.addRelationToResource(group1, re);
    dbInstance.commitAndCloseSession();
    // check the same with the views
    // check the search function with resources
    BusinessGroupQueryParams queryWithParams = new BusinessGroupQueryParams();
    queryWithParams.setResources(Boolean.TRUE);
    List<BusinessGroupRow> groupViewWith = businessGroupDao.searchBusinessGroupsWithMemberships(queryWithParams, id);
    Assert.assertNotNull(groupViewWith);
    Assert.assertFalse(groupViewWith.isEmpty());
    Assert.assertTrue(contains(groupViewWith, group1));
    // check the search function without resources
    BusinessGroupQueryParams queryWithoutParams = new BusinessGroupQueryParams();
    queryWithoutParams.setResources(Boolean.FALSE);
    List<BusinessGroupRow> groupViewWithout = businessGroupDao.searchBusinessGroupsWithMemberships(queryWithoutParams, id);
    Assert.assertNotNull(groupViewWithout);
    Assert.assertFalse(groupViewWithout.isEmpty());
    Assert.assertTrue(contains(groupViewWithout, group2));
}
Also used : BusinessGroupQueryParams(org.olat.group.model.BusinessGroupQueryParams) BusinessGroup(org.olat.group.BusinessGroup) RepositoryEntry(org.olat.repository.RepositoryEntry) Identity(org.olat.core.id.Identity) StatisticsBusinessGroupRow(org.olat.group.model.StatisticsBusinessGroupRow) BusinessGroupRow(org.olat.group.model.BusinessGroupRow) OpenBusinessGroupRow(org.olat.group.model.OpenBusinessGroupRow) Test(org.junit.Test)

Aggregations

BusinessGroupQueryParams (org.olat.group.model.BusinessGroupQueryParams)82 Test (org.junit.Test)38 Identity (org.olat.core.id.Identity)38 BusinessGroup (org.olat.group.BusinessGroup)38 StatisticsBusinessGroupRow (org.olat.group.model.StatisticsBusinessGroupRow)38 OpenBusinessGroupRow (org.olat.group.model.OpenBusinessGroupRow)36 BusinessGroupRow (org.olat.group.model.BusinessGroupRow)34 SearchBusinessGroupParams (org.olat.group.model.SearchBusinessGroupParams)16 RepositoryEntry (org.olat.repository.RepositoryEntry)8 Offer (org.olat.resource.accesscontrol.Offer)4 OfferAccess (org.olat.resource.accesscontrol.OfferAccess)4 AccessMethod (org.olat.resource.accesscontrol.model.AccessMethod)4 TokenAccessMethod (org.olat.resource.accesscontrol.model.TokenAccessMethod)4 ArrayList (java.util.ArrayList)2 Calendar (java.util.Calendar)2 Date (java.util.Date)2 HashSet (java.util.HashSet)2 BGPermission (org.olat.course.member.PermissionHelper.BGPermission)2 BusinessGroupMembership (org.olat.group.BusinessGroupMembership)2 BusinessGroupRowComparator (org.olat.group.model.comparator.BusinessGroupRowComparator)2