Skip to main content

Feedback mechanism integration for io-comune

Project description

Latest Version Egg Status Supported - Python Versions License

collective.feedback

Feedback mechanism integration for volto.

Users can add vote and a comment to every page on the site.

Bot protection

This product use collective.honeypot to prevent bot submissions.

You just need to set two environment variables:

  • EXTRA_PROTECTED_ACTIONS feedback-add

  • HONEYPOT_FIELD xxx

xxx should be a field name that bot should compile.

If you get hacked, you could simply change that variable.

Permissions

There are two new specific permission:

  • collective.feedback.ManageFeedbacks (collective.feedback: Manage Feedbacks) Allows to reset data (by default Manager and Site Administrator).

  • collective.feedback.AccessFeedbacks (collective.feedback: Access Feedbacks) Allows users to list feedbacks on contents where they have that permission (by default Editor, Manager and Site Administrator)

Feedbacks catalog

Reviews are stored inside an internal catalog (based on souper.plone).

You can access/edit data through restapi routes (see below) or through a Plone utility:

from zope.component import getUtility
from collective.feedback.interfaces import ICollectiveFeedbackStore

tool = getUtility(ICollectiveFeedbackStore)

Add a vote

  • Method add

  • Parameters: data (dictionary with parameters)

  • Response: unique-id of new record

data should be a dictionary with the following parameters:

  • uid [required]: the uid of the Plone content

  • vote [required]: the vote

  • answer: a custom string, like a comment

  • title: the title of the Plone content

  • comment: an optional comment

Others parameters will be ignored.

Search reviews

  • Method search

  • Parameters: query (dictionary with parameters), sort_index (default=date), reverse (default=False)

  • Response: a list of results

query is a dictionary of indexes where perform the search.

Right now data is not indexed so search filters does not work. You only need to call search method to get all data.

Installation

Install collective.feedback by adding it to your buildout:

[buildout]

...

eggs =
    collective.feedback

and then running bin/buildout

Contribute

Compatibility

This product has been tested on Plone 6

Authors

This product was developed by RedTurtle Technology team.

RedTurtle Technology Site

Contributors

Changelog

1.1.3 (2024-04-29)

  • add a plone2volto url conversion method on feedback download [lucabel]

1.1.2 (2024-03-15)

  • Fix typo in actions.xml permission. [cekk]

1.1.1 (2024-03-13)

  • re-add actions.xml file to have a user-action needed on Volto. [cekk]

1.1.0 (2024-03-12)

  • Only managers can access deleted feedbacks. [cekk]

  • Allow all authenticated users to access @feedback endpoint. The endpoint will return only feedbacks on objects that they can edit. [cekk]

  • Improve tests. [cekk]

  • Install souper.plone to have its control-panel in backend. [cekk]

  • Remove unused user action. [cekk]

  • Add actions infos in @feedback endpoint, to let the frontend know what the user can do. [cekk]

1.0.0 (2023-02-16)

  • Initial release. [eikichi18]

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

collective.feedback-1.1.3.tar.gz (30.1 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page