a31a37e100
"admin console Sysadmin - find domain - lists 2 tables - one for user accounts, one for org accounts, naming issue"
111 lines
4.1 KiB
PHP
111 lines
4.1 KiB
PHP
<? /*
|
|
LibreSSL - CAcert web application
|
|
Copyright (C) 2004-2008 CAcert Inc.
|
|
|
|
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; version 2 of the License.
|
|
|
|
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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*/ ?>
|
|
<?
|
|
$userid=0; if(array_key_exists('userid',$_GET)) $userid=intval($_GET['userid']);
|
|
if($userid <= 0)
|
|
{
|
|
$domainsearch = $domain = mysql_escape_string(stripslashes($_POST['domain']));
|
|
if(!strstr($domain, "%"))
|
|
$domainsearch = "%$domain%";
|
|
if(preg_match("/^\d+$/",$domain))
|
|
$domainsearch = "";
|
|
$query = "select `users`.`id` as `id`, `domains`.`domain` as `domain`, `domains`.`id`as `domid` from `users`,`domains`
|
|
where `users`.`id`=`domains`.`memid` and
|
|
(`domains`.`domain` like '$domainsearch' or `domains`.`id`='$domain') and
|
|
`domains`.`deleted`=0 and `users`.`deleted`=0 and
|
|
`users`.`verified`=1
|
|
group by `users`.`id` limit 100";
|
|
$res = mysql_query($query);
|
|
if(mysql_num_rows($res) >= 1) { ?>
|
|
<table align="center" valign="middle" border="0" cellspacing="0" cellpadding="0" class="wrapper">
|
|
<tr>
|
|
<td colspan="5" class="title"><?=_("Select Specific User Account Details")?></td>
|
|
</tr>
|
|
<?
|
|
while($row = mysql_fetch_assoc($res))
|
|
{ ?>
|
|
<tr>
|
|
<td class="DataTD"><?=_("Domain")?>:</td>
|
|
<td class="DataTD"><?=$row['domid']?></td>
|
|
<td class="DataTD"><a href="account.php?id=43&userid=<?=$row['id']?>"><?=sanitizeHTML($row['domain'])?></a></td>
|
|
</tr>
|
|
<? } if(mysql_num_rows($res) >= 100) { ?>
|
|
<tr>
|
|
<td class="DataTD" colspan="3"><?=_("Only the first 100 rows are displayed.")?></td>
|
|
</tr>
|
|
<? } else { ?>
|
|
<tr>
|
|
<td class="DataTD" colspan="3"><? printf(_("%s rows displayed."), mysql_num_rows($res)); ?></td>
|
|
</tr>
|
|
<? } ?>
|
|
</table><br><br>
|
|
<? } elseif(mysql_num_rows($res) == 1) {
|
|
$row = mysql_fetch_assoc($res);
|
|
$_GET['userid'] = intval($row['id']);
|
|
} else {
|
|
?><table align="center" valign="middle" border="0" cellspacing="0" cellpadding="0" class="wrapper">
|
|
<tr>
|
|
<td colspan="5" class="title"><?printf(_("No personal domains found matching %s"), sanitizeHTML($domain));?></td>
|
|
</tr>
|
|
</table><br><br><?
|
|
}
|
|
|
|
$query = "select `orgid`,`domain`,`id` from `orgdomains` where `domain` like '$domainsearch' or `id`='$domain' limit 100";
|
|
$res = mysql_query($query);
|
|
if(mysql_num_rows($res) >= 1) { ?>
|
|
<table align="center" valign="middle" border="0" cellspacing="0" cellpadding="0" class="wrapper">
|
|
<tr>
|
|
<td colspan="5" class="title"><?=_("Select Specific Organisation Account Details")?></td>
|
|
</tr>
|
|
<?
|
|
while($row = mysql_fetch_assoc($res))
|
|
{ ?>
|
|
<tr>
|
|
<td class="DataTD"><?=_("Domain")?>:</td>
|
|
<td class="DataTD"><?=$row['id']?></td>
|
|
<td class="DataTD"><a href="account.php?id=26&orgid=<?=intval($row['orgid'])?>"><?=sanitizeHTML($row['domain'])?></a></td>
|
|
</tr>
|
|
<? } if(mysql_num_rows($res) >= 100) { ?>
|
|
<tr>
|
|
<td class="DataTD" colspan="3"><?=_("Only the first 100 rows are displayed.")?></td>
|
|
</tr>
|
|
<? } else { ?>
|
|
<tr>
|
|
<td class="DataTD" colspan="3"><? printf(_("%s rows displayed."), mysql_num_rows($res)); ?></td>
|
|
</tr>
|
|
<? } ?>
|
|
</table><br><br>
|
|
<? } elseif(mysql_num_rows($res) == 1) {
|
|
$row = mysql_fetch_assoc($res);
|
|
$_GET['userid'] = intval($row['id']);
|
|
} else {
|
|
?><table align="center" valign="middle" border="0" cellspacing="0" cellpadding="0" class="wrapper">
|
|
<tr>
|
|
<td colspan="5" class="title"><?printf(_("No organisational domains found matching %s"), sanitizeHTML($domain));?></td>
|
|
</tr>
|
|
</table><br><br><?
|
|
}
|
|
}
|
|
|
|
if($userid > 0)
|
|
{
|
|
header("location: account.php?id=43&userid=".intval($_GET['userid']));
|
|
exit;
|
|
}
|
|
?>
|
|
|