1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193
|
<?php
/*
* Gallery - a web based photo album viewer and editor
* Copyright (C) 2000-2005 Bharat Mediratta
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or (at
* your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
* This additional file was created by Joan McGalliard
* http://www.mcgalliard.org
*
* $Id: multi_create_user.php,v 1.19.2.2 2005/04/04 15:26:06 cryptographite Exp $
*/
?>
<?php
require_once(dirname(__FILE__) . '/init.php');
list ($create, $cancel, $dismiss) = getRequestVar(array('create', 'cancel', 'dismiss'));
if (!$gallery->user->isAdmin() || $gallery->app->multiple_create != "yes") {
echo _("You are not allowed to perform this action!");
exit;
}
$errorCount=0;
if (isset($create))
{
doctype();
?>
<html>
<head>
<title><?php echo _("Create Multiple Users") ?></title>
<?php common_header(); ?>
</head>
<body dir="<?php echo $gallery->direction ?>" class="popupbody">
<div class="popuphead"><?php echo _("Create Multiple Users") ?></div>
<div class="popup" align="center">
<?php
if (empty($_FILES['membersfile']['name'])) {
$gErrors["membersfile"] = _("No file selected.");
$errorCount++;
} else {
if (!is_uploaded_file($_FILES['membersfile']['tmp_name'])) {
$gErrors["membersfile"] =
sprintf(_("Upload failed: %s."), $_FILES['membersfile']['name']);
$errorCount++;
}
}
if (!$errorCount) {
$users=@file($_FILES['membersfile']['tmp_name']);
if (sizeof($users) == 0) {
$gErrors["membersfile"] =
sprintf(_("Upload went fine, but the file is not readable, please make sure %s is accessable for your webserver. (Also check openbasedir restrictions.)"),
dirname($_FILES['membersfile']));
$errorCount++;
}
}
if (!$errorCount) {
// Simple test to see if it's a windows file
if (sizeof($users) == 1 and ereg("\r\n", $users[0]))
{
$users=explode("\r\n", $users[0]);
}
unlink($_FILES['membersfile']['tmp_name']);
$total_added=0;
$total_skipped=0;
foreach ($users as $user)
{
set_time_limit($gallery->app->timeLimit);
$user=trim($user);
$uname=strtok($user, ' ');
if ($uname=="")
continue;
$email=strtok(' ');
$fullname=trim(strtok(''));
processingMsg("- ". sprintf (_("adding %s"),$uname));
$password=generate_password(10);
$tmpUser= $gallery->userDB->CreateUser($uname, $email, $password, $fullname,
$canCreate, $defaultLanguage, "bulk_register");
if ($tmpUser) {
$total_added++;
if ($send_email=="on") {
processingMsg("- " . sprintf(_("Send email to %s"),$email));
$msg = ereg_replace("!!PASSWORD!!", $password,
ereg_replace("!!USERNAME!!", $uname,
ereg_replace("!!FULLNAME!!", $fullname,
ereg_replace("!!NEWPASSWORDLINK!!",
$tmpUser->genRecoverPasswordHash(),
welcome_email()))));
$logmsg = sprintf(_("%s has registered by %s. Email has been sent to %s."),
$uname, $gallery->user->getUsername(), $email);
$logmsg2 = sprintf("%s has registered by %s. Email has been sent to %s.",
$uname, $gallery->user->getUsername(), $email);
if ($logmsg != $logmsg2) {
$logmsg .= " <<<<>>>>> $logmsg2";
}
if (!gallery_mail($email, _("Gallery Registration"),$msg, $logmsg)) {
processingMsg(sprintf(_("Problem with email to %s"), $uname));
print "<br>";
} else {
clearstatcache();
$tmpUser->save();
}
}
} else {
$total_skipped++;
}
}
print "<br><br>" .
sprintf(_("%s added, %s skipped"),
pluralize_n2(ngettext("1 user", "%d users", $total_added), $total_added),
pluralize_n2(ngettext("1 user", "%d users", $total_skipped), $total_skipped));
?>
<center><br><br>
<form><input type="submit" name="dismiss" value="<?php echo _("Dismiss") ?>"></form>
<?php
exit;
}
} else if (isset($cancel) || isset($dismiss)) {
header("Location: " . makeGalleryHeaderUrl("manage_users.php"));
} else {
doctype();
}
?>
<html>
<head>
<title><?php echo _("Create Multiple Users") ?></title>
<?php common_header(); ?>
</head>
<body dir="<?php echo $gallery->direction ?>">
<div class="popuphead"><?php echo _("Create Users") ?></div>
<div class="popup" align="center">
<?php echo _("Create multiple new users from a file.") ?>
<p>
<?php
$allowChange["uname"] = false;
$allowChange["email"] = false;
$allowChange["password"] = false;
$allowChange["old_password"] = false;
$allowChange["fullname"] = false;
$allowChange["send_email"] = true;
$allowChange["create_albums"] = true;
$allowChange["default_language"] = true;
$allowChange["member_file"] = true;
echo makeFormIntro("multi_create_user.php", array(
"name" => "usercreate_form",
"enctype" => "multipart/form-data",
"method" => "POST",));
$canCreateChoices = array(1 => _("yes"), 0 => _("no"));
$canCreate = 0;
?>
<input type="hidden" name="MAX_FILE_SIZE" value="10000000">
<?php include(dirname(__FILE__) . '/html/userData.inc'); ?>
<br>
<input type="submit" name="create" value="<?php echo _("Create") ?>">
<input type="submit" name="cancel" value="<?php echo _("Cancel") ?>">
</form>
</center>
<b><?php echo _("Notes:") ?> </b>
<ul>
<li>
<?php echo _("The members file should be one user per line, and the fields should be space separated. Each line is of the form:<br> <i>username emailaddress fullname</i>.<br> Only username is required. Everything after the email address is the full name, so there can be spaces in it.<p>") ?>
<li>
<?php
echo _("The strings !!USERNAME!!, !!FULLNAME!! and !!PASSWORD!! will be substituted in the email with the values from the membership file. An individual email will be sent to each member with a valid email address in the members file (if "send emails" checkbox is ticked).")
?>
<p>
</ul>
</div>
</body>
</html>
|