用于将用户添加到MediaWiki的脚本

时间:2009-05-29 23:56:56

标签: php mediawiki

我正在尝试编写一个将在MediaWiki中创建用户的脚本,以便我可以运行批处理作业来导入一系列用户。

我正在使用mediawiki-1.12.0。

我从一个论坛得到了这个代码,但看起来它不适用于1.12(它是1.13)

$name = 'Username'; #Username (MUST start with a capital letter)
$pass = 'password'; #Password (plaintext, will be hashed later down)
$email = 'email';   #Email (automatically gets confirmed after the creation process)
$path = "/path/to/mediawiki";
putenv( "MW_INSTALL_PATH={$path}" );
require_once( "{$path}/includes/WebStart.php" );
$pass = User::crypt( $pass );
$user = User::createNew( $name, array( 'password' => $pass, 'email' => $email ) );
$user->confirmEmail();
$user->saveSettings();  
$ssUpdate = new SiteStatsUpdate( 0, 0, 0, 0, 1 );
$ssUpdate->doUpdate();

谢谢!

2 个答案:

答案 0 :(得分:5)

createAndPromote中有一个maintenance/脚本,用于创建用户帐户并授予管理员权限。您可以对此进行调整以删除权限部分。

或者,您可以查看ImportUsers扩展程序。

答案 1 :(得分:3)

我在Mediawiki 1.7上使用过它,它对我来说效果很好:

#!/usr/bin/php
## Add a user to Mediawiki

<?php

    $domain = 'example.com';
    $mwpath = '/docs/www-wiki';

    if ($argc < 3) {
        die("Missing arguments.\n"
           ."Usage: $0 USER PASSWORD\n");
    }
    $user = $argv[1];
    $pass = $argv[2];

    print "Add user $user with password $pass [y/N]?\n";
    $ans = fgets(STDIN,256);
    if (!  preg_match('/^[yY]/', $ans) ) {
        print "Canceled.\n";
        exit;
    }

    $user = ucfirst(strtolower($user)); // maybe unneeded, because handled in MW functions?


    # Adapted from http://www.mwusers.com/forums/showthread.php?9788-Create-new-user-in-database&p=42931&viewfull=1#post42931

    $path = $mwpath;
    putenv("MW_INSTALL_PATH={$path}");

    #require_once ("{$path}/includes/WebStart.php"); // for version >= 1.14 ?

    # My version 1.7 doesn't have WebStart.php.
    # It seems to work by including the following lines found in index.php
    # Some are probably not needed, but I don't want to do more testing
    define( 'MEDIAWIKI', true );
    require_once( './includes/Defines.php' );
    require_once( './LocalSettings.php' );
    require_once( 'includes/Setup.php' );
    require_once( "includes/Wiki.php" );
    $mediaWiki = new MediaWiki();


    $mwuser=User::newFromName($user);

    if (! is_object($mwuser)) {
        die("Invalid user!\n");
    }

    $mwuser->addToDatabase(); // don't we need a return value to check?
    $mwuser->setPassword( $pass );
    $mwuser->setEmail( strtolower($user) . '@' . $domain );
    $mwuser->confirmEmail();

    #$mwuser->setRealName( $_POST["nome"] );
    #$mwuser->addGroup($_POST["grupo"]);

    $mwuser->saveSettings(); // no return value?
    $ssUpdate = new SiteStatsUpdate( 0, 0, 0, 0, 1 );
    $ssUpdate->doUpdate();
?>

我猜你的问题也是在你的脚本中使用了WebStart.php,这在你的Mediawiki版本中是不存在的。