Search in sources :

Example 16 with CommentAndRatingSecurityCallback

use of org.olat.core.commons.services.commentAndRating.CommentAndRatingSecurityCallback in project openolat by klemens.

the class TableOfContentController method doOpenComments.

private void doOpenComments(UserRequest ureq, PageRow pageRow) {
    CommentAndRatingSecurityCallback commentSecCallback;
    if (PageStatus.isClosed(pageRow.getPage())) {
        commentSecCallback = new ReadOnlyCommentsSecurityCallback();
    } else {
        commentSecCallback = new CommentAndRatingDefaultSecurityCallback(getIdentity(), false, false);
    }
    OLATResourceable ores = OresHelper.createOLATResourceableInstance(Page.class, pageRow.getKey());
    commentsCtrl = new UserCommentsController(ureq, getWindowControl(), ores, null, commentSecCallback);
    listenTo(commentsCtrl);
    String title = translate("comment.title");
    cmc = new CloseableModalController(getWindowControl(), null, commentsCtrl.getInitialComponent(), true, title, true);
    listenTo(cmc);
    cmc.activate();
}
Also used : CommentAndRatingSecurityCallback(org.olat.core.commons.services.commentAndRating.CommentAndRatingSecurityCallback) OLATResourceable(org.olat.core.id.OLATResourceable) ReadOnlyCommentsSecurityCallback(org.olat.modules.portfolio.ui.model.ReadOnlyCommentsSecurityCallback) CloseableModalController(org.olat.core.gui.control.generic.closablewrapper.CloseableModalController) UserCommentsController(org.olat.core.commons.services.commentAndRating.ui.UserCommentsController) CommentAndRatingDefaultSecurityCallback(org.olat.core.commons.services.commentAndRating.CommentAndRatingDefaultSecurityCallback)

Example 17 with CommentAndRatingSecurityCallback

use of org.olat.core.commons.services.commentAndRating.CommentAndRatingSecurityCallback in project openolat by klemens.

the class PageRunController method loadModel.

private void loadModel(UserRequest ureq, boolean reloadComments) {
    mainVC.contextPut("pageTitle", page.getTitle());
    pageCtrl.loadElements(ureq);
    dirtyMarker = false;
    if (secCallback.canComment(page)) {
        if (reloadComments && commentsCtrl != null) {
            mainVC.remove(commentsCtrl.getInitialComponent());
            removeAsListenerAndDispose(commentsCtrl);
            commentsCtrl = null;
        }
        if (commentsCtrl == null) {
            CommentAndRatingSecurityCallback commentSecCallback;
            if (PageStatus.isClosed(page)) {
                commentSecCallback = new ReadOnlyCommentsSecurityCallback();
            } else {
                commentSecCallback = new CommentAndRatingDefaultSecurityCallback(getIdentity(), false, false);
            }
            OLATResourceable ores = OresHelper.createOLATResourceableInstance(Page.class, page.getKey());
            commentsCtrl = new UserCommentsAndRatingsController(ureq, getWindowControl(), ores, null, commentSecCallback, true, false, true);
            commentsCtrl.expandComments(ureq);
            listenTo(commentsCtrl);
        }
        mainVC.put("comments", commentsCtrl.getInitialComponent());
    } else if (commentsCtrl != null) {
        mainVC.remove(commentsCtrl.getInitialComponent());
        removeAsListenerAndDispose(commentsCtrl);
        commentsCtrl = null;
    }
    if (editLink != null) {
        editLink.setVisible(secCallback.canEditPage(page));
    }
    if (editMetadataLink != null) {
        editMetadataLink.setVisible(secCallback.canEditMetadataBinder());
    }
    if (moveToTrashLink != null) {
        moveToTrashLink.setVisible(secCallback.canDeletePage(page));
    }
}
Also used : CommentAndRatingSecurityCallback(org.olat.core.commons.services.commentAndRating.CommentAndRatingSecurityCallback) UserCommentsAndRatingsController(org.olat.core.commons.services.commentAndRating.ui.UserCommentsAndRatingsController) OLATResourceable(org.olat.core.id.OLATResourceable) ReadOnlyCommentsSecurityCallback(org.olat.modules.portfolio.ui.model.ReadOnlyCommentsSecurityCallback) CommentAndRatingDefaultSecurityCallback(org.olat.core.commons.services.commentAndRating.CommentAndRatingDefaultSecurityCallback)

Example 18 with CommentAndRatingSecurityCallback

use of org.olat.core.commons.services.commentAndRating.CommentAndRatingSecurityCallback in project openolat by klemens.

the class ItemsController method createCommentsAndRatingsLink.

/**
 * Create comments and rating component link for given feed item
 *
 * @param ureq
 * @param feed
 * @param item
 */
