/* * #%L * Alfresco Repository * %% * Copyright (C) 2005 - 2016 Alfresco Software Limited * %% * This file is part of the Alfresco software. * If the software was purchased under a paid Alfresco license, the terms of * the paid license agreement will prevail. Otherwise, the software is * provided under the following open source license terms: * * Alfresco is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Alfresco is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with Alfresco. If not, see . * #L% */ package org.alfresco.service.cmr.favourites; import java.util.Arrays; import java.util.Collections; import java.util.HashSet; import java.util.List; import java.util.Set; import org.alfresco.query.PagingRequest; import org.alfresco.query.PagingResults; import org.alfresco.repo.favourites.PersonFavourite; import org.alfresco.service.Auditable; import org.alfresco.service.cmr.repository.NodeRef; import org.alfresco.util.Pair; /** * A service for managing a person's favourites. * * Currently supports favouriting of sites, files and folders. * * @author steveglover * */ public interface FavouritesService { /* * Supported favourite types. */ public static enum Type { // Note: ordered FILE, FOLDER, SITE; public static Set ALL_FILTER_TYPES; static { ALL_FILTER_TYPES = new HashSet(); ALL_FILTER_TYPES.add(FILE); ALL_FILTER_TYPES.add(FOLDER); ALL_FILTER_TYPES.add(SITE); ALL_FILTER_TYPES = Collections.unmodifiableSet(ALL_FILTER_TYPES); } }; public enum SortFields { username, type, createdAt, title }; /* * Default ordering is (userName ASC, type ASC, createdAt DESC) */ @SuppressWarnings("unchecked") public static List> DEFAULT_SORT_PROPS = Arrays.asList( new Pair(FavouritesService.SortFields.username, Boolean.TRUE), new Pair(FavouritesService.SortFields.type, Boolean.TRUE), new Pair(FavouritesService.SortFields.createdAt, Boolean.FALSE)); Type getType(NodeRef nodeRef); /** * Add the entity identified by nodeRef as a favourite for user "userName". * * If the nodeRef is already favourited, the favourite entity is returned. No * information regarding the favourite e.g. createdAt is updated. * * @param userName String * @param nodeRef NodeRef * @return PersonFavourite */ @Auditable(parameters = {"userName", "nodeRef"}) PersonFavourite addFavourite(String userName, NodeRef nodeRef); /** * Is the entity identified by nodeRef a favourite document of user "userName". * * @param userName String * @param nodeRef NodeRef * @return boolean */ @Auditable(parameters = {"userName", "nodeRef"}) boolean isFavourite(String userName, NodeRef nodeRef); /** * Remove the document identified by nodeRef as a favourite for user "userName". * * @param userName String * @param nodeRef NodeRef * @return boolean */ @Auditable(parameters = {"userName", "nodeRef"}) boolean removeFavourite(String userName, NodeRef nodeRef); /** * A paged list of favourites for user "userName". * * @param userName String * @param pagingRequest PagingRequest */ @Auditable(parameters = {"userName", "types", "pagingRequest"}) PagingResults getPagedFavourites(String userName, Set types, List> sortProps, PagingRequest pagingRequest); /** * Get a specific favourite for user "userName". * * @param userName String * @param nodeRef NodeRef * @return PersonFavourite */ @Auditable(parameters = {"userName", "nodeRef"}) PersonFavourite getFavourite(String userName, NodeRef nodeRef); }