Initial commit

This commit is contained in:
mogad0n 2021-01-29 15:00:59 +05:30
commit 96a847825c
No known key found for this signature in database
GPG Key ID: 13851DB523F8CE74
7 changed files with 126 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
venv

1
README.md Normal file
View File

@ -0,0 +1 @@
An oragonoIRCd specific toolkit for IRCops

48
__init__.py Normal file
View File

@ -0,0 +1,48 @@
###
# Copyright (c) 2021, mogad0n
# All rights reserved.
#
#
###
"""
OraServ: An oragonoIRCd specific toolkit for IRCops
"""
import sys
import supybot
from supybot import world
# Use this for the version of this plugin.
__version__ = ""
# XXX Replace this with an appropriate author or supybot.Author instance.
__author__ = supybot.authors.unknown
# This is a dictionary mapping supybot.Author instances to lists of
# contributions.
__contributors__ = {}
# This is a url where the most recent plugin package can be downloaded.
__url__ = ''
from . import config
from . import plugin
if sys.version_info >= (3, 4):
from importlib import reload
else:
from imp import reload
# In case we're being reloaded.
reload(config)
reload(plugin)
# Add more reloads here if you add third-party modules and want them to be
# reloaded when this plugin is reloaded. Don't forget to import them as well!
if world.testing:
from . import test
Class = plugin.Class
configure = config.configure
# vim:set shiftwidth=4 tabstop=4 expandtab textwidth=79:

33
config.py Normal file
View File

@ -0,0 +1,33 @@
###
# Copyright (c) 2021, mogad0n
# All rights reserved.
#
#
###
from supybot import conf, registry
try:
from supybot.i18n import PluginInternationalization
_ = PluginInternationalization('OraServ')
except:
# Placeholder that allows to run the plugin on a bot
# without the i18n module
_ = lambda x: x
def configure(advanced):
# This will be called by supybot to configure this module. advanced is
# a bool that specifies whether the user identified themself as an advanced
# user or not. You should effect your configuration by manipulating the
# registry as appropriate.
from supybot.questions import expect, anything, something, yn
conf.registerPlugin('OraServ', True)
OraServ = conf.registerPlugin('OraServ')
# This is where your configuration variables (if any) should go. For example:
# conf.registerGlobalValue(OraServ, 'someConfigVariableName',
# registry.Boolean(False, _("""Help for someConfigVariableName.""")))
# vim:set shiftwidth=4 tabstop=4 expandtab textwidth=79:

1
local/__init__.py Normal file
View File

@ -0,0 +1 @@
# Stub so local is a module, used for third-party modules

27
plugin.py Normal file
View File

@ -0,0 +1,27 @@
###
# Copyright (c) 2021, mogad0n
# All rights reserved.
#
#
###
from supybot import utils, plugins, ircutils, callbacks
from supybot.commands import *
try:
from supybot.i18n import PluginInternationalization
_ = PluginInternationalization('OraServ')
except ImportError:
# Placeholder that allows to run the plugin on a bot
# without the i18n module
_ = lambda x: x
class OraServ(callbacks.Plugin):
"""An oragonoIRCd specific toolkit for IRCops"""
threaded = True
Class = OraServ
# vim:set shiftwidth=4 softtabstop=4 expandtab textwidth=79:

15
test.py Normal file
View File

@ -0,0 +1,15 @@
###
# Copyright (c) 2021, mogad0n
# All rights reserved.
#
#
###
from supybot.test import *
class OraServTestCase(PluginTestCase):
plugins = ('OraServ',)
# vim:set shiftwidth=4 tabstop=4 expandtab textwidth=79: