gplugs.away

keep away messages

gplugs.away.awaytest(bot, ievent)

test if away callback should be called

gplugs.away.backtest(bot, ievent)

test if we should say hello

gplugs.away.doaway(bot, ievent)

away callback

gplugs.away.doback(bot, ievent)

say hello

gplugs.away.handle_awaydisable(bot, ievent)

away-disable .. disable away

gplugs.away.handle_awayenable(bot, ievent)

away-enable .. enable away

gplugs.away.init()

init plugin

CODE

# gplugs/away.py
#
#

""" keep away messages """

__status__ = "seen"

gozerbot imports

from gozerbot.generic import rlog
from gozerbot.commands import cmnds
from gozerbot.examples import examples
from gozerbot.callbacks import callbacks
from gozerbot.users import users
from gozerbot.plugins import plugins
from gozerbot.datadir import datadir
from gozerbot.persist.persist import PlugPersist
from gozerbot.plughelp import plughelp
from gozerbot.tests import tests

basic imports

import time
import os

plughelp

plughelp.add('away', "keep notice of who's away")

defines

lasttime = []
awaydict = PlugPersist('away.data')

if not awaydict.data: awaydict.data = {}
if not awaydict.data.has_key('enable'):
    awaydict.data['enable'] = 0
    awaydict.save()

init function

def init():
    """ init plugin """
    if not awaydict.data['enable']: rlog(10, 'away', 'away is disabled') ; return 1
    else: rlog(10, 'away', 'away is enabled')
    callbacks.add('PRIVMSG', doaway, awaytest)
    callbacks.add('PRIVMSG', doback, backtest)
    return 1

awaytest precondition

def awaytest(bot, ievent):
    """ test if away callback should be called """
    if (len(ievent.txt) > 1 and ievent.txt[-1] == '\001' and ievent.txt[-2] == '&' ) or ievent.txt.strip() == '&':
        return 1

doaway callback

def doaway(bot, ievent):
    """ away callback """
    if not users.allowed(ievent.userhost, 'USER'): return
    name = users.getname(ievent.userhost)
    if not name: return
    if awaydict.data.has_key((name, bot.name, ievent.channel)): return
    ievent.reply("ltrs %s" % ievent.nick)
    awaydict.data[(name, bot.name, ievent.channel)] = time.time()
    awaydict.save()

backtest precondition

def backtest(bot, ievent):
    """ test if we should say hello """
    if 'back' == ievent.txt.strip() or 're' == ievent.txt.strip(): return 1

doback callback

def doback(bot, ievent):
    """ say hello """
    if not users.allowed(ievent.userhost, 'USER'): return
    name = users.getname(ievent.userhost)
    if not name: return
    if not awaydict.data.has_key((name, bot.name, ievent.channel)): return
    ievent.reply("welcome back %s" % ievent.nick)
    try:
        del awaydict.data[(name, bot.name, ievent.channel)]
        awaydict.save()
    except KeyError: pass

away-enable command

def handle_awayenable(bot, ievent):
    """ away-enable .. enable away """
    awaydict.data['enable'] = 1
    awaydict.save()
    plugins.reload('gplugs', 'away')
    ievent.reply('away enabled')

cmnds.add('away-enable', handle_awayenable, 'OPER', threaded=True)
examples.add('away-enable' , 'enable the away plugin', 'away-enable')

away-disable command

def handle_awaydisable(bot, ievent):
    """ away-disable .. disable away """
    awaydict.data['enable'] = 0
    awaydict.save()
    plugins.reload('gplugs', 'away')
    ievent.reply('away disabled')

cmnds.add('away-disable', handle_awaydisable, 'OPER')
examples.add('away-disable', 'disable the away plugin', 'away-disable')
tests.add('away-enable --chan #dunkbots', 'enabled').fakein(':dunker!mekker@127.0.0.1 PRIVMSG #dunkbots :&').fakein(':dunker!mekker@127.0.0.1 PRIVMSG #dunkbots :re').add('away-disable --chan #dunkbots', 'disabled')