mirror of
https://github.com/PurpleI2P/i2pd
synced 2024-11-10 00:00:29 +03:00
Display outbound tunnels in webui.
This commit is contained in:
parent
0c2830b9a5
commit
633f71c145
@ -7,35 +7,45 @@
|
|||||||
<link rel="stylesheet" href="css/main.css">
|
<link rel="stylesheet" href="css/main.css">
|
||||||
<script type="text/javascript" src="javascript/I2PControl.js"></script>
|
<script type="text/javascript" src="javascript/I2PControl.js"></script>
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
function updateNetDbInfo(result, session) {
|
|
||||||
if(session.error) {
|
|
||||||
alert("Error: " + session.error["message"]);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
var table = document.getElementById("tunnels").getElementsByTagName("tbody")[0];
|
function buildTable(direction, result) {
|
||||||
|
var table = document.getElementById(direction + "-tunnels").getElementsByTagName("tbody")[0];
|
||||||
|
|
||||||
for(id in result["i2p.router.net.tunnels.inbound.list"]) {
|
var cmd = "i2p.router.net.tunnels." + direction + ".list";
|
||||||
if(!result["i2p.router.net.tunnels.inbound.list"].hasOwnProperty(id))
|
for(id in result[cmd]) {
|
||||||
|
if(!result[cmd].hasOwnProperty(id))
|
||||||
continue;
|
continue;
|
||||||
var tunnel = result["i2p.router.net.tunnels.inbound.list"][id];
|
var tunnel = result[cmd][id];
|
||||||
|
|
||||||
var row = table.insertRow(table.rows.length);
|
var row = table.insertRow(table.rows.length);
|
||||||
row.insertCell(0).appendChild(document.createTextNode(id));
|
row.insertCell(0).appendChild(document.createTextNode(id));
|
||||||
row.insertCell(1).appendChild(document.createTextNode(tunnel["state"] ? tunnel["state"] : "running"));
|
row.insertCell(1).appendChild(document.createTextNode(tunnel["state"] ? tunnel["state"] : "running"));
|
||||||
row.insertCell(2).appendChild(document.createTextNode(tunnel["layout"]));
|
row.insertCell(2).appendChild(document.createTextNode(tunnel["layout"]));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function requestNetDbInfo(session) {
|
function updateTunnelInfo(result, session) {
|
||||||
|
if(session.error) {
|
||||||
|
alert("Error: " + session.error["message"]);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
buildTable("inbound", result);
|
||||||
|
buildTable("outbound", result);
|
||||||
|
}
|
||||||
|
|
||||||
|
function requestTunnelInfo(session) {
|
||||||
session.request("RouterInfo", {
|
session.request("RouterInfo", {
|
||||||
"i2p.router.net.tunnels.inbound.list" : "",
|
"i2p.router.net.tunnels.inbound.list" : "",
|
||||||
}, updateNetDbInfo);
|
"i2p.router.net.tunnels.outbound.list" : "",
|
||||||
|
}, updateTunnelInfo);
|
||||||
}
|
}
|
||||||
|
|
||||||
window.onload = function() {
|
window.onload = function() {
|
||||||
var session = new I2PControl.Session("itoopie");
|
var session = new I2PControl.Session("itoopie");
|
||||||
session.start(function() { requestNetDbInfo(session); });
|
session.start(function() { requestTunnelInfo(session); });
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
</head>
|
</head>
|
||||||
@ -43,12 +53,23 @@ window.onload = function() {
|
|||||||
<body>
|
<body>
|
||||||
<div class="header">
|
<div class="header">
|
||||||
<h1>i2pd router console</h1>
|
<h1>i2pd router console</h1>
|
||||||
<h2>Tunnel List</h2>
|
<h2>Tunnel Information</h2>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="content">
|
<div class="content">
|
||||||
|
|
||||||
<table id="tunnels">
|
<h2 class="content-subhead">Inbound Tunnels</h2>
|
||||||
|
<table id="inbound-tunnels">
|
||||||
|
<thead>
|
||||||
|
<th>Tunnel ID</th>
|
||||||
|
<th>Status</th>
|
||||||
|
<th>Overview</th>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
<h2 class="content-subhead">Outbound Tunnels</h2>
|
||||||
|
<table id="outbound-tunnels">
|
||||||
<thead>
|
<thead>
|
||||||
<th>Tunnel ID</th>
|
<th>Tunnel ID</th>
|
||||||
<th>Status</th>
|
<th>Status</th>
|
||||||
|
Loading…
Reference in New Issue
Block a user