Code

Added getFAIstatus.php
authorhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Mon, 19 May 2008 10:32:34 +0000 (10:32 +0000)
committerhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Mon, 19 May 2008 10:32:34 +0000 (10:32 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@10948 594d385d-05f5-0310-b6e9-bd551577e9d8

gosa-core/html/getFAIstatus.php [new file with mode: 0644]

diff --git a/gosa-core/html/getFAIstatus.php b/gosa-core/html/getFAIstatus.php
new file mode 100644 (file)
index 0000000..ebac934
--- /dev/null
@@ -0,0 +1,61 @@
+<?php
+/*
+ * This code is part of GOsa (http://www.gosa-project.org)
+ * Copyright (C) 2003-2008 GONICUS GmbH
+ *
+ * ID: $$Id: getbin.php 9255 2008-03-03 16:04:30Z cajus $$
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+ */
+
+/* Basic setup, remove eventually registered sessions */
+@require_once ("../include/php_setup.inc");
+@require_once ("functions.inc");
+
+session::start();
+session::set('errorsAlreadyPosted',array());
+
+/* Logged in? Simple security check */
+if (!session::is_set('ui')){
+  new log("security","unknown","",array(),"Error: getbin.php called without session") ;
+  header ("Location: index.php");
+  exit;
+}
+
+/* There must be a mac address given */
+if(!isset($_GET['mac'])){
+       return;
+}
+
+$config = session::get("config");
+$o =  new gosaSupportDaemon();
+$res = $o->get_entries_by_mac(array($_GET['mac']));
+foreach($res as $entry){
+       if(strtolower($entry['MACADDRESS']) == strtolower($_GET['mac'])){
+               $img = "<img src='progress.php?x=80&y=13&p=".$entry['PROGRESS']."' 
+                       alt='".$entry['STATUS']."' title='".$entry['STATUS']."'>";
+       }
+}
+
+
+?>
+<html>
+<head>
+       <meta http-equiv="refresh" content="15">
+</head>
+<body style="margin:0px;padding:0px;">
+<?php echo $img; ?> 
+</body>
+</html>