mirror of
https://github.com/mumble-voip/mumble.git
synced 2025-10-26 11:19:16 +00:00
52 lines
1.0 KiB
PHP
52 lines
1.0 KiB
PHP
<html>
|
|
<head>
|
|
<title>Userlist</title>
|
|
</head>
|
|
<body>
|
|
<?php
|
|
|
|
#
|
|
# Murmur.php is generated by calling
|
|
# slice2php /path/to/Murmur.ice
|
|
# in this directory
|
|
#
|
|
|
|
require 'Ice.php';
|
|
require 'Murmur.php';
|
|
|
|
|
|
#Ice_loadProfile();
|
|
|
|
try {
|
|
$ice = Ice_initialize();
|
|
|
|
$base = $ice->stringToProxy("Meta:tcp -h 127.0.0.1 -p 6502");
|
|
$meta = $base->ice_checkedCast("::Murmur::Meta");
|
|
|
|
$servers = $meta->getBootedServers();
|
|
$default = $meta->getDefaultConf();
|
|
foreach($servers as $s) {
|
|
$name = $s->getConf("registername");
|
|
if (! $name) {
|
|
$name = $default["registername"];
|
|
}
|
|
echo "<h1>SERVER #" . $s->id() . " " .$name ."</h1>\n";
|
|
echo "<table><tr><th>Name</th><th>Channel</th></tr>\n";
|
|
|
|
$channels = $s->getChannels();
|
|
$players = $s->getUsers();
|
|
|
|
foreach($players as $id => $state) {
|
|
$chan = $channels[$state->channel];
|
|
echo "<tr><td>".$state->name."</td><td>".$chan->name."</td></tr>\n";
|
|
}
|
|
echo "</table>\n";
|
|
}
|
|
} catch (Ice_LocalException $ex) {
|
|
print_r($ex);
|
|
}
|
|
|
|
?>
|
|
</body>
|
|
</html>
|