Erweiterung:SpamRegex
SpamRegex Freigabestatus: stabil |
|
---|---|
Einbindung | Spezialseite |
Beschreibung | Fügt eine Spezialseite hinzu, um ungewünschte reguläre Ausdrücke herauszufiltern. |
Autor(en) | |
Letzte Version | 1.8 |
MediaWiki | 1.39+ |
Datenbankänderungen | Ja |
Lizenz | GNU General Public License 2.0 oder neuer |
Herunterladen | |
|
|
Quarterly downloads | 6 (Ranked 125th) |
Public wikis using | 1,117 (Ranked 252nd) |
Übersetze die SpamRegex-Erweiterung, wenn sie auf translatewiki.net verfügbar ist | |
Probleme | Offene Aufgaben · Einen Fehler melden |
Die Erweiterung SpamRegex erstellt eine neue Seite namens "Special:SpamRegex", um ungewünschte Links oder Text herauszufiltern. Eine vollständige Liste von aktuell gesperrten Links oder Text kann auch auf dieser Spezialseite angesehen werden. The spamregexed expressions cannot be used in page content, edit summaries or page move summaries, depending on what was chosen by the user who blocked links or text.
Installation
- Die Erweiterung herunterladen und die Datei(en) in ein Verzeichnis namens
SpamRegex
im Ordnerextensions/
ablegen.
Entwickler und Code-Beitragende sollten stattdessen die Erweiterung von Git installieren, mit:cd extensions/
git clone https://gerrit.wikimedia.org/r/mediawiki/extensions/SpamRegex - Folgenden Code am Ende deiner LocalSettings.php -Datei einfügen:
wfLoadExtension( 'SpamRegex' );
- Führe das Aktualisierungsskript aus, welches automatisch die notwendigen Datenbanktabellen erstellt, die diese Erweiterung braucht.
- This extension uses Memcached - please check if Memcached is configured properly in Global/LocalSettings.php .
- Ensure the
spamregex
user right is given to a group that exists; by default this user right is given to thestaff
user group (which does not exist in a default MediaWiki installation).
- Erledigt – Navigiere zu Special:Version in deinem Wiki, um zu überprüfen, ob die Erweiterung erfolgreich installiert wurde.
Verwendung
- Gehe zu "Special:SpamRegex"
- Enter the phrase to be blocked into the "Phrase to block" box
- Supply a reason for blocking the phrase
- Select one or both of the available options: block phrase in page text & block phrase in summary (edit summaries, page move summaries)
- Press the "Block this phrase" button
Interoperability
SpamRegex also supports checking content submitted via the following extensions for spam:
- ArticleFeedbackv5 (AFTv5)
- Comments
- ProblemReports (ShoutWiki )
Note that none of these extensions use the ContentHandler or Content
classes defined in MediaWiki core, for better or for worse.
See the hooked functions in /extensions/SpamRegex/includes/backend/SpamRegexHooks.php
for an idea of how to add support for another custom extension.
The basic idea is simple: get the desired data from SpamRegex (call SpamRegex::fetchRegexData()
with either SpamRegex::TYPE_TEXTBOX
or SpamRegex::TYPE_SUMMARY
as the parameter), ensure that you got something, iterate over the array and use PHP's preg_match()
to detect a match.
In case of a match, signal this to the consumer code by e.g. returning a boolean so that the consumer knows that the submission is spam and should not be saved.