private void createCommentsAndRatingsLink(UserRequest ureq, Feed feed, Item item) {
    if (feed == null || item == null)
        // check against concurrent changes
        return;
    if (CoreSpringFactory.containsBean(CommentAndRatingService.class)) {
        if (commentsLinks == null) {
            commentsLinks = new HashMap<>();
        } else if (commentsLinks.containsKey(item)) {
            removeAsListenerAndDispose(commentsLinks.get(item));
        }
        boolean anonym = ureq.getUserSession().getRoles().isGuestOnly();
        CommentAndRatingSecurityCallback secCallback = new CommentAndRatingDefaultSecurityCallback(getIdentity(), callback.mayEditMetadata(), anonym);
        UserCommentsAndRatingsController commentsAndRatingCtr = new UserCommentsAndRatingsController(ureq, getWindowControl(), feed, item.getGuid(), secCallback, true, true, false);
        commentsAndRatingCtr.setUserObject(item);
        listenTo(commentsAndRatingCtr);
        commentsLinks.put(item, commentsAndRatingCtr);
        String guid = item.getGuid();
        vcItems.put("commentsAndRating." + guid, commentsAndRatingCtr.getInitialComponent());
    }
}
Also used : CommentAndRatingSecurityCallback(org.olat.core.commons.services.commentAndRating.CommentAndRatingSecurityCallback) UserCommentsAndRatingsController(org.olat.core.commons.services.commentAndRating.ui.UserCommentsAndRatingsController) CommentAndRatingDefaultSecurityCallback(org.olat.core.commons.services.commentAndRating.CommentAndRatingDefaultSecurityCallback)

Example 19 with CommentAndRatingSecurityCallback

use of org.olat.core.commons.services.commentAndRating.CommentAndRatingSecurityCallback in project openolat by klemens.

the class EPPageViewController method init.

private void init(UserRequest ureq) {
    vC.contextPut("page", page);
    PortfolioStructureMap parentOfPage = (PortfolioStructureMap) ePFMgr.loadStructureParent(page);
    boolean parentMapClosed = StructureStatusEnum.CLOSED.equals(parentOfPage.getStatus());
    vC.remove(vC.getComponent("checkResults"));
    if (secCallback.isRestrictionsEnabled()) {
        removeAsListenerAndDispose(resultCtrl);
        List<CollectRestriction> restrictions = page.getCollectRestrictions();
        if (!restrictions.isEmpty()) {
            boolean check = ePFMgr.checkCollectRestriction(page);
            resultCtrl = new EPCollectRestrictionResultController(ureq, getWindowControl());
            resultCtrl.setMessage(restrictions, check);
            vC.put("checkResults", resultCtrl.getInitialComponent());
            listenTo(resultCtrl);
        }
    }
    vC.remove(vC.getComponent("artefacts"));
    List<AbstractArtefact> artefacts = ePFMgr.getArtefacts(page);
    if (artefacts.size() != 0) {
        EPMultiArtefactsController artefactCtrl = EPUIFactory.getConfigDependentArtefactsControllerForStructure(ureq, getWindowControl(), artefacts, page, secCallback);
        vC.put("artefacts", artefactCtrl.getInitialComponent());
        listenTo(artefactCtrl);
    }
    vC.remove(vC.getComponent("structElements"));
    List<PortfolioStructure> structElements = ePFMgr.loadStructureChildren(page);
    if (structElements.size() != 0) {
        EPStructureElementsController structElCtrl = new EPStructureElementsController(ureq, getWindowControl(), structElements, secCallback, parentMapClosed);
        vC.put("structElements", structElCtrl.getInitialComponent());
        listenTo(structElCtrl);
    }
    vC.remove(vC.getComponent("addButton"));
    if (!parentMapClosed && (secCallback.canAddArtefact() || secCallback.canAddStructure())) {
        addButtonCtrl = new EPAddElementsController(ureq, getWindowControl(), page);
        listenTo(addButtonCtrl);
        if (secCallback.canAddArtefact()) {
            addButtonCtrl.setShowLink(EPAddElementsController.ADD_ARTEFACT);
        }
        if (secCallback.canAddStructure()) {
            addButtonCtrl.setShowLink(EPAddElementsController.ADD_STRUCTUREELEMENT);
        }
        vC.put("addButton", addButtonCtrl.getInitialComponent());
    }
    vC.remove(vC.getComponent("commentCtrl"));
    if (secCallback.canCommentAndRate()) {
        removeAsListenerAndDispose(commentsAndRatingCtr);
        boolean anonym = ureq.getUserSession().getRoles().isGuestOnly();
        CommentAndRatingSecurityCallback ratingSecCallback = new CommentAndRatingDefaultSecurityCallback(getIdentity(), false, anonym);
        commentsAndRatingCtr = new UserCommentsAndRatingsController(ureq, getWindowControl(), map.getOlatResource(), page.getKey().toString(), ratingSecCallback, true, true, true);
        listenTo(commentsAndRatingCtr);
        vC.put("commentCtrl", commentsAndRatingCtr.getInitialComponent());
    }
}
Also used : PortfolioStructureMap(org.olat.portfolio.model.structel.PortfolioStructureMap) EPCollectRestrictionResultController(org.olat.portfolio.ui.structel.edit.EPCollectRestrictionResultController) CommentAndRatingSecurityCallback(org.olat.core.commons.services.commentAndRating.CommentAndRatingSecurityCallback) EPMultiArtefactsController(org.olat.portfolio.ui.artefacts.view.EPMultiArtefactsController) AbstractArtefact(org.olat.portfolio.model.artefacts.AbstractArtefact) CommentAndRatingDefaultSecurityCallback(org.olat.core.commons.services.commentAndRating.CommentAndRatingDefaultSecurityCallback) UserCommentsAndRatingsController(org.olat.core.commons.services.commentAndRating.ui.UserCommentsAndRatingsController) PortfolioStructure(org.olat.portfolio.model.structel.PortfolioStructure) CollectRestriction(org.olat.portfolio.model.restriction.CollectRestriction)

