自动将文本/内容添加到MediaWiki短页面

时间:2015-09-03 12:03:39

标签: mediawiki wiki mediawiki-extensions

我们在内部运行mediawiki以获取所有文档。我们遇到的问题是一些用户创建了空白页面,因为他们并不真正知道mediawiki是如何工作的,也没有删除权限。

我想要做的是自动添加:

:''此页面是不必要的,因为自创建以来它一直是空白的'' '''除非添加更多内容,否则应将此页面标记为删除。

[[类别:ForDeletion]]

小于84字节(短页面)或空白页面的所有页面。

这是否可以通过简单的方式实现。?

1 个答案:

答案 0 :(得分:1)

这可以通过使用PageContentSave hook来解决。以下是在扩展中执行此操作的简短示例:

<?php
public static function onPageContentSave( WikiPage &$wikiPage, User &$user, Content &$content, &$summary,
    $isMinor, $isWatch, $section, &$flags,  Status&$status
) {
    // check, if the content model is wikitext to avoid adding wikitext to pages, that doesn't handle wikitext (e.g.
    // some JavaScript/JSON/CSS pages)
    if ( $content->getModel() === CONTENT_MODEL_WIKITEXT ) {
        // check the size of the _new_ content
        if ( $content->getSize() <= 84 ) {
            // getNativeData returns the plain wikitext, which this Content object represent..
            $data = $content->getNativeData();
            // ..so it's possible to simply add/remove/replace wikitext like you want
            $data .= ":''This page is unnecessary since it has remained blank since creation'' '''Unless more content is added, this page should be marked for deletion.";
            $data .= "[[Category:ForDeletion]]";
            // the new wikitext ahs to be saved as a new Content object (Content doesn't support to replace/add content by itself)
            $content = new WikitextContent( $data );
        }
    } else {
        // this could be omitted, but would log a debug message to the debug log, if the page couldn't be checked for a smaller edit as 84 bytes.
        // Maybe you want to add some more info (Title and/or content model of the Content object
        wfDebug( 'Could not check for empty or small remaining size after edit. False content model' );
    }
    return true;
}

您需要在扩展程序设置文件中注册此挂钩处理程序:

$wgHooks['PageContentSave'][] = 'ExtensionHooksClass::onPageContentSave';

我希望有所帮助,但请考虑问题,有(可能)页面,没有超过84个字节就可以了,上面的实现现在不允许任何例外;)