boinc/html/user/host_edit_form.php

95 lines
2.1 KiB
PHP

<?php
require_once("../inc/boinc_db.inc");
require_once("../inc/util.inc");
require_once("../inc/host.inc");
$user = get_logged_in_user();
$hostid = get_int("hostid");
$host = BoincHost::lookup_id($hostid);
if (!$host || $host->userid != $user->id) {
error_page("We have no record of that computer");
}
page_head("Merge computers");
$t = time_str($host->create_time);
echo "
Sometimes BOINC assigns separate identities to the same computer by mistake.
You can correct this by merging old identities with the newest one.
<form name=blah action=host_edit_action.php>
<input type=hidden name=id_0 value=$hostid>
<p>
";
$all_hosts = BoincHost::enum("userid=$user->id");
$nhosts = 1;
$hosts = array();
foreach ($all_hosts as $host2) {
if ($host->id == $host2->id) continue;
if (!hosts_compatible($host, $host2)) continue;
$hosts[] = $host2;
$nhosts++;
if ($nhosts==500) break;
}
if ($nhosts == 1) {
echo "<br>No hosts are eligible for merging with this one.";
page_tail();
exit();
}
echo "
<p>
Check the computers that are the same as $host->domain_name
(created $t, computer ID $host->id):
<p>
";
start_table();
row_heading_array(array("", "name", "created", "computer ID"));
$i = 1;
foreach ($hosts as $host2) {
$t = time_str($host2->create_time);
$x = $host2->domain_name;
if ($x == "") {
$x = "[no hostname]";
}
row_array(array(
"<input type=checkbox name=id_$i value=$host2->id>",
$x,
"$t",
"$host2->id"
));
$i++;
}
end_table();
echo "
<br>
<script>
function set_all() {
";
for ($i=1; $i<$nhosts; $i++) {
echo "document.blah.id_$i.checked=1;\n";
}
echo "
}
function clear_all() {
";
for ($i=1; $i<$nhosts; $i++) {
echo "document.blah.id_$i.checked=0;\n";
}
echo "
}
</script>
<p><a href=javascript:set_all()>Select all</a>
<p><a href=javascript:clear_all()>Unselect all</a>
<input type=hidden name=nhosts value=$nhosts>
<p><input type=submit value='Merge hosts'>
</form>
";
page_tail();
?>