-
Couldn't load subscription status.
- Fork 31
Prevent Snoonet Bots from triggering ducks #242
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
base: gonzobot
Are you sure you want to change the base?
Conversation
# 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.
| 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: |
There was a problem hiding this comment.
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|
All PRs for gonzobot should be submitted to snoonetIRC/CloudBot now. This repo has been abandoned for the most part. |
* Pin versions of dependencies * Sort requirements file * Pin test dependency versions
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.