Example 20 with CommentAndRatingSecurityCallback

use of org.olat.core.commons.services.commentAndRating.CommentAndRatingSecurityCallback in project openolat by klemens.

the class EPTOCReadOnlyController method refreshTOC.

public void refreshTOC(UserRequest ureq) {
    // do recursively
    int level = 0;
    List<TOCElement> tocList = new ArrayList<TOCElement>();
    buildTOCModel(map, tocList, level);
    vC.contextPut("tocList", tocList);
    if (secCallback.canCommentAndRate()) {
        removeAsListenerAndDispose(commentsAndRatingCtr);
        boolean anonym = ureq.getUserSession().getRoles().isGuestOnly();
        CommentAndRatingSecurityCallback callback = new CommentAndRatingDefaultSecurityCallback(getIdentity(), false, anonym);
        commentsAndRatingCtr = new UserCommentsAndRatingsController(ureq, getWindowControl(), map.getOlatResource(), null, callback, true, true, true);
        listenTo(commentsAndRatingCtr);
        vC.put("commentCtrl", commentsAndRatingCtr.getInitialComponent());
    }
}
Also used : CommentAndRatingSecurityCallback(org.olat.core.commons.services.commentAndRating.CommentAndRatingSecurityCallback) UserCommentsAndRatingsController(org.olat.core.commons.services.commentAndRating.ui.UserCommentsAndRatingsController) ArrayList(java.util.ArrayList) CommentAndRatingDefaultSecurityCallback(org.olat.core.commons.services.commentAndRating.CommentAndRatingDefaultSecurityCallback)

Aggregations

CommentAndRatingSecurityCallback (org.olat.core.commons.services.commentAndRating.CommentAndRatingSecurityCallback)20 CommentAndRatingDefaultSecurityCallback (org.olat.core.commons.services.commentAndRating.CommentAndRatingDefaultSecurityCallback)16 UserCommentsController (org.olat.core.commons.services.commentAndRating.ui.UserCommentsController)12 OLATResourceable (org.olat.core.id.OLATResourceable)12 ReadOnlyCommentsSecurityCallback (org.olat.modules.portfolio.ui.model.ReadOnlyCommentsSecurityCallback)10 UserCommentsAndRatingsController (org.olat.core.commons.services.commentAndRating.ui.UserCommentsAndRatingsController)8 CloseableModalController (org.olat.core.gui.control.generic.closablewrapper.CloseableModalController)8 Component (org.olat.core.gui.components.Component)4 BinderSecurityCallback (org.olat.modules.portfolio.BinderSecurityCallback)4 PageController (org.olat.modules.portfolio.ui.editor.PageController)4 ArrayList (java.util.ArrayList)2 VelocityContainer (org.olat.core.gui.components.velocity.VelocityContainer)2 WindowControl (org.olat.core.gui.control.WindowControl)2 WindowControlMocker (org.olat.core.gui.util.WindowControlMocker)2 PageMetadataController (org.olat.modules.portfolio.ui.PageMetadataController)2 AbstractArtefact (org.olat.portfolio.model.artefacts.AbstractArtefact)2 CollectRestriction (org.olat.portfolio.model.restriction.CollectRestriction)2 PortfolioStructure (org.olat.portfolio.model.structel.PortfolioStructure)2 PortfolioStructureMap (org.olat.portfolio.model.structel.PortfolioStructureMap)2 EPMultiArtefactsController (org.olat.portfolio.ui.artefacts.view.EPMultiArtefactsController)2