Changeset 873 for trunk/Modules/NetworkShare
- Timestamp:
- Apr 6, 2020, 11:17:40 PM (5 years ago)
- Location:
- trunk/Modules/NetworkShare
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/NetworkShare/SharePage.php
r790 r873 22 22 function ShowTime() 23 23 { 24 return (date("H:i:s")."<br />\n");24 return (date("H:i:s")."<br />\n"); 25 25 } 26 26 … … 41 41 $Cesta = ''; //$Row['name']; 42 42 $i = 0; 43 while (($Otec > 1) && ($i < $this->MaxNesting))43 while (($Otec > 1) && ($i < $this->MaxNesting)) 44 44 { 45 45 $DbResult = $this->Database->query('SELECT Id,Name,Parent FROM NetworkShareItem WHERE Id='.$Otec); … … 50 50 $i++; 51 51 } 52 if ($i >= $this->MaxNesting) $Cesta = '?'.'\\'.$Cesta;53 return ('\\\\'.$Cesta);52 if ($i >= $this->MaxNesting) $Cesta = '?'.'\\'.$Cesta; 53 return ('\\\\'.$Cesta); 54 54 } 55 55 … … 58 58 { 59 59 $Jednotky = array('B','kB','MB','GB','TB','PB','EB'); 60 while ($Velikost >= 1024)60 while ($Velikost >= 1024) 61 61 { 62 62 $Velikost = round($Velikost / 1024 * 10) / 10; 63 63 array_shift($Jednotky); 64 64 } 65 return ($Velikost.' '.$Jednotky[0]);65 return ($Velikost.' '.$Jednotky[0]); 66 66 } 67 67 68 68 function Show() 69 69 { 70 if (!$this->System->User->CheckPermission('NetworkShare', 'Display')) return('Nemáte oprávnění');70 if (!$this->System->User->CheckPermission('NetworkShare', 'Display')) return ('Nemáte oprávnění'); 71 71 72 72 // If not only online checkbox checked 73 if (array_key_exists('view', $_POST) and !array_key_exists('online', $_POST)) $_POST['online'] = 'off';73 if (array_key_exists('view', $_POST) and !array_key_exists('online', $_POST)) $_POST['online'] = 'off'; 74 74 75 75 // Default host list view 76 if ((count($_POST) == 0) and (count($_GET) == 0))76 if ((count($_POST) == 0) and (count($_GET) == 0)) 77 77 { 78 78 $_POST['view'] = 1; … … 81 81 82 82 // Toggle order direction 83 if (array_key_exists('order', $_GET) and ($_SESSION['order'] == $_GET['order'])) $_GET['order'] .= ' DESC';83 if (array_key_exists('order', $_GET) and ($_SESSION['order'] == $_GET['order'])) $_GET['order'] .= ' DESC'; 84 84 85 85 //print_r($_POST); 86 foreach ($this->Promene as $Index => $Prvek)87 { 88 if (!array_key_exists($Index, $_SESSION)) $_SESSION[$Index] = $this->Promene[$Index];89 if (array_key_exists($Index, $_GET)) $_SESSION[$Index] = $_GET[$Index];90 if (array_key_exists($Index, $_POST)) $_SESSION[$Index] = $_POST[$Index];91 if (($Index == 'keyword') and (array_key_exists('view', $_GET))) $_SESSION[$Index] = $this->Promene[$Index];92 if (($Index == 'view') and ((array_key_exists('keyword', $_POST)) or (array_key_exists('keyword', $_GET)))) $_SESSION[$Index] = '';86 foreach ($this->Promene as $Index => $Prvek) 87 { 88 if (!array_key_exists($Index, $_SESSION)) $_SESSION[$Index] = $this->Promene[$Index]; 89 if (array_key_exists($Index, $_GET)) $_SESSION[$Index] = $_GET[$Index]; 90 if (array_key_exists($Index, $_POST)) $_SESSION[$Index] = $_POST[$Index]; 91 if (($Index == 'keyword') and (array_key_exists('view', $_GET))) $_SESSION[$Index] = $this->Promene[$Index]; 92 if (($Index == 'view') and ((array_key_exists('keyword', $_POST)) or (array_key_exists('keyword', $_GET)))) $_SESSION[$Index] = ''; 93 93 $$Index = $_SESSION[$Index]; 94 94 //echo('$'.$Index.' = '.$_SESSION[$Index].'<br>'); 95 95 } 96 96 //echo($keyword); 97 //if ($keyword)98 //if ($keyword != '') $view = '';97 //if ($keyword) 98 //if ($keyword != '') $view = ''; 99 99 100 100 //$this->Database->select_db('share'); 101 101 102 102 // Log search 103 if (array_key_exists('keyword', $_POST) or array_key_exists('keyword', $_GET))103 if (array_key_exists('keyword', $_POST) or array_key_exists('keyword', $_GET)) 104 104 $this->System->ModuleManager->Modules['Log']->NewRecord('Share', 'Hledaný výraz', $_SESSION['keyword']); 105 105 … … 139 139 </select> '; 140 140 141 if ($online == 'on') $Selected = 'checked '; else $Selected = '';141 if ($online == 'on') $Selected = 'checked '; else $Selected = ''; 142 142 $Output .= '<input type="checkbox" '.$Selected.'name="online">Pouze aktivní uživatele<br> 143 143 </form>'; 144 144 145 145 //$Output .= $view; 146 if ($view != '')146 if ($view != '') 147 147 { 148 148 // Zobrazení obsahu vybrané složky … … 170 170 "(ext LIKE 'iso') OR (ext LIKE 'nrg') OR (ext LIKE 'ccd') OR (ext LIKE 'bin') OR (ext LIKE 'mds')", 171 171 ); 172 if ($file_type > 0) $Podminka .= ' AND ('.$Pripony[$file_type].')';172 if ($file_type > 0) $Podminka .= ' AND ('.$Pripony[$file_type].')'; 173 173 174 174 //Hledání podle velikosti 175 175 $Jednotky = array(1, 1024, 1048576, 1073741824); 176 if (is_numeric($size))176 if (is_numeric($size)) 177 177 { 178 178 $Metoda = array('=', '>', '<'); … … 184 184 // Omezení na online/offline uživatele 185 185 //$this->Database->select_db('is'); 186 if ($online == 'on') $DbResult = $this->Database->query('SELECT Id FROM NetworkDevice WHERE Online=1 AND Member IS NOT NULL');186 if ($online == 'on') $DbResult = $this->Database->query('SELECT Id FROM NetworkDevice WHERE Online=1 AND Member IS NOT NULL'); 187 187 else $DbResult = $this->Database->query('SELECT Id FROM NetworkDevice'); 188 188 $Vyber = ''; 189 while ($Row = $DbResult->fetch_array()) $Vyber .= $Row['Id'].',';189 while ($Row = $DbResult->fetch_array()) $Vyber .= $Row['Id'].','; 190 190 $Podminka .= ' AND (Host IN ('.substr($Vyber, 0, -1).'))'; 191 191 //echo($Podminka.'<br>'); … … 200 200 201 201 // Zobrazení [..] 202 if (($view != '') && ($page == 0) && ($Nahoru > 0))202 if (($view != '') && ($page == 0) && ($Nahoru > 0)) 203 203 { 204 204 $DbResult = $this->Database->query('SELECT * FROM NetworkShareItem WHERE Id='.$view); … … 212 212 $PerPage = 30; 213 213 $Dotaz = "SELECT COUNT(*) FROM NetworkShareItem WHERE (".$Podminka.")"; 214 if ($order != '') $Dotaz .= ' ORDER BY '.$order;214 if ($order != '') $Dotaz .= ' ORDER BY '.$order; 215 215 $Dotaz .= " LIMIT ".($page * $PerPage).",".$PerPage; 216 216 $DbResult = $this->Database->query($Dotaz); … … 218 218 $Pocet = $Row[0]; 219 219 220 if ($Pocet > 0)220 if ($Pocet > 0) 221 221 { 222 222 $Output .= 'Nalezeno celkem: '.$Pocet.' položek<br />'; 223 223 } else 224 224 $Output .= 'Podle zadaných podmínek nic nenalezeno'; 225 if (($Pocet > 0) || ($upstr))225 if (($Pocet > 0) || ($upstr)) 226 226 { 227 227 $Output .= '<table width="100%" style="font-size: 8pt;" border="0" cellpadding="2" cellspacing="2"> 228 228 <tr><th bgcolor="#E0E0FF"><a href="index.php?order=name">Soubor</a></th><th bgcolor="#E0E0FF"><a href="index.php?order=ext">Přípona</a></th><th bgcolor="#E0E0FF"><a href="index.php?order=size">Velikost</a></th><th bgcolor="#E0E0FF"><a href="index.php?order=date">Datum</a></th><th bgcolor="#E0E0FF">Umístění</th></tr>'; 229 229 $Output .= $upstr; 230 if ($Pocet > 0)230 if ($Pocet > 0) 231 231 { 232 232 // Zobrazení tabulky s výsledky … … 235 235 236 236 // Zobrazení poloľek 237 while ($Row = $DbResult->fetch_array())237 while ($Row = $DbResult->fetch_array()) 238 238 { 239 239 // Loguj('Radek '.$Row['name']); … … 244 244 // Zobrazení řádku 245 245 $Cesta2 = strtr($Cesta.$Radek['Name'], '\\', '/'); 246 if ($Radek['Ext'] != '') $Cesta2 .= '.'.$Radek['Ext'];247 if ($Radek['Type'] != 0) $Adresa = 'index.php?view='.$Radek['Id'].'">['.$Radek['Name'].']';246 if ($Radek['Ext'] != '') $Cesta2 .= '.'.$Radek['Ext']; 247 if ($Radek['Type'] != 0) $Adresa = 'index.php?view='.$Radek['Id'].'">['.$Radek['Name'].']'; 248 248 else 249 249 { 250 if (strstr($_SERVER['HTTP_USER_AGENT'], 'Linux')) $Adresa = 'smb:'.$Cesta2.'">'.$Radek['Name'];250 if (strstr($_SERVER['HTTP_USER_AGENT'], 'Linux')) $Adresa = 'smb:'.$Cesta2.'">'.$Radek['Name']; 251 251 else $Adresa = 'file:///'.$Cesta2.'">'.$Radek['Name']; 252 252 } … … 260 260 } 261 261 } 262 if ($Pocet > 0)262 if ($Pocet > 0) 263 263 { 264 264 // Celkový přehled 265 if ($view == 1)265 if ($view == 1) 266 266 { 267 267 $DbResult = $this->Database->query('SELECT SUM(Size) FROM NetworkShareItem WHERE (Parent=1) AND (Host IN ('.substr($Vyber,0,-1).'))'); … … 285 285 $Host = strtoupper(substr($Host, 0, strpos($Host, '.'))); 286 286 $DbResult = $this->Database->select('NetworkShareError', '*', 'Host="'.$Host.'"'); 287 if ($DbResult->num_rows > 0) $Output .= '<strong>Výpis chybových hlášení pro počítač '.$Host.':</strong><br />';287 if ($DbResult->num_rows > 0) $Output .= '<strong>Výpis chybových hlášení pro počítač '.$Host.':</strong><br />'; 288 288 //echo('host="'.$Host.'"'); 289 while ($Row = $DbResult->fetch_array())289 while ($Row = $DbResult->fetch_array()) 290 290 { 291 291 $Row['Message'] = str_replace('/', '\\', $Row['Message']); … … 295 295 296 296 // Zobrazení seznamu stránek 297 if ($Pages > 1)297 if ($Pages > 1) 298 298 { 299 if ($page > 0) $Output .= '<a href="index.php?page=0"><<</a> ';300 if ($page > 0) $Output .= '<a href="index.php?page='.($page-1).'"><</a> ';299 if ($page > 0) $Output .= '<a href="index.php?page=0"><<</a> '; 300 if ($page > 0) $Output .= '<a href="index.php?page='.($page-1).'"><</a> '; 301 301 $PagesMax = $Pages; 302 302 $PagesMin = 0; 303 if ($PagesMax > ($page + 10)) $PagesMax = $page + 10;304 if ($PagesMin < ($page - 10))303 if ($PagesMax > ($page + 10)) $PagesMax = $page + 10; 304 if ($PagesMin < ($page - 10)) 305 305 { 306 306 $Output .= ' .. '; 307 307 $PagesMin = $page - 10; 308 308 } 309 for ($i = $PagesMin; $i <= $PagesMax; $i++)309 for ($i = $PagesMin; $i <= $PagesMax; $i++) 310 310 { 311 if ($i == $page) $Output .= '<strong>';311 if ($i == $page) $Output .= '<strong>'; 312 312 $Output .= '<a href="index.php?page='.$i.'">'.($i + 1).'</a> '; 313 if ($i == $page) $Output .= '</strong>';313 if ($i == $page) $Output .= '</strong>'; 314 314 } 315 if ($PagesMax < $Pages) $Output .= ' .. ';316 if ($page < $Pages) $Output .= '<a href="index.php?page='.($page + 1).'">></a> ';317 if ($page < $Pages) $Output .= '<a href="index.php?page='.$Pages.'">>></a>';315 if ($PagesMax < $Pages) $Output .= ' .. '; 316 if ($page < $Pages) $Output .= '<a href="index.php?page='.($page + 1).'">></a> '; 317 if ($page < $Pages) $Output .= '<a href="index.php?page='.$Pages.'">>></a>'; 318 318 } 319 319 } 320 return ($Output);320 return ($Output); 321 321 } 322 322 } -
trunk/Modules/NetworkShare/browse.php
r790 r873 9 9 $MountDir = '/tmp/browse/host'; // Složka, kde se dočasně připojují síťové disky 10 10 $TempDir = '/tmp/browse/'; // Složka, kde se dočasně připojují síťové disky 11 if (!is_dir($TempDir)) mkdir($TempDir, 0777);12 if (!is_dir($MountDir)) mkdir($MountDir, 0777);11 if (!is_dir($TempDir)) mkdir($TempDir, 0777); 12 if (!is_dir($MountDir)) mkdir($MountDir, 0777); 13 13 14 14 // Nacteni seznamu sdileni 15 15 $Host = strtoupper(getenv('browse_host')); 16 if ($Host=='') die("Musite nastavit browse_host!\n");16 if ($Host=='') die("Musite nastavit browse_host!\n"); 17 17 $HostID = getenv('browse_id'); 18 if ($HostID=='') die("Musite nastavit browse_id!\n");18 if ($HostID=='') die("Musite nastavit browse_id!\n"); 19 19 //echo("\n================== Prochazec sdileni =================\n\n"); 20 20 echo("Nacitam seznam sdileni pro ".$Host.'('.$HostID.')...'); … … 23 23 echo("OK\n"); 24 24 //print_r($Output); 25 if ($Output[0]=='Connection to '.$Host.' failed') die('Pocitac '.$Host." nenalezen!\n");25 if ($Output[0]=='Connection to '.$Host.' failed') die('Pocitac '.$Host." nenalezen!\n"); 26 26 $Output = array_slice($Output,3); 27 27 $Shares = array(); 28 foreach ($Output as $Radek)29 { 30 if ($Radek=='') break;28 foreach ($Output as $Radek) 29 { 30 if ($Radek=='') break; 31 31 //$Radek = iconv('UTF-8','ISO-8859-2',$Radek); 32 32 $Title = trim(substr($Radek,1,16)); … … 34 34 $Desc = trim(substr($Radek,26)); 35 35 //echo($Title.','.$Type.','.$Desc."\n"); 36 if (($Type=='Disk') && (substr($Title,-1,1)!='$')) array_push($Shares,$Title);36 if (($Type=='Disk') && (substr($Title,-1,1)!='$')) array_push($Shares,$Title); 37 37 //ShowArray($Radek); 38 38 } … … 61 61 //echo(strlen($Nazev).","); 62 62 array_push($Files,$Nazev); 63 } while (($Nazev != "\n") && (!feof($Soubor)));63 } while (($Nazev != "\n") && (!feof($Soubor))); 64 64 array_pop($Files); 65 //if (($Pocet-floor($Pocet/10)*10)==9)65 //if (($Pocet-floor($Pocet/10)*10)==9) 66 66 $Hotovo = floor(ftell($Soubor) / $FileSize * $MaxProgress); 67 if ($Hotovo >= $Pocet)67 if ($Hotovo >= $Pocet) 68 68 { 69 69 echo(str_repeat('#', $Hotovo-$Pocet)); … … 71 71 } 72 72 //echo('['.memory_get_usage().'] '.$Cesta."\n"); 73 foreach ($Files as $Radek)73 foreach ($Files as $Radek) 74 74 { 75 75 //echo($Radek.""); 76 76 $Radek = substr($Radek,0,-1); 77 77 //echo($Radek.",\n"); 78 if ($Radek[0] == 'd') $Type = 2; else $Type = 0;78 if ($Radek[0] == 'd') $Type = 2; else $Type = 0; 79 79 $Prava = substr($Radek,0,strpos($Radek,' ')); 80 80 $Radek = ltrim(substr($Radek,strlen($Prava)+1)); … … 94 94 //echo($Date.','.$Time.','.$Radek.' '); 95 95 96 if ((strpos($Nazev,'.') > 0) && ($Type != 2))96 if ((strpos($Nazev,'.') > 0) && ($Type != 2)) 97 97 { 98 98 $Ext = substr($Nazev,strrpos($Nazev,'.')+1); … … 114 114 $Citac = $Citac + 1; 115 115 // Pokud jde o sloľku, tak projdi jeji obsah a aktualizuj velikost 116 if ($Type == 2)116 if ($Type == 2) 117 117 { 118 118 //echo($Vlozit); 119 // if ($Vlozit!='') DB_Query($Vlozit); // Vloz vsechny polozky119 // if ($Vlozit!='') DB_Query($Vlozit); // Vloz vsechny polozky 120 120 // $Vlozit = ''; 121 121 $VelikostSlozky += Vetev($Cesta.$Nazev.'/',$Zanoreni+1); … … 123 123 } 124 124 //echo($Vlozit); 125 //if ($Vlozit!='') DB_Query($Vlozit); // Vloz vsechny polozky125 //if ($Vlozit!='') DB_Query($Vlozit); // Vloz vsechny polozky 126 126 127 127 // Aktualizuj velikost … … 130 130 $Database->update('NetworkShareItem', 'id='.$Parent, array('size' => $VelikostSlozky)); 131 131 //closedir($Dir); 132 return ($VelikostSlozky);132 return ($VelikostSlozky); 133 133 } 134 134 … … 152 152 $Parent = $Row[0]; 153 153 154 foreach ($Shares as $Share)154 foreach ($Shares as $Share) 155 155 { 156 156 $Pocet = 0; … … 163 163 // echo($SambaSbinDir."mount.cifs '".$ShareFull."' ".$MountDir.' -o guest,codepage=cp852,iocharset=iso8859-2'); 164 164 passthru('ls -A -R -X -l --time-style=+"%Y-%m-%d %I:%M:%S" '.$MountDir.'>'.$TempDir.$Host.'.list 2>'.$TempDir.'errors/'.$Host.'_'.$Share.'.err',$Result); 165 //if ($Result==0)165 //if ($Result==0) 166 166 //{ 167 167 echo("OK\n"); 168 168 169 if (file_exists($TempDir.$Host.'.list'))169 if (file_exists($TempDir.$Host.'.list')) 170 170 { 171 171 // Přidej poloľku sdílení do datanáze … … 215 215 $DbResult = $Database->query('SELECT id FROM hosts'); 216 216 $Vyber = ''; 217 while ($Row = $DbResult->fetch_array())217 while ($Row = $DbResult->fetch_array()) 218 218 $Vyber .= $Row['id'].','; 219 219 … … 226 226 echo("Chyby sdílení...\n"); 227 227 $Database->delete('NetworkShareError', 'host="'.$Host.'"'); 228 if (is_dir($TempDir.'errors'))228 if (is_dir($TempDir.'errors')) 229 229 { 230 230 $Dir = scandir($TempDir.'errors'); 231 foreach ($Dir as $File)231 foreach ($Dir as $File) 232 232 { 233 if (substr($File, 0, strpos($File, '_')) == $Host)233 if (substr($File, 0, strpos($File, '_')) == $Host) 234 234 { 235 235 $Share = substr($File, strpos($File, '_')+1, -4); 236 236 $ShareFull = '//'.$Host.'/'.$Share; 237 if (filesize($TempDir.'errors/'.$File) > 0)237 if (filesize($TempDir.'errors/'.$File) > 0) 238 238 { 239 239 $ErrorFile = fopen($TempDir.'errors/'.$File, 'r+'); 240 while (!feof($ErrorFile))240 while (!feof($ErrorFile)) 241 241 { 242 242 $Row = fgets($ErrorFile); 243 if ($Row != '')243 if ($Row != '') 244 244 { 245 245 $Row = substr($ShareFull.'/'.substr($Row, 39), 0, -1); -
trunk/Modules/NetworkShare/firefox.php
r790 r873 10 10 var msg="Přidání vyhledávacího modulu selhalo - "; 11 11 12 if ((typeof window.sidebar == "object") && (typeof window.sidebar.addSearchEngine == "function")){13 if (engineURL == null || engineURL == ""){12 if ((typeof window.sidebar == "object") && (typeof window.sidebar.addSearchEngine == "function")){ 13 if (engineURL == null || engineURL == ""){ 14 14 alert(msg + "nebyla zadána jeho URL."); 15 15 return false; 16 16 } 17 if (iconURL == null || iconURL == ""){17 if (iconURL == null || iconURL == ""){ 18 18 alert(msg + "nebyla zadána URL ikony."); 19 19 return false; 20 20 } 21 if (engineURL.search(/^http:\/\//i) == -1 || engineURL.search(/\.src$/i) == -1){21 if (engineURL.search(/^http:\/\//i) == -1 || engineURL.search(/\.src$/i) == -1){ 22 22 alert(msg + "nebyla zadána platná URL."); 23 23 return false; 24 24 } 25 if (iconURL.search(/^http:\/\//i) == -1 || iconURL.search(/\.(gif|jpg|jpeg|png)$/i) == -1){25 if (iconURL.search(/^http:\/\//i) == -1 || iconURL.search(/\.(gif|jpg|jpeg|png)$/i) == -1){ 26 26 alert(msg + " nebyla platná URL ikony."); 27 27 return false; 28 28 } 29 if (suggestedTitle == null) suggestedTitle = "";30 if (suggestedCategory == null) suggestedCategory = "";29 if (suggestedTitle == null) suggestedTitle = ""; 30 if (suggestedCategory == null) suggestedCategory = ""; 31 31 window.sidebar.addSearchEngine(engineURL, iconURL, suggestedTitle, suggestedCategory); 32 32 }else{ -
trunk/Modules/NetworkShare/online.php
r790 r873 3 3 //$Database->select_db('share'); 4 4 echo("\n====================== Kontrola online pocitacu ============================\n\n"); 5 //while (true)5 //while (true) 6 6 { 7 7 echo('Nacitam strom sdileni...'); … … 13 13 array_shift($Output); 14 14 $Online = array(); // Seznam online pocitacu 15 foreach ($Output as $Radek)15 foreach ($Output as $Radek) 16 16 { 17 if (ord($Radek[0])!=9) continue;17 if (ord($Radek[0])!=9) continue; 18 18 $Host = explode(' ',substr($Radek,3)); 19 19 $Host = $Host[0]; … … 21 21 $Section = 0; 22 22 // Zjisti IP a MAC adresu 23 if ($Host=='CENTRALA')23 if ($Host=='CENTRALA') 24 24 { 25 25 $MAC = '00:E0:4C:20:64:22'; … … 27 27 $Section = 0; 28 28 } else 29 if ($Host=='CENTRALA2')29 if ($Host=='CENTRALA2') 30 30 { 31 31 $MAC = '00:E0:4C:20:64:22'; … … 38 38 //echo('arping -c 1 '.$Host); 39 39 exec('arping -c 1 '.$Host,$Output); 40 if (count($Output)!=4)40 if (count($Output)!=4) 41 41 { 42 42 $Output = array(); 43 43 exec('arping -I wlan0 -c 1 '.$Host,$Output); 44 if (count($Output)!=4)44 if (count($Output)!=4) 45 45 { 46 46 $Output = array(); 47 47 exec('arping -I wlan1 -c 1 '.$Host,$Output); 48 if (count($Output)!=4)48 if (count($Output)!=4) 49 49 { 50 50 $Output = array(); 51 51 exec('arping -I wlan2 -c 1 '.$Host,$Output); 52 if (count($Output)!=4)52 if (count($Output)!=4) 53 53 { 54 54 $Output = array(); 55 55 exec('arping -I eth2 -c 1 '.$Host,$Output); 56 if (count($Output)!=4) continue;56 if (count($Output)!=4) continue; 57 57 else $Section = 4; 58 58 } else $Section = 3; … … 74 74 //print_r($Online); 75 75 // Aktivuj online pocitace 76 foreach ($Online as $Item)76 foreach ($Online as $Item) 77 77 { 78 78 $DbResult = $Database->query("SELECT * FROM hosts WHERE name='".$Item['host']."'"); 79 if ($DbResult->num_rows > 0)79 if ($DbResult->num_rows > 0) 80 80 { 81 81 $Database->update('hosts',"name='".$Item['host']."'",array( 'IP' => $Item['IP'], 'MAC' => $Item['MAC'], 'online' => 1, 'lastdate' => 'NOW()', 'section' => $Section)); … … 85 85 echo("\nSeznam offline pocitacu:\n"); 86 86 $DbResult = $Database->query("SELECT * FROM hosts WHERE online=0"); 87 while ($Row = $DbResult->fetch_array())87 while ($Row = $DbResult->fetch_array()) 88 88 { 89 89 echo($Row['name'].", "); -
trunk/Modules/NetworkShare/playlist.php
r790 r873 6 6 $Vyber = ''; 7 7 $Podminka = ''; 8 while ($Row = $DbResult->fetch_array())8 while ($Row = $DbResult->fetch_array()) 9 9 $Vyber .= $Row['id'].','; 10 10 $Podminka .= ' AND (host IN ('.substr($Vyber,0,-1).'))'; … … 25 25 $Cesta = ''; //$Row['name']; 26 26 $i = 0; 27 while (($Otec>1)&&($i<$MaxNesting))27 while (($Otec>1)&&($i<$MaxNesting)) 28 28 { 29 29 $DbResult = $Database->query("SELECT id,name,parent FROM items WHERE id=$Otec"); … … 33 33 $i++; 34 34 } 35 if ($i >= $MaxNesting) $Cesta = '?'.'\\'.$Cesta;36 return ('\\\\'.$Cesta);35 if ($i >= $MaxNesting) $Cesta = '?'.'\\'.$Cesta; 36 return ('\\\\'.$Cesta); 37 37 } 38 38 … … 40 40 { 41 41 //$FileInfo = new finfo(FILEINFO_MIME); 42 //return ($FileInfo->file($FileName));43 return ('');42 //return ($FileInfo->file($FileName)); 43 return (''); 44 44 } 45 45 … … 51 51 $Dir = ''; 52 52 $DbResult = $Database->select('items', '*', 'ext="mp3"'.$Podminka); //.' LIMIT 0,1000'); 53 while ($Row = $DbResult->fetch_array())53 while ($Row = $DbResult->fetch_array()) 54 54 { 55 if ($Parent != $Row['parent']) $Dir = PlnaCesta($Row); //echo('d'.PlnaCesta($Row)."\n");55 if ($Parent != $Row['parent']) $Dir = PlnaCesta($Row); //echo('d'.PlnaCesta($Row)."\n"); 56 56 $Parent = $Row['parent']; 57 57 echo($Dir.$Row['name'].'.'.$Row['ext']."\n"); -
trunk/Modules/NetworkShare/update.php
r790 r873 4 4 5 5 $Dnes = date('Y-m-d'); 6 //while (1)6 //while (1) 7 7 //{ 8 8 $Hosts = array(); 9 9 $StartTime = GetMicrotime(); 10 10 $DbResult = $Database->query("SELECT * FROM NetworkDevice WHERE Online=1 AND (Block=0 OR Name='centrala') AND (Name!='GATE') AND User>0"); 11 while ($Row = $DbResult->fetch_array())11 while ($Row = $DbResult->fetch_array()) 12 12 { 13 13 //echo('Host: '.$Host."...\n"); … … 16 16 $HostID = 100; 17 17 $StartTime2 = GetMicrotime(); 18 if ($Dnes != $Row['last_share_check'])18 if ($Dnes != $Row['last_share_check']) 19 19 { 20 20 echo("Kontroluji ".$Row['Name']."...\n");
Note:
See TracChangeset
for help on using the changeset viewer.