⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 webapp.page

📁 RESIN 3.2 最新源码
💻 PAGE
字号:
<?php/** * Provides the most important status information about the Resin server. * * @author Sam */require_once "WEB-INF/php/inc.php";function sort_host($a, $b){  return strcmp($a->URL, $b->URL);}$webapp = $g_mbean_server->lookup($_GET['id']);$request = quercus_get_request();$is_secure = $request->isSecure();$user = quercus_get_request()->getUserPrincipal();$action = $_POST['action'];if (! $action) {}else if ($request->isSecure()         && $_POST['name'] == $_GET['id']) {      if ($action == 'start') {    $webapp->start();    echo "<div class='warn'>Starting '${_GET['id']}' by $user</div>";  }  else if ($action == 'stop') {    $webapp->stop();    echo "<div class='warn'>Stopping '${_GET['id']}' by $user</div>";  }  else if ($action == 'restart') {    $webapp->restart();    echo "<div class='warn'>Restarting '${_GET['id']}' by $user</div>";  }}if ($webapp) {  display_webapp($g_mbean_server, $webapp);}else {  display_webapp_summary($g_mbean_server);}/** * single-page webapp */function display_webapp($mbean_server, $webapp){  $session = $webapp->SessionManager;    echo <<<END<h2>WebApp</h2><table class="data">  <tr>    <th>Web-App</th>    <th>State</th>    <th>Active</th>    <th>Sessions</th>    <th>Uptime</th>    <th colspan='2'>500</th>  </tr>END;  echo "<tr class='" . row_style($count++) . "'>\n";  echo " <td class='item'>\n";  $context_path = empty($webapp->ContextPath) ? "/" : $webapp->ContextPath;  echo $context_path;  echo " </td>";  echo "  <td class='" . format_state_class($webapp->State) . "'>\n";  echo  $webapp->State;  echo "  </td>\n";  echo "  <td>" . $webapp->RequestCount . "</td>\n";  echo "  <td>" . $session->SessionActiveCount . "</td>\n";  echo "  <td class='" . format_ago_class($webapp->StartTime) . "'>\n";  echo "    " . format_ago($webapp->StartTime) . "\n";  echo "   </td>\n";        format_ago_td_pair($webapp->Status500CountTotal,                           $webapp->Status500LastTime);  echo "</tr>\n";  echo "</table>";  echo "<h3>Actions</h3>\n";  if (quercus_get_request()->isSecure()) {    $disabled = "";  }  else {    $disabled = "disabled='true'";  }  $name = $webapp->mbean_name;  echo "<form method='POST' style='display:inline'>\n";  echo "<input type='hidden' name='action' value='start'>\n";  echo "<input type='hidden' name='name' value='$name'>\n";  echo "<input type='submit' name='submit' value='start' $disabled>\n";  echo "</form>";  echo "<form method='POST' style='display:inline'>\n";  echo "<input type='hidden' name='action' value='stop'>\n";  echo "<input type='hidden' name='name' value='$name'>\n";  echo "<input type='submit' name='submit' value='stop' $disabled>\n";  echo "</form>";  echo "<form method='POST' style='display:inline'>";  echo "<input type='hidden' name='action' value='restart'>";  echo "<input type='hidden' name='name' value='$name'>\n";  echo "<input type='submit' name='submit' value='restart' $disabled>";  echo "</form>";  echo "<h2>MBeans</h2>\n";  $exp = mbean_explode($name);  $beans = $mbean_server->query("resin:*,Host=" . $exp['Host']                                 . ",WebApp=" . $exp['name']);  display_jmx($mbean_server, $beans);}/** * summary of all the webapps */function display_webapp_summary($g_mbean_server){?><!-- Applications --><h2>WebApps</h2><table class="data">  <tr>    <th>Web-App</th>    <th>State</th>    <th>Active</th>    <th>Sessions</th>    <th>Uptime</th>    <th colspan='2'>500</th>  </tr><?phpif ($g_mbean_server) {  $hosts = $g_mbean_server->query("resin:*,type=Host");}usort($hosts, "sort_host");foreach ($hosts as $host) {  $hostName = empty($host->HostName) ? "default" : $host->HostName;?>  <tr title='<?= $hostObjectName ?>'><td class='group' colspan='7'><?= $host->URL ?></td></tr><?phpfunction sort_webapp($a, $b){  return strcmp($a->ContextPath, $b->ContextPath);}$webapps = $host->WebApps;usort($webapps, "sort_webapp");$count = 0;foreach ($webapps as $webapp) {  $session = $webapp->SessionManager;?>  <tr class='<?= row_style($count++) ?>'>    <td class='item'><?php$context_path = empty($webapp->ContextPath) ? "/" : $webapp->ContextPath;$object_name = $webapp->mbean_name;echo "<a href='index.php?q=webapp&id=" . $object_name . "'>" . $context_path . "</a>";?>           </td>    <td class='<?= format_state_class($webapp->State) ?>'>       <?= $webapp->State ?>    </td>    <td><?= $webapp->RequestCount ?></td>    <td><?= $session->SessionActiveCount ?></td>    <td class='<?= format_ago_class($webapp->StartTime) ?>'>      <?= format_ago($webapp->StartTime) ?>    </td>    <?php        format_ago_td_pair($webapp->Status500CountTotal,                           $webapp->Status500LastTime);    ?>  </tr><?php  } // webapps} // hosts?></table><?php} // summary?>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -