/usr/lib/python2.7/dist-packages/gplugs/grab.py is in gozerbot 0.99.1-5.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 | # plugs/grab.py
""" quotes grab plugin """
__copyright__ = 'this file is in the public domain'
__depend__ = ['quote', ]
from gozerbot.config import config
from gozerbot.commands import cmnds
from gozerbot.examples import examples
from gozerbot.aliases import aliases
from gozerbot.plughelp import plughelp
if config.get('db_driver') == "olddb": from gplugs.olddb.quote import quotes
else: from gplugs.alchemy.quote import quotes
from gozerbot.tests import tests
plughelp.add('grab', 'grab the last quote of an user')
def handle_quotegrab(bot, ievent):
""" grab the last last from the given user """
try:
from gplugs.seen import seen
assert(seen)
except (ImportError, AssertionError, NameError):
ievent.reply("seen plugin not enabled")
return
if not quotes:
ievent.reply('quotes plugin not enabled')
return
if not ievent.args:
ievent.reply('missing <user> argument')
return
nick = ievent.args[0].lower()
if not seen.data.has_key(nick):
ievent.reply('nothing said by %s recently' % nick)
return
idnr = quotes.add(nick, ievent.userhost, seen.data[nick]['text'])
ievent.reply('grabbed %s from %s' % (idnr, nick))
cmnds.add('quote-grab', handle_quotegrab, ['USER', 'QUOTEADD'], allowqueue=False)
examples.add('quote-grab', 'quote-grab <user> .. add quote', 'quote-grab mekker')
aliases.data['grab'] = 'quote-grab'
tests.add('quote-grab')
|