Use JogoBot StatusAPI to check if Bot/Task is active

This commit is contained in:
2016-02-23 13:57:56 +01:00
parent d9d385cfe8
commit d76f914615
2 changed files with 58 additions and 32 deletions

2
.gitignore vendored
View File

@@ -62,3 +62,5 @@ target/
# Test # Test
test.py test.py
disabled

View File

@@ -11,7 +11,7 @@
# #
# modified by: # modified by:
# #
# Copyright 2015 GOLDERWEB Jonathan Golder <jonathan@golderweb.de> # Copyright 2016 GOLDERWEB Jonathan Golder <jonathan@golderweb.de>
# #
# This program is free software; you can redistribute it and/or modify # This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by # it under the terms of the GNU General Public License as published by
@@ -46,6 +46,8 @@ The following parameters are supported:
import locale import locale
import os
import sys
import pywikibot import pywikibot
from pywikibot import pagegenerators from pywikibot import pagegenerators
@@ -199,43 +201,65 @@ def main(*args):
@param args: command line arguments @param args: command line arguments
@type args: list of unicode @type args: list of unicode
""" """
# Process global arguments to determine desired site
local_args = pywikibot.handle_args(args)
# This factory is responsible for processing command line arguments # Get the jogobot-task_slug (basename of current file without ending)
# that are also used by other scripts and that determine on which pages task_slug = os.path.basename(__file__)[:-len(".py")]
# to work on.
genFactory = pagegenerators.GeneratorFactory()
# The generator gives the pages that should be worked upon.
gen = None
# If always is True, bot won't ask for confirmation of edit (automode) # Before run, we need to check wether we are currently active or not
always = False try:
# Will throw Exception if disabled/blocked
jogobot.is_active( task_slug )
# If force_reload is True, bot will always parse Countrylist regardless of except jogobot.jogobot.Blocked:
# parsing is needed or not (type, value, traceback) = sys.exc_info()
force_reload = False jogobot.output( "\03{lightpurple} %s (%s)" % (value, type ),
"CRITICAL" )
# Parse command line arguments except jogobot.jogobot.Disabled:
for arg in local_args: (type, value, traceback) = sys.exc_info()
if arg.startswith("-always"): jogobot.output( "\03{red} %s (%s)" % (value, type ),
always = True "ERROR" )
elif arg.startswith("-force-reload"):
force_reload = True
else:
genFactory.handleArg(arg)
if not gen: # Bot/Task is active
gen = genFactory.getCombinedGenerator()
if gen:
# The preloading generator is responsible for downloading multiple
# pages from the wiki simultaneously.
gen = pagegenerators.PreloadingGenerator(gen)
bot = ChartsBot(gen, always, force_reload)
if bot:
bot.run()
else: else:
pywikibot.showHelp() # Process global arguments to determine desired site
local_args = pywikibot.handle_args(args)
# This factory is responsible for processing command line arguments
# that are also used by other scripts and that determine on which pages
# to work on.
genFactory = pagegenerators.GeneratorFactory()
# The generator gives the pages that should be worked upon.
gen = None
# If always is True, bot won't ask for confirmation of edit (automode)
always = False
# If force_reload is True, bot will always parse Countrylist regardless
# if parsing is needed or not
force_reload = False
# Parse command line arguments
for arg in local_args:
if arg.startswith("-always"):
always = True
elif arg.startswith("-force-reload"):
force_reload = True
else:
pass
genFactory.handleArg(arg)
if not gen:
gen = genFactory.getCombinedGenerator()
if gen:
# The preloading generator is responsible for downloading multiple
# pages from the wiki simultaneously.
gen = pagegenerators.PreloadingGenerator(gen)
bot = ChartsBot(gen, always, force_reload)
if bot:
bot.run()
else:
pywikibot.showHelp()
if( __name__ == "__main__" ): if( __name__ == "__main__" ):
main() main()