File: 0.02.49a/server/base/screen.inc.php (View as Code)

1: 2: /* ------------------------------------------------------------- 3: This file is part of FreeNATS 4: 5: FreeNATS is (C) Copyright 2008 PurplePixie Systems 6: 7: FreeNATS is free software: you can redistribute it and/or modify 8: it under the terms of the GNU General Public License as published by 9: the Free Software Foundation, either version 3 of the License, or 10: (at your option) any later version. 11: 12: FreeNATS is distributed in the hope that it will be useful, 13: but WITHOUT ANY WARRANTY; without even the implied warranty of 14: MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 15: GNU General Public License for more details. 16: 17: You should have received a copy of the GNU General Public License 18: along with FreeNATS. If not, see www.gnu.org/licenses 19: 20: For more information see www.purplepixie.org/freenats 21: -------------------------------------------------------------- */ 22: 23: $menu=array(); 24: $menu[0]="FreeNATS Homepage"; 25: $menu[1]="Monitor | Main | Settings | "; 26: $menu[1].="Help | Logout"; 27: $menu[2]=$menu[1]." | Admin"; 28: 29: $poplist=array(); 30: 31: function Screen_Header($title,$menuindex=0,$alertpane=0,$ah="") 32: { 33: global $menu,$NATS,$NATS_Session; 34: if ($NATS->Cfg->Get("site.enable.interactive")!=1) 35: { 36: echo "Sorry but FreeNATS interactive is disabled.
";
37: echo "site.enable.interactive != 1

";
38: $NATS->Stop(); 39: exit(); 40: } 41: if ($menuindex==1) $alertpane=1; // bodge 42: if ($NATS_Session->userlevel>9) $menuindex=2; // further bodge! 43: echo "FreeNATS: ".$title."\n"; 44: echo "\n"; 45: if ($ah!="") echo $ah; 46: echo "\n"; 47: echo "\n"; 48: echo ""; 49: 50: echo "\n"; 51: echo "\n"; 53: echo "
\n"; 52: echo "FreeNATS: ".$title."\n"; 54: echo $menu[$menuindex]; 55: echo "
\n";
56: 57: if ($alertpane==1) 58: { 59: $alerts=$NATS->GetAlerts(); 60: if (is_array($alerts)) 61: { 62: echo "
"; 63: echo "NATS Alerts

";
64: foreach($alerts as $alert) 65: { 66: echo " "; 67: echo "".$alert['nodeid']."
"; 68: } 69: echo "
";
70: echo "
";
71: } 72: } 73: 74: } 75: 76: function Screen_Footer() 77: { 78: global $NATS,$poplist; 79: echo "

\n";
80: //$NATS->Cfg->DumpToScreen(); 81: echo ""; 82: echo ""; 88: echo "
FreeNATS; © Copyright 2008 "; 83: echo "PurplePixie Systems"; 84: echo ""; 85: echo "Version: ".$NATS->Version; 86: if ($NATS->Release!="") echo "/".$NATS->Release; 87: echo "
";
89: echo "
"; 90: if (ini_get("freenats.rpath")==1) 91: { 92: echo "FreeNATS Virtual Server Powered By rPath LAMP Appliance
";
93: } 94: echo "This is alpha-test software - we would very much value your "; 95: echo "feedback
"; 96: 97: $t=$NATS->Cfg->Get("freenats.tracker"); 98: if ( ($t!="") && ($t>0) ) 99: { 100: $sn=explode("/",$_SERVER['SCRIPT_NAME']); 101: $script=$sn[count($sn)-1]; 102: echo "Version."+p=".$script."&type=ping\" width=1 height=1>\n"; 103: } 104: 105: if ($NATS->Cfg->Get("site.popupmessage")=="1") 106: { 107: if (count($poplist)>0) 108: { 109: echo "\n\n"; 117: } 118: } 119: echo "\n\n"; 120: } 121: 122: function UL_Error($task="") 123: { 124: Screen_Header("Insufficient Access"); 125: echo "
Sorry but your user has insufficient access to perform task (".$task.").

";
126: echo "Please click here to continue.

";
127: Screen_Footer(); 128: exit(); 129: } 130: 131: function nicedt($ts) 132: { 133: if ($ts<=0) return "never"; 134: return date("H:i:s d/m/Y",$ts); 135: } 136: 137: function enicedt($ts) 138: { 139: echo nicedt($ts); 140: } 141: 142: function nicediff($diff) 143: { 144: $hr=0; 145: $mn=0; 146: $se=0; 147: if ($diff>59) 148: { 149: $mn=round($diff/60,0); 150: $se=$diff%60; 151: if ($mn>59) 152: { 153: $hr=round($mn/60,0); 154: $mn=$mn%60; 155: } 156: } 157: else $se=$diff; 158: $s=""; 159: if ($hr<10) $s="0"; 160: $s.=$hr.":"; 161: if ($mn<10) $s.="0"; 162: $s.=$mn.":"; 163: if ($se<10) $s.="0"; 164: $s.=$se; 165: return $s; 166: } 167: 168: function dtago($ts) 169: { 170: if ($ts<=0) return "never"; 171: $now=time(); 172: $diff=$now-$ts; 173: $s=nicediff($diff); 174: $s.=" ago"; 175: return $s; 176: } 177: 178: function edtago($ts) 179: { 180: echo dtago($ts); 181: } 182: 183: $allowed="00123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz@_-.,:&/~%=+(){}[]#?"; 184: 185: function nices($s) 186: { 187: global $allowed; 188: $o=""; 189: for ($a=0; $a190: { 191: $c=$s[$a]; 192: if (strpos($allowed,$c)===false) 193: { 194: // skip it 195: } 196: else $o.=$c; 197: } 198: return $o; 199: } 200: 201: function ShowIcons() 202: { 203: global $fnIcons,$fnIcon_DefNode,$fnIcon_DefGroup; 204: $c=0; 205: echo ""; 206: $cc=0; 207: for ($a=0; $a208: { 209: if ($cc==0) echo ""; 210: echo ""; 214: $cc++; 215: if ($cc>=5) 216: { 217: echo ""; 218: $cc=0; 219: } 220: } 221: if ($cc>0) echo ""; 222: echo "

".$fnIcons[$a]."
"; 211: if ($a==$fnIcon_DefNode) echo "Node Default "; 212: if ($a==$fnIcon_DefGroup) echo "Group Default"; 213: echo "
";
223: } 224: 225: 226: function NodeIcon($nodeid) 227: { 228: global $NATS,$fnIcons,$fnIcon_DefNode; 229: $q="SELECT nodeicon FROM fnnode WHERE nodeid=\"".ss($nodeid)."\""; 230: $r=$NATS->DB->Query($q); 231: if ($row=$NATS->DB->Fetch_Array($r)) 232: { 233: if ($row['nodeicon']!="") return $row['nodeicon']; 234: } 235: return $fnIcons[$fnIcon_DefNode]; 236: } 237: 238: function GroupIcon($groupid) 239: { 240: global $NATS,$fnIcons,$fnIcon_DefGroup; 241: $q="SELECT groupicon FROM fngroup WHERE groupid=\"".ss($groupid)."\""; 242: $r=$NATS->DB->Query($q); 243: if ($row=$NATS->DB->Fetch_Array($r)) 244: { 245: if ($row['groupicon']!="") return $row['groupicon']; 246: } 247: return $fnIcons[$fnIcon_DefGroup]; 248: } 249: 250: function np_tiny($nodeid,$text=true) 251: { 252: global $NATS; 253: $al=$NATS->NodeAlertLevel($nodeid); 254: echo ""; 255: echo "
"; 256: echo ""; 257: echo ""; 258: echo ""; 259: if ($text) 260: { 261: echo "
".$nodeid."";
262: } 263: echo "
";
264: } 265: 266: function ng_tiny($groupid,$groupname="",$text=true) 267: { 268: global $NATS; 269: // to do - get groupname if not sent but F--- it for now 270: $al=$NATS->GroupAlertLevel($groupid); 271: echo ""; 272: echo "
"; 273: echo ""; 274: echo ""; 275: echo ""; 276: if ($text) 277: { 278: echo "
".$groupname."";
279: } 280: echo "
";
281: } 282: 283: function ng_big($groupid,$groupname="",$groupdesc="",$groupicon="") 284: { 285: global $NATS; 286: if ($groupicon=="") $groupicon=GroupIcon($groupid); 287: $al=$NATS->GroupAlertLevel($groupid); 288: echo ""; 289: echo ""; 298: //echo ""; 301: echo ""; 302: echo "
"; 290: echo ""; 291: echo ""; 293: echo ""; 295: echo ""; 297: echo "
Group Name :"; 292: echo "".$groupname."
Description :"; 294: echo "".$groupdesc."
Status :"; 296: echo "".oText($al)."
"; 299: //echo ""; 300: //echo "
";
303: } 304: 305: 306: 307: 308: ?>