'.strip_tags($_SESSION['ERRORS']).'';unset($_SESSION['ERRORS']);} # Libs & dependencies require_once('core/core.php'); require_once('core/auto_restrict.php'); # Connected user only ! include("core/auto_thumb.php"); # Initialisation if (empty($layout)){$layout=$_SESSION['aspect'];} if (!isset($shared_folders)){$shared_folders='';} if (!isset($back_link)){$back_link='';} $upload_path_size=strlen($_SESSION['upload_root_path'].$_SESSION['upload_user_path']); if (empty($_SESSION['mode'])){$mode='view';}else{$mode=$_SESSION['mode'];} if (empty($_SESSION['current_path'])){ $path_list=$_SESSION['upload_root_path'].$_SESSION['upload_user_path']; }else{ $path_list=$_SESSION['upload_root_path'].$_SESSION['upload_user_path'].addslash_if_needed($_SESSION['current_path']); } # Building current tree and prepare pagination if (empty($_SESSION['filter'])){$liste=tree($path_list,null,false,false,$tree);} else{$liste=tree($path_list,null,false,false,$tree);} $total_files=count($liste);$from=0; $max_pages=ceil($total_files/$_SESSION['max_files_per_page']); if (!empty($_GET['from'])){$from=$_GET['from'];} $liste=array_slice($liste, $from*$_SESSION['max_files_per_page'],$_SESSION['max_files_per_page']); $remain=$total_files-(($from+1)*$_SESSION['max_files_per_page']); if ($allow_folder_size_stat){$size_folder=folder_size($path_list);} if (count($liste)>0){ $files=array_flip($ids); $folderlist=''; $filelist=''; foreach ($liste as $fichier){ $nom=_basename($fichier); if ($nom!='index.html'&&!empty($files[$fichier])){ $id=$files[$fichier]; $class='';$title=''; if (substr($id, 0,1)=='*'){ # add class burn id after access $class='burn'; $title=e('The user can access this only one time', false); }elseif (strlen($id)>strlen(uniqid(true))){ # add class password protected $class='locked'; $title=e('The user can access this only with the password', false); } $extension=strtolower(pathinfo($fichier,PATHINFO_EXTENSION)); # adding view icon if needed if ($extension=='jpg'||$extension=='jpeg'||$extension=='gif'||$extension=='png'||$extension=='svg'){ if ($use_lightbox){ $icone_visu=''; }else{ $icone_visu=''; } if (!$click_on_link_to_download){$target='target="_BLANK"';}else{$target=null;} }elseif($extension=='m3u'){ $protocol = (!empty($_SERVER['HTTPS']) && $_SERVER['HTTPS'] !== 'off' || $_SERVER['SERVER_PORT'] == 443) ? "https://" : "http://"; $icone_visu=''; }elseif($extension=='txt'||$extension=='nfo'||$extension=='md'){ $icone_visu=''; }else{$icone_visu='';} #adding edit icon if needed if (is_file($fichier)&&_mime_content_type($fichier)=='text/plain'&&$extension!='js'&&$extension!='php'&&$extension!='sphp'){ $icone_edit=''; }else{$icone_edit='';} # create item for file or folder $fichier_short=substr($fichier,$upload_path_size); if (is_dir($fichier)){ # Item is a folder $current_tree=tree($fichier,null,false,false,$tree); if (only_type($current_tree,'.jpg .jpeg .gif .png') || only_type($current_tree,'.mp3 .ogg')||only_type($fichier,'.jpg .jpeg .gif .png') || only_type($fichier,'.mp3 .ogg')){ $icone_visu=''; } if ($allow_folder_size_stat){$taille=folder_size($fichier);}else{$taille='';} # no share folder button if there's only one user if ($mode=='links'&&count($auto_restrict['users'])>1){ $icone_share=''; }else{$icone_share='';} $array=array( '#CLASS' => $class, '#ID' => $id, '#FICHIER' => $fichier_short, '#TOKEN' => TOKEN, '#SIZE' => $taille, '#NAME' => $nom, '#USERSHAREBUTTON' => $icone_share, '#TITLE' => $title, '#ICONE_VISU' => $icone_visu, '#SLASHEDNAME' => addslashes($nom), '#SLASHEDFICHIER' => addslashes($fichier_short), ); $folderlist.= template($mode.'_folder_'.$layout,$array); $current_tree=''; }elseif (is_file($fichier) && $_SESSION['GD'] && ($extension=='gif'||$extension=='jpg'||$extension=='jpeg'||$extension=='png')){ # Item is a picture auto_thumb($fichier,64,64); if (empty($target)){$target='download="'.$nom.'"';} $array=array( '#CLASS' => $class, '#ID' => $id, '#FICHIER' => $fichier_short, '#TOKEN' => TOKEN, '#SIZE' => sizeconvert(filesize($fichier)), '#NAME' => $nom, '#TARGET' => $target, '#TITLE' => $title, '#EXTENSION' => $extension, '#ICONE_VISU' => $icone_visu, '#SLASHEDNAME' => addslashes($nom), '#SLASHEDFICHIER' => addslashes($fichier_short), ); $filelist.= template($mode.'_image_'.$layout,$array); }elseif (is_file($fichier) && $extension=='zip' && $_SESSION['zip']){ # Item is a zip file=> add change to folder $icone_visu=''; $array=array( '#CLASS' => $class, '#ID' => $id, '#FICHIER' => $fichier_short, '#TOKEN' => TOKEN, '#SIZE' => sizeconvert(filesize($fichier)), '#NAME' => $nom, '#TARGET' => 'download="'.$nom.'"', '#TITLE' => $title, '#EXTENSION' => $extension, '#ICONE_VISU' => $icone_visu, '#ICONE_EDIT' => $icone_edit, '#SLASHEDNAME' => addslashes($nom), '#SLASHEDFICHIER' => addslashes($fichier_short), ); $filelist.= template($mode.'_file_'.$layout,$array); }elseif (is_file($fichier)){ chrono('fichier:'.$nom); # all other types if (empty($target)){$target='download="'.$nom.'"';} $array=array( '#CLASS' => $class, '#ID' => $id, '#FICHIER' => $fichier_short, '#TOKEN' => TOKEN, '#SIZE' => sizeconvert(filesize($fichier)), '#NAME' => $nom, '#TITLE' => $title, '#TARGET' => $target, '#EXTENSION' => $extension, '#ICONE_VISU' => $icone_visu, '#ICONE_EDIT' => $icone_edit, '#SLASHEDNAME' => addslashes($nom), '#SLASHEDFICHIER' => addslashes($fichier_short), ); $filelist.= template($mode.'_file_'.$layout,$array); chrono('fichier:'.$nom); } } } if ($mode=='view'){ $column=''; $column_header=''; $form_header='
'; $form_footer='
'; }else{ $column=$form_header=$form_footer=$column_header=''; } if ($layout=='list'&&!isset($_GET['async'])){ # List layout echo $form_header; echo ' '.$column_header.' '; echo $shared_folders.$back_link.$folderlist.$filelist; if (!empty($size_folder)){echo ''.$column.'';} echo '
  '.e('Filename',false).' '.e('Filesize',false).'  
Total:'.$size_folder.'
'; echo $form_footer; }elseif ($layout=='icon'&&!isset($_GET['async'])){ # Icon layout echo '
'; echo $shared_folders.$folderlist.$filelist; echo '
'; if (!empty($size_folder)){echo '
'.e('Foldersize',false).': '.$size_folder.'
';} }else{ # Ajax load more => content only echo $shared_folders.$back_link.$folderlist.$filelist; } # «Load more» button if ($remain>0&&!isset($_GET['async'])){ if ($remain>$_SESSION['max_files_per_page']){$remain=$_SESSION['max_files_per_page'];} $from++; echo ''.e('Load',false).' '.$remain.' '.e('more',false).''; } }else{echo ''.$shared_folders.'
'.e('No file or folder',false).'
';} chrono('etape2 listfiles.php '); ?>