Class SendMailToContributorCommentListener

java.lang.Object
org.ametys.runtime.plugin.component.AbstractLogEnabled
org.ametys.web.repository.comment.SendMailToContributorCommentListener
All Implemented Interfaces:
Observer, LogEnabled, PluginAware, Contextualizable, Serviceable

Listener to send mails to moderators or observers
  • Field Details

  • Constructor Details

  • Method Details

    • service

      public void service(ServiceManager manager) throws ServiceException
      Specified by:
      service in interface Serviceable
      Throws:
      ServiceException
    • contextualize

      public void contextualize(Context context) throws ContextException
      Specified by:
      contextualize in interface Contextualizable
      Throws:
      ContextException
    • setPluginInfo

      public void setPluginInfo(String pluginName, String featureName, String id)
      Description copied from interface: PluginAware
      Sets the plugin info relative to the current component.
      Note : The feature name may be null if the targeted component in declared at plugin level.
      Specified by:
      setPluginInfo in interface PluginAware
      Parameters:
      pluginName - Unique identifier for the plugin hosting the extension
      featureName - Unique feature identifier (unique for a given pluginName)
      id - Unique identifier of this component
    • getPriority

      public int getPriority(Event event)
      Description copied from interface: Observer
      Retrieves the priority to observe this event.
      This can be used to process a supported event before others observers.
      Specified by:
      getPriority in interface Observer
      Parameters:
      event - the event.
      Returns:
      the priority where 0 the max priority and Integer.MAX_VALUE the min priority.
    • supports

      public boolean supports(Event event)
      Description copied from interface: Observer
      Checks if the event is supported. If true, the observe(Event) method will be called.
      Specified by:
      supports in interface Observer
      Parameters:
      event - the event.
      Returns:
      true for observing this event, false otherwise.
    • observe

      public void observe(Event event, Map<String,Object> transientVars) throws Exception
      Description copied from interface: Observer
      Observes an event.
      Specified by:
      observe in interface Observer
      Parameters:
      event - the event.
      transientVars - transientVars passed from one Observer to another when processing a single Event. This may allow optimizations between observers.
      Throws:
      Exception - if an error occurs. All exceptions will be logged but not propagated, as the observation mechanism should never fail.
    • _sendCommentAddedNotificationMail

      protected void _sendCommentAddedNotificationMail(Content content, Comment comment)
      Send email notification on comment added
      Parameters:
      content - the content
      comment - the added comment
    • _sendCommentValidatedNotificationMail

      protected void _sendCommentValidatedNotificationMail(Content content, Comment comment)
      Send email notification on comment validated
      Parameters:
      content - the content
      comment - the validated comment
    • _sendCommentReportedNotificationMail

      protected void _sendCommentReportedNotificationMail(Content content, Comment comment, UserIdentity issuer)
      Send email notification on comment report
      Parameters:
      content - the content
      comment - the reported comment
      issuer - the issuer
    • _sendMail

      protected void _sendMail(Content content, Comment comment, List<String> recipients, String subjectI18nKey, String bodyI18nKey)
      Send notification on comment to contributor
      Parameters:
      content - the content
      comment - the modified comment
      recipients - the list of recipients
      subjectI18nKey - the i18n for email subject
      bodyI18nKey - the i18n for email body
    • _sendMail

      protected void _sendMail(Content content, Comment comment, List<String> recipients, String subjectI18nKey, String bodyI18nKey, List<String> i18nParams)
      Send notification on comment to contributor
      Parameters:
      content - the content
      comment - the modified comment
      recipients - the list of recipients
      subjectI18nKey - the i18n for email subject
      bodyI18nKey - the i18n for email body
      i18nParams - the i18n parameters
    • _getCommonBodyI18nParams

      protected List<String> _getCommonBodyI18nParams(Content content, Comment comment)
      The comment i18n parameters for email notification
      Parameters:
      content - the content
      comment - the comment
      Returns:
      the i18n parameters
    • _getContentURI

      protected String _getContentURI(Content content)
      Get the content URI in back-office
      Parameters:
      content - the content
      Returns:
      the content uri