Package org.alfresco.service.cmr.rating
Interface RatingService
- All Known Subinterfaces:
RatingServiceExtension,RatingServiceTrait
- All Known Implementing Classes:
RatingServiceImpl,VirtualRatingServiceExtension
@AlfrescoPublicApi
public interface RatingService
Interface for public and internal rating operations.
The RatingService can be used to manage ratings on any content node in the repository.
These ratings are defined by
rating schemes
which are injected via spring (see rating-services-context.xml). The rating
schemes define a minimum and a maximum score value for that scheme.
Ratings can be applied,
updated and
removed.- Since:
- 3.4
- Author:
- Neil McErlean
-
Method Summary
Modifier and TypeMethodDescriptionvoidapplyRating(NodeRef targetNode, float rating, String ratingSchemeName) This method applies the given rating to the specified target node.floatgetAverageRating(NodeRef targetNode, String ratingSchemeName) This method returns the average (mean) rating in the specified scheme for the specified nodeRef.getRatingByCurrentUser(NodeRef targetNode, String ratingSchemeName) This method gets theRatingapplied by the current user to the specified node in the specifiedRatingScheme- if there is one.getRatingRollup(NodeRef targetNode, String ratingSchemeName, String ratingRollupName) This method returns a 'rolled up' property value for the specified targetNode.getRatingsByCurrentUser(NodeRef targetNode) This method gets theratingsapplied by the current user to the specified node.getRatingScheme(String ratingSchemeName) Returns the namedrating schemeif there is one.Returns the availablerating schemeskeyed by name.intgetRatingsCount(NodeRef targetNode, String ratingSchemeName) This method gets the number of individual ratings which have been applied to the specified node in the specifiedRatingScheme.floatgetTotalRating(NodeRef targetNode, String ratingSchemeName) This method gets the total accumulated rating score for the specified node in the specifiedRatingScheme.removeRatingByCurrentUser(NodeRef targetNode, String ratingSchemeName) This method removes anyRatingapplied by the current user to the specified node in the specifiedRatingScheme.
-
Method Details
-
getRatingSchemes
Returns the availablerating schemeskeyed by name.- Returns:
- The
rating schemes.
-
getRatingScheme
Returns the namedrating schemeif there is one.- Parameters:
ratingSchemeName- name of the rating scheme.- Returns:
- The
rating schemesif one of that name is registered, elsenull.
-
applyRating
@NotAuditable void applyRating(NodeRef targetNode, float rating, String ratingSchemeName) throws RatingServiceException This method applies the given rating to the specified target node. If a rating from the current user in the specified scheme already exists, it will be replaced.- Parameters:
targetNode- the node to which the rating is to be applied.rating- the rating which is to be applied.ratingSchemeName- the name of the rating scheme to use.- Throws:
RatingServiceException- if the rating is not within the range defined by the named scheme or if the named scheme is not registered.- See Also:
-
getRatingsCount
This method gets the number of individual ratings which have been applied to the specified node in the specifiedRatingScheme.- Parameters:
targetNode- the node on which the rating is sought.ratingSchemeName- the rating scheme name to use.- Returns:
- the number of individual ratings applied to this node.
- See Also:
-
getTotalRating
This method gets the total accumulated rating score for the specified node in the specifiedRatingScheme. That is, the rating scores for all users for the specified node are summed to give the result.- Parameters:
targetNode- the node on which the rating total is sought.ratingSchemeName- the rating scheme name to use.- Returns:
- the sum of all individual ratings applied to this node in the specified scheme.
- See Also:
-
getAverageRating
This method returns the average (mean) rating in the specified scheme for the specified nodeRef. If there have been no ratings applied, -1 is returned.- Parameters:
targetNode- the node for which an average is sought.ratingSchemeName- the rating scheme name in which the average is defined.- Returns:
- the average (mean) value if there is one, else -1.
-
getRatingByCurrentUser
This method gets theRatingapplied by the current user to the specified node in the specifiedRatingScheme- if there is one.- Parameters:
targetNode- the node on which the rating is sought.ratingSchemeName- the rating scheme name to use.- Returns:
- the Rating object if there is one, else
null. - See Also:
-
getRatingsByCurrentUser
This method gets theratingsapplied by the current user to the specified node.- Parameters:
targetNode- the node on which the ratings are sought.- Returns:
- a List of Rating objects if there are any, else
Collections.emptyList(). - Since:
- 3.5
- See Also:
-
removeRatingByCurrentUser
This method removes anyRatingapplied by the current user to the specified node in the specifiedRatingScheme.- Parameters:
targetNode- the node from which the rating is to be removed.ratingSchemeName- the rating scheme name to use.- Returns:
- the deleted Rating object if there was one, else
null. - See Also:
-
getRatingRollup
@NotAuditable Serializable getRatingRollup(NodeRef targetNode, String ratingSchemeName, String ratingRollupName) This method returns a 'rolled up' property value for the specified targetNode. Examples of rolled up property values are 'ratingTotal', 'ratingCount', but other values can be added. Rolled up properties in the RatingService are stored as properties on the rated node and have their values calculated by running a fixed algorithm on properties stored across thecm:ratingchild nodes. An example of such a roll up would be 'ratingTotal' which would be the sum of all ratings applied to the targetNode in the specified rating scheme. By rolling up property values from the variouscm:ratingchild nodes and persisting them as individual properties on thecm:rateablenode itself, we are able to support indexing, searching and sorting of such properties.- Parameters:
targetNode- the rated node whose rolled up property we wish to read.ratingSchemeName- the rating scheme name in which the property is relevant.ratingRollupName- the name of the rating rollup property, as given inAbstractRatingRollupAlgorithm.getRollupName().- Returns:
- A value for the rolled up property, which will depend of course on the rollup requested.
- Since:
- 3.5
-