Selaa lähdekoodia

Beginning Page.check_exclusion()

tags/v0.1^2
Ben Kurtovic 12 vuotta sitten
vanhempi
commit
a4fca2998f
2 muutettua tiedostoa jossa 39 lisäystä ja 0 poistoa
  1. +3
    -0
      docs/toolset.rst
  2. +36
    -0
      earwigbot/wiki/page.py

+ 3
- 0
docs/toolset.rst Näytä tiedosto

@@ -164,6 +164,9 @@ and the following methods:
<earwigbot.wiki.copyvios.CopyvioMixIn.copyvio_compare>`: checks the page like
:py:meth:`~earwigbot.wiki.copyvios.CopyvioMixIn.copyvio_check`, but
against a specific URL
- :py:meth:`check_exclusion(username=None, optouts=None)
<earwigbot.wiki.page.Page.check_exclusion>`: checks whether or not we are
allowed to edit the page per ``{{bots}}``/``{{nobots}}``

Additionally, :py:class:`~earwigbot.wiki.category.Category` objects (created
with :py:meth:`site.get_category(name) <earwigbot.wiki.site.Site.get_category>`


+ 36
- 0
earwigbot/wiki/page.py Näytä tiedosto

@@ -68,6 +68,8 @@ class Page(CopyrightMixIn):
- :py:meth:`parse`: parses the page content for templates, links, etc
- :py:meth:`edit`: replaces the page's content or creates a new page
- :py:meth:`add_section`: adds a new section at the bottom of the page
- :py:meth:`check_exclusion`: checks whether or not we are allowed to edit
the page, per ``{{bots}}``/``{{nobots}}``

- :py:meth:`~earwigbot.wiki.copyvios.CopyrightMixIn.copyvio_check`:
checks the page for copyright violations
@@ -723,3 +725,37 @@ class Page(CopyrightMixIn):
"""
self._edit(text=text, summary=title, minor=minor, bot=bot, force=force,
section="new")

def check_exclusion(self, username=None, optouts=None):
"""Check whether or not we are allowed to edit the page.

Return ``True`` if we *are* allowed to edit this page, or ``False`` if
we aren't.

*username* is used to determine whether we are part of a specific list
of allowed or disallowed bots (e.g. ``{{bots|allow=EarwigBot}}`` or
``{{bots|deny=FooBot,EarwigBot}}``). It's ``None`` by default, which
will swipe our username from :py:meth:`site.get_user()
<earwigbot.wiki.site.Site.get_user>`.\
:py:attr:`~earwigbot.wiki.user.User.name`.

*optouts* is a list of messages to consider this check as part of for
the purpose of opt-out; it defaults to ``None``, which ignores the
parameter completely. For example, if *optouts* is ``["nolicense"]``,
we'll return ``False`` on ``{{bots|optout=nolicense}}`` or
``{{bots|optout=all}}``, but `True` on
``{{bots|optout=orfud,norationale,replaceable}}``.
"""
re_bots = "\{\{(no)?bots(\||\}\})"
filter = self.parse().filter_templates(matches=re_bots, recursive=True)
for template in filter:
if template.get("deny", None):
pass
if template.get("allow", None):
pass
if template.get("optout", None):
pass
if template.name.matches("nobots"):
return False
if template.name.matches("bots"):
return True

Ladataan…
Peruuta
Tallenna