No release in over a year
SpamDetection is a detection bot made by OpenSourcePolitics. It works with a spam detection service (https://github.com/OpenSourcePolitics/spam_detection) which marks the user with a spam probability score, between 0.7 and 0.99 it is probable, and above 0.99 it is very sure.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

~> 0.27.0
 Project Readme

Decidim::SpamDetection

codecov Tests Gem Version

Usage

SpamDetection is a detection bot made by OpenSourcePolitics. It works with a spam detection service which marks the user with a spam probability score, between 0.7 and 0.99 it is probable, and above 0.99 it is very sure.

By default, the bot does not blocks the user, it only reports them. All reports and blocks are made like regular Decidim ones.

Installation

Add this line to your application's Gemfile:

gem "decidim-spam_detection"

And then execute:

bundle exec rake decidim:spam_detection:mark_users

if you are using sidekiq scheduler you can use the following configuration:

:queues:
- user_report
- block_user
- scheduled

:schedule:
    DetectSpamUsers:
    cron: '0 0 8 * * *' # Run at 08:00
    class: Decidim::SpamDetection::MarkUsersJob
    queue: scheduled

Further configuration

list of env var, default value and their usage:

ACTIVATE_SPAM_DETECTION_SERVICE:
    default: false
    usage: Activate the spam detection service if api url is set to default one
SPAM_DETECTION_API_AUTH_TOKEN
    default_value: dummy
    usage: Token auth for authentication used by external service, ask us for more details
SPAM_DETECTION_API_URL 
    default_value: "http://localhost:8080/api"
    usage: URL of the external service
SPAM_DETECTION_NAME 
    default_value: "spam detection bot"
    usage: Name used by the spam detection bot
SPAM_DETECTION_NICKNAME 
    default_value: "Spam_detection_bot"
    usage: Nickname used by the spam detection bot
SPAM_DETECTION_EMAIL 
    default_value: "spam_detection_bot@opensourcepolitcs.eu"
    usage: Email used by the spam detection bot
PERFORM_BLOCK_USER 
    default_value: false
    usage: Determine if the bot can perform blocking, default mode is just report

API usage

We can provide the detection service, please check us out at contact@opensourcepolitics.eu

Contributing

See Decidim.

License

This engine is distributed under the GNU AFFERO GENERAL PUBLIC LICENSE.