2012-08-21 18:25:56 +00:00
|
|
|
<?php
|
|
|
|
/*
|
|
|
|
$Id: m_log.php,v 1.4 2004/05/19 14:23:06 benjamin Exp $
|
|
|
|
----------------------------------------------------------------------
|
|
|
|
LICENSE
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU General Public License (GPL)
|
|
|
|
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.
|
|
|
|
|
|
|
|
To read the license please visit http://www.gnu.org/copyleft/gpl.html
|
|
|
|
----------------------------------------------------------------------
|
|
|
|
Original Author of file: Steven Lerider
|
|
|
|
----------------------------------------------------------------------
|
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* Classe de gestion des erreurs apparaissant lors d'appels API.
|
|
|
|
*
|
|
|
|
* <p>Cette classe gère les logs utilisasteurs
|
|
|
|
* </p>
|
|
|
|
* Copyleft {@link http://alternc.net/ AlternC Team}
|
|
|
|
*
|
|
|
|
* @copyright AlternC-Team 2002-11-01 http://alternc.net/
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
class m_log {
|
|
|
|
|
2012-08-23 07:36:11 +00:00
|
|
|
function m_log(){
|
|
|
|
}
|
2012-08-21 18:25:56 +00:00
|
|
|
|
2012-08-23 07:36:11 +00:00
|
|
|
function list_logs_directory($dir){
|
|
|
|
global $cuid,$err;
|
|
|
|
$err->log("log","list_logs_directory");
|
2012-08-21 18:25:56 +00:00
|
|
|
|
2012-08-23 07:47:30 +00:00
|
|
|
$c=array();
|
2012-08-21 18:25:56 +00:00
|
|
|
$dir2=$dir;
|
|
|
|
if ($dir = @opendir($dir)) {
|
|
|
|
while (($file = readdir($dir)) !== false) {
|
2012-08-23 07:36:11 +00:00
|
|
|
if ($file!="." && $file!=".." && realpath($dir2 . "/" . $file) == $dir2 . "/" . $file){
|
|
|
|
$absfile=$dir2."/".$file;
|
|
|
|
$c[]=array("name"=>$file,
|
|
|
|
"creation_date"=>date("F d Y H:i:s.", filectime($absfile)),
|
|
|
|
"filesize"=>filesize($absfile),
|
|
|
|
"downlink"=>"logs_download.php?file=".urlencode($file),
|
|
|
|
);
|
|
|
|
}
|
2012-08-21 18:25:56 +00:00
|
|
|
}
|
|
|
|
closedir($dir);
|
|
|
|
}
|
|
|
|
usort($c,"compare_logname");
|
2012-08-23 07:36:11 +00:00
|
|
|
return $c;
|
2012-08-21 18:25:56 +00:00
|
|
|
|
2012-08-23 07:36:11 +00:00
|
|
|
}//list_logs
|
2012-08-21 18:25:56 +00:00
|
|
|
|
2012-08-23 07:36:11 +00:00
|
|
|
function list_logs_directory_all($dirs){
|
|
|
|
global $err;
|
|
|
|
$err->log("log","get_logs_directory_all");
|
|
|
|
$c=array();
|
|
|
|
foreach($dirs as $dir=>$val){
|
|
|
|
$c[$dir]=$this->list_logs_directory($val);
|
|
|
|
}
|
|
|
|
return $c;
|
2012-08-21 18:25:56 +00:00
|
|
|
|
2012-08-23 07:36:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function get_logs_directory(){
|
|
|
|
global $cuid,$db,$err;
|
|
|
|
$err->log("log","get_logs_directory");
|
|
|
|
|
|
|
|
$db->query("select login from membres where uid=$cuid ;");
|
2012-08-21 18:25:56 +00:00
|
|
|
if ($db->num_rows()==0) {
|
|
|
|
$err->raise("log",1);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
$db->next_record();
|
2012-08-23 07:41:32 +00:00
|
|
|
$c=array("dir"=>ALTERNC_LOGS."/".$cuid."-".$db->f("login"));
|
2012-08-23 07:36:11 +00:00
|
|
|
return $c;
|
|
|
|
}
|
|
|
|
|
|
|
|
function download_link($file){
|
|
|
|
global $err,$mem;
|
|
|
|
$err->log("log","download_link");
|
2012-08-21 18:25:56 +00:00
|
|
|
header("Content-Disposition: attachment; filename=".$mem->user["login"].".zip");
|
|
|
|
header("Content-Type: application/force-download");
|
|
|
|
header("Content-Transfer-Encoding: binary");
|
|
|
|
$f=$this->get_logs_directory();
|
|
|
|
$ff=$f['dir']."/".basename($file);
|
|
|
|
set_time_limit(0);
|
2012-08-23 07:36:11 +00:00
|
|
|
readfile($ff);
|
|
|
|
}
|
2012-08-21 18:25:56 +00:00
|
|
|
|
|
|
|
|
|
|
|
} // end class
|
|
|
|
|