保护 MediaWiki 中的类别分配

问题描述 投票:0回答:3

是否可以保护特定类别,以便例如未经特定许可,类别“category1”不能分配给文章吗?

php permissions categories mediawiki wiki
3个回答
1
投票

我相信您可以检查该类别是否已添加到

ArticleSave
挂钩中的页面,如果用户没有所需的权限,则发出错误。

编辑:沿着这些思路的东西(快速而肮脏):

$wgForbiddenCats = array( 'Forbidden' => 'sysop' );

$wgHooks['ArticleSave'][] = 'checkForbiddenCats';
function checkForbiddenCats( $article, $user, $text, $summary, $minor,
    $_, $_, $flags, $status )
{
    global $wgForbiddenCats, $wgParser;

    // Firstly, get categories in the new text
    $parser_output = $wgParser->parse( $text, $article->getTitle(),
        $article->getParserOptions() );
    $new_cats = array_keys( $parser_output->getCategories() );

    // For now, the only added categories are the ones in the submitted text
    $added_cats = $new_cats;

    // If the page already exists, it can have some categories already
    if( !( $flags & EDIT_NEW ) ) {
        $dbr = wfGetDB( DB_SLAVE );
        $query_result = $dbr->select(
            'categorylinks',
            'cl_to',
            array( 'cl_from' => $article->getID() ) );

        $old_cats = array();
        while( $row = $query_result->fetchRow() )
            $old_cats[] = $row[0];
        $dbr->freeResult( $query_result );

        $added_cats = array_diff( $new_cats, $old_cats );
    }

    $user_groups = $user->getGroups();
    foreach( $wgForbiddenCats as $category => $group ) {
        if( array_search( $category, $added_cats ) !== false &&
            array_search( $group, $user_groups ) === false )
        {
            $status->fatal( 'forbidden-cat' );
            return false;
        }
    }

    return true;
}

0
投票

对于您想要的东西可能有点过头了,但我认为您可以使用SimpleSecurity来实现这一点,但它也可能确保未经许可的人也无法查看该类别。


0
投票

不太可能,因为添加类别就像添加一些文本一样简单,所以这不是默认安装或我能找到的扩展程序可以限制的操作。

我想如果您没有添加该类别的权限,可以编写和扩展来删除文本。

© www.soinside.com 2019 - 2024. All rights reserved.