2003-03-17 22:37:49 +00:00
|
|
|
<?php
|
2005-12-04 23:39:09 +00:00
|
|
|
// show all the hosts for a user.
|
|
|
|
// if $userid is absent, show hosts of logged-in user
|
2003-03-19 21:01:32 +00:00
|
|
|
|
2005-12-04 23:39:09 +00:00
|
|
|
require_once("../inc/db.inc");
|
|
|
|
require_once("../inc/util.inc");
|
|
|
|
require_once("../inc/host.inc");
|
|
|
|
require_once("../inc/cache.inc");
|
2003-03-17 22:37:49 +00:00
|
|
|
|
2006-02-20 19:11:51 +00:00
|
|
|
function more_or_less($show_all) {
|
|
|
|
if ($show_all) {
|
2007-05-30 20:30:28 +00:00
|
|
|
echo "<p>Show: All hosts | ".link_with_GET_variables("Only hosts active in past 30 days<p>", "hosts_user.php", 'show_all', '0');
|
2006-02-20 19:11:51 +00:00
|
|
|
} else {
|
2007-05-30 20:30:28 +00:00
|
|
|
echo "<p>Show: ".link_with_GET_variables("All hosts", "hosts_user.php", 'show_all', '1')." | Only hosts active in past 30 days<p>";;
|
2006-02-20 19:11:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// The following is used to show a user's hosts
|
|
|
|
//
|
|
|
|
function user_host_table_start($private) {
|
|
|
|
start_table();
|
|
|
|
echo "<tr>";
|
|
|
|
echo "<th>".link_with_GET_variables("Computer ID", "hosts_user.php", 'sort', 'id')."<br><font size=-2>Click for more info</font></th>\n";
|
|
|
|
if ($private) {
|
|
|
|
echo "<th>".link_with_GET_variables("Name", "hosts_user.php", 'sort', 'name')."</th>\n
|
|
|
|
";
|
|
|
|
} else {
|
|
|
|
echo "<th>Rank</th>";
|
|
|
|
}
|
|
|
|
echo "
|
|
|
|
<th>".link_with_GET_variables("Recent average credit", "hosts_user.php", 'sort', 'expavg_credit')."</th>
|
|
|
|
<th>".link_with_GET_variables("Total credit", "hosts_user.php", 'sort', 'total_credit')."</th>
|
|
|
|
<th>".link_with_GET_variables("CPU type", "hosts_user.php", 'sort', 'cpu')."</th>
|
|
|
|
<th>".link_with_GET_variables("Operating system", "hosts_user.php", 'sort', 'os')."</th>
|
|
|
|
";
|
|
|
|
$config = get_config();
|
|
|
|
if (parse_bool($config, "show_results")) echo "<th>Results</th>";
|
|
|
|
echo "<th>".link_with_GET_variables("Last contact", "hosts_user.php", 'sort', 'rpc_time')."</th>";
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-12-04 23:39:09 +00:00
|
|
|
db_init();
|
2006-02-22 06:19:54 +00:00
|
|
|
|
|
|
|
// get the _GET variables which determine how to display the page
|
|
|
|
//
|
2005-12-04 23:39:09 +00:00
|
|
|
$show_all = get_int("show_all", true);
|
2006-02-27 20:49:22 +00:00
|
|
|
if ($show_all != 1) {
|
|
|
|
// default value -- show last 30 days
|
|
|
|
$show_all = 0;
|
|
|
|
$_GET['show_all'] = 0;
|
|
|
|
}
|
|
|
|
|
2006-02-22 06:19:54 +00:00
|
|
|
$sort = get_str("sort", true);
|
2006-02-27 20:49:22 +00:00
|
|
|
if ($sort == "total_credit") $sort_clause = "total_credit desc";
|
|
|
|
else if ($sort == "total_credit_reversed") $sort_clause = "total_credit";
|
|
|
|
else if ($sort == "expavg_credit") $sort_clause = "expavg_credit desc";
|
|
|
|
else if ($sort == "expavg_credit_reversed") $sort_clause = "expavg_credit";
|
|
|
|
else if ($sort == "name") $sort_clause = "domain_name";
|
|
|
|
else if ($sort == "name_reversed") $sort_clause = "domain_name desc";
|
|
|
|
else if ($sort == "id") $sort_clause = "id";
|
|
|
|
else if ($sort == "id_reversed") $sort_clause = "id desc";
|
|
|
|
else if ($sort == "expavg_credit") $sort_clause = "expavg_credit desc";
|
|
|
|
else if ($sort == "expavg_credit_reversed") $sort_clause = "expavg_credit ";
|
|
|
|
else if ($sort == "cpu") $sort_clause = "p_model";
|
|
|
|
else if ($sort == "cpu_reversed") $sort_clause = "p_model desc";
|
|
|
|
else if ($sort == "os") $sort_clause = "os_name, os_version";
|
|
|
|
else if ($sort == "os_reversed") $sort_clause = "os_name desc, os_version";
|
|
|
|
else if ($sort == "rpc_time_reversed") $sort_clause = "rpc_time";
|
|
|
|
else {
|
|
|
|
// default value -- sort by RPC time
|
|
|
|
$sort = "rpc_time";
|
|
|
|
$sort_clause = "rpc_time desc";
|
|
|
|
$_GET['sort']=$sort;
|
|
|
|
}
|
2005-12-04 23:39:09 +00:00
|
|
|
|
|
|
|
$user = get_logged_in_user(false);
|
2006-02-27 20:49:22 +00:00
|
|
|
$userid = get_int("userid", true);
|
|
|
|
|
2005-12-04 23:39:09 +00:00
|
|
|
if ($user && $user->id == $userid) {
|
|
|
|
$userid = 0;
|
|
|
|
}
|
|
|
|
if ($userid) {
|
|
|
|
$user = lookup_user_id($userid);
|
|
|
|
if (!$user) {
|
|
|
|
error_page("No such user");
|
2005-07-20 12:49:45 +00:00
|
|
|
}
|
2005-12-04 23:39:09 +00:00
|
|
|
$caching=true;
|
2006-02-27 20:49:22 +00:00
|
|
|
// At this point, we know that (1) $userid, $show_all and $sort all have
|
|
|
|
// valid values.
|
2006-02-22 06:19:54 +00:00
|
|
|
$cache_args="userid=$userid&show_all=$show_all&sort=$sort";
|
2005-12-04 23:39:09 +00:00
|
|
|
start_cache(USER_PAGE_TTL, $cache_args);
|
|
|
|
if ($user->show_hosts) {
|
|
|
|
page_head("Computers belonging to $user->name");
|
2006-02-20 19:11:51 +00:00
|
|
|
more_or_less($show_all);
|
2005-12-04 23:39:09 +00:00
|
|
|
user_host_table_start(false);
|
2003-03-19 21:01:32 +00:00
|
|
|
} else {
|
2005-12-04 23:39:09 +00:00
|
|
|
page_head("Computers hidden");
|
|
|
|
echo "This user has chosen not to show information about their computers.\n";
|
|
|
|
page_tail();
|
|
|
|
end_cache(USER_PAGE_TTL, $cache_args);
|
|
|
|
exit();
|
2003-03-19 21:01:32 +00:00
|
|
|
}
|
2005-12-04 23:39:09 +00:00
|
|
|
$private = false;
|
|
|
|
} else {
|
2005-12-21 22:59:21 +00:00
|
|
|
$user = get_logged_in_user();
|
2005-12-04 23:39:09 +00:00
|
|
|
$caching=false;
|
|
|
|
$userid = $user->id;
|
|
|
|
page_head("Your computers");
|
2006-02-20 19:11:51 +00:00
|
|
|
more_or_less($show_all);
|
2005-12-04 23:39:09 +00:00
|
|
|
user_host_table_start(true);
|
|
|
|
$private = true;
|
|
|
|
}
|
2005-09-21 21:39:35 +00:00
|
|
|
|
2005-12-04 23:39:09 +00:00
|
|
|
$now = time();
|
2006-02-20 19:11:51 +00:00
|
|
|
$old_hosts=0;
|
|
|
|
$i = 1;
|
2005-12-04 23:39:09 +00:00
|
|
|
$result = mysql_query("select * from host where userid=$userid order by $sort_clause");
|
|
|
|
while ($host = mysql_fetch_object($result)) {
|
2006-02-20 19:11:51 +00:00
|
|
|
$is_old=false;
|
|
|
|
if (($now - $host->rpc_time) > 30*86400) {
|
|
|
|
$is_old=true;
|
|
|
|
$old_hosts++;
|
2004-11-18 20:01:12 +00:00
|
|
|
}
|
2006-02-20 19:11:51 +00:00
|
|
|
if (!$show_all && $is_old) continue;
|
2005-12-04 23:39:09 +00:00
|
|
|
show_host_row($host, $i, $private, false);
|
|
|
|
$i++;
|
|
|
|
}
|
|
|
|
mysql_free_result($result);
|
|
|
|
echo "</table>\n";
|
2006-02-20 19:11:51 +00:00
|
|
|
|
|
|
|
if ($old_hosts>0) more_or_less($show_all);
|
|
|
|
|
2007-06-20 16:27:27 +00:00
|
|
|
if ($userid == 0) {
|
|
|
|
echo "
|
|
|
|
<a href=merge_by_name.php>Merge hosts by name</a>
|
|
|
|
";
|
|
|
|
}
|
2007-05-30 20:30:28 +00:00
|
|
|
|
2005-12-04 23:39:09 +00:00
|
|
|
if ($caching) {
|
|
|
|
page_tail(true);
|
|
|
|
end_cache(USER_PAGE_TTL, $cache_args);
|
|
|
|
} else {
|
|
|
|
page_tail();
|
|
|
|
}
|
2003-03-17 22:37:49 +00:00
|
|
|
?>
|