Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prevent Snoonet Bots from triggering ducks #242

Open
wants to merge 393 commits into
base: gonzobot
Choose a base branch
from

Conversation

ctrlshftn
Copy link

Checking for "snoonet/bot/" in the host before incrementing Message Counter or adding the host to the list of unique hosts because all snoonet bots contain this prefix in their vhost. Checking for "/bot/" can also be done to avoid other known bots from triggering a duck.

linuxdaemon and others added 26 commits November 26, 2017 12:48
# Conflicts:
#   plugins/correction.py
Remove old optouts

See merge request snoonet-dev/gonzobot!5
Fix NameError in horoscope.py

See merge request snoonet-dev/gonzobot!6
Checking for "snoonet/bot/" in the host before incrementing Message Counter or adding the host to the list of unique hosts because all snoonet bots contain this prefix in their vhost. Checking for "/bot/" can also be done to avoid other known bots from triggering a duck.
@@ -116,7 +116,7 @@ def incrementMsgCounter(event, conn):
global game_status
if event.chan in opt_out:
return
if game_status[conn.name][event.chan]['game_on'] == 1 and game_status[conn.name][event.chan]['duck_status'] == 0:
if game_status[conn.name][event.chan]['game_on'] == 1 and game_status[conn.name][event.chan]['duck_status'] == 0 and "snoonet/bot/" not in event.host:

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We generally try to avoid network specific code like this, but something like this may work instead:

    # Will return None if the plugin can not be found but doesn't hold a strong reference to it like an import would
    ignore_plugin = event.bot.plugin_manager.find_plugin("ignore")
    if ignore_plugin and ignore_plugin.code.is_ignored(conn.name, event.chan, event.mask.lower()):
        return

@linuxdaemon
Copy link

All PRs for gonzobot should be submitted to snoonetIRC/CloudBot now. This repo has been abandoned for the most part.

nikolas referenced this pull request in nikolas/CloudBot Oct 18, 2018
* Pin versions of dependencies

* Sort requirements file

* Pin test dependency versions
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants