summaryrefslogtreecommitdiffstats
path: root/inc/lib_files.php
blob: dbafa52a180e3c74c07ad0884e9904859017d437 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
<?php

/**
* ownCloud
*
* @author Frank Karlitschek 
* @copyright 2010 Frank Karlitschek karlitschek@kde.org 
* 
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
* License as published by the Free Software Foundation; either 
* version 3 of the License, or any later version.
* 
* This library 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 AFFERO GENERAL PUBLIC LICENSE for more details.
*  
* You should have received a copy of the GNU Lesser General Public 
* License along with this library.  If not, see <http://www.gnu.org/licenses/>.
* 
*/



/**
 * Class for fileserver access
 *
 */
class OC_FILES {

  /**
   * show a web GUI filebrowser
   *
   * @param basedir $basedir
   * @param dir $dir
   */
 public static function showbrowser($basedir,$dir){/*
    global $CONFIG_DATEFORMAT;
    global $WEBROOT;

    $directory=$basedir.'/'.$dir;

    // exit if try to access files outside our directory
    if(strstr($dir,'..')<>false) exit();
    $directory=realpath($directory);

    $dirs=explode('/',$dir);

    // breadcrumb
    if(count($dirs)>1) {
      echo('<div class="center"><table cellpadding="2" cellspacing="0" border="0"><tr>');
      echo('<td class="nametext"><a href="'.$WEBROOT.'/">home</a></td>');
      $currentdir='';
      foreach($dirs as $d) {
        $currentdir.='/'.$d.'';
        if($d<>'') echo('<td class="nametext"><a href="'.$WEBROOT.'/?dir='.$currentdir.'"><img src="'.$WEBROOT.'/img/arrow.png" />&nbsp;'.$d.'</a></td>');
      }
      echo('</tr></table></div>');
    }

    // files and directories
    echo('<div class="center"><table cellpadding="6" cellspacing="0" border="0" class="browser">');
    $filesfound=false;
    $content=self::getdirectorycontent($directory);
    if($content){
       foreach($content as $file){
          echo('<tr class="browserline">');
          OC_UTIL::showicon($file['type']);
          if($file['type']=='dir') echo('<td class="nametext"><a href="'.$WEBROOT.'/?dir='.$dir.'/'.$file['name'].'">'.$file['name'].'</a></td>');
          if($file['type']<>'dir') echo('<td class="nametext"><a href="'.$WEBROOT.'/?dir='.$dir.'&file='.$file['name'].'">'.$file['name'].'</a></td>');
          if($file['type']<>'dir') echo('<td class="sizetext">'.$file['size'].' byte</td>'); else echo('<td></td>');
          echo('<td class="sizetext">'.date($CONFIG_DATEFORMAT,$file['mtime']).'</td>');
          echo('</tr>');
       }
    }
    echo('</table>');
    if(!$content) echo('<p>no files here</p>');
    echo('</div>');*/
    echo '<div id="content"/>';
  }
  
  /**
   * get the content of a directory
   * @param dir $directory
   */
  public static function getdirectorycontent($directory){
     $filesfound=true;
     $content=array();
     $dirs=array();
     $file=array();
     if (is_dir($directory)) {
      if ($dh = opendir($directory)) {
        while (($filename = readdir($dh)) !== false) {
          if($filename<>'.' and $filename<>'..'){
            $file=array();
            $filesfound=true;
            $file['name']=$filename;
            $file['directory']=$directory;
            $stat=stat($directory.'/'.$filename);
            $file=array_merge($file,$stat);
            $file['type']=filetype($directory .'/'. $filename);
            if($file['type']=='dir'){
               $dirs[$file['name']]=$file;
            }else{
               $files[$file['name']]=$file;
            }
          }
        }
      closedir($dh);
      }
    }
    ksort($dirs);
    ksort($files);
    $content=array_merge($dirs,$files);
    if($filesfound){
       return $content;
    }else{
       return false;
    }
  }



  /**
   * return the cntent of a file
   *
   * @param dir  $dir
   * @param file $file
   */
  public static function get($dir,$file){
    if(isset($_SESSION['username']) and $_SESSION['username']<>'') {
      global $CONFIG_DATADIRECTORY;
      $filename=$CONFIG_DATADIRECTORY.'/'.$dir.'/'.$file;

      // exit if try to access files outside our directory
      if(strstr($filename,'..')<>false) exit();

      OC_LOG::event($_SESSION['username'],3,$dir.'/'.$file);

      header('Content-Description: File Transfer');
      header('Content-Type: application/octet-stream');
      header('Content-Disposition: attachment; filename='.basename($file));
      header('Content-Transfer-Encoding: binary');
      header('Expires: 0');
      header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
      header('Pragma: public');
      header('Content-Length: ' . filesize($filename));
      readfile($filename);
    }
    exit;
  }


}



?>