/[docman2]/docman.php
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /docman.php

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.12 by dpavlin, Sat Jul 27 22:26:30 2002 UTC revision 1.44 by dpavlin, Thu Oct 30 19:12:20 2003 UTC
# Line 1  Line 1 
1  <?php  <?php
2    
3  /*  /*
4   *      Document Manager ][   *      Document Manager ][
5   *   *
6   *      Dobrica Pavlinusic <dpavlin@rot13.org>   *      Dobrica Pavlinusic <dpavlin@rot13.org>
7   *   *
8   *      License: GPL2   *      License: GPL2
9   *   *
10   *      Document Manager 1.x was based on   *      Document Manager 1.x was based on
11   *      Copyright 1999 by John Martin d/b/a www.ANYPORTAL.com   *      Copyright 1999 by John Martin d/b/a www.ANYPORTAL.com
12   *      PHP version Copyright 2000 by Stefan@Wiesendanger.org   *      PHP version Copyright 2000 by Stefan@Wiesendanger.org
13   *   *
14   *      For more info, please see web pages at   *      For more info, please see web pages at
15   *      http://www.rot13.org/~dpavlin/docman.html   *      http://www.rot13.org/~dpavlin/docman.html
16   *   *
17   */   */
18    
19    
20  //////////////////////////////////////////////////////////////////  //////////////////////////////////////////////////////////////////
21  // CONFIGURATION OPTIONS  // CONFIGURATION OPTIONS
22    
23  //      error_reporting(4) ;            // how verbose ?          error_reporting(E_ALL) ;                // how verbose ?
24    
25          // from where to include auth_*.php modules?          // try to do some guessing about configuration
26          $gblIncDir = "/data/docman2";          $script = $HTTP_SERVER_VARS["SCRIPT_FILENAME"];
27            if (is_link($script)) $script=readlink($script);
28          // force download on view (so it won't open in associated application)          $gblIncDir = dirname($script);
29          $gblForceDownload = 0;          $html = $gblIncDir."/html";
30    
31          // date format          // location of master docman configuration file
32          $gblDateFmt="Y-m-d";          $docman_conf = "/etc/docman.conf";
33  //      $gblDateFmt="D, F d, Y";          if (! file_exists($docman_conf)) {
34                    $error = "Can't find master configuration file <tt>$docman_conf</tt>. See <tt>docman2/doc/upgrade.html#docman_conf</tt> for more informations";
35          // time format  
36          $gblTimeFmt="H:i:s";                  error_log("docman: $error");
37  //      $gblTimeFmt="g:i:sA";                  Error("docman not installed completly",$error);
38            }
39          // Number of backup files to keep          include($docman_conf);
40          $gblNumBackups=3;  
41            if (! isset($gblIncDir)) {
42          // show red star if newer than ... days                  $error = "Can't findi <tt>\$gblIncDir</tt> in master configuration file <tt>$docman_conf</tt>. This variable should point to docman installation directory";
43          $gblModDays=1;  
44                    error_log("docman: $error");
45          // choose GifIcon below unless you have the M$                  Error("docman not installed completly",$error);
46          // WingDings font installed on your system          }
47    
48          $gblIcon="GifIcon";             // MockIcon or GifIcon          // location of html files
49            $html = $gblIncDir."/html";
50          // the directory below should be /icons/ or /icons/small/  
51          // on Apache; a set of icons is included in the distribution          // force download on view (so it won't open in associated application)
52            $gblForceDownload = 0;
53          $gblIconLocation="/icons/";  
54            // date format
55          // files you want to be able to edit in text mode          $gblDateFmt="Y-m-d";
56          // and view with (primitive) syntax highlighting  //      $gblDateFmt="D, F d, Y";
57    
58          $gblEditable = array( ".txt",".asa",".asp",".htm",".html",          // time format
59                                ".cfm",".php3",".php",".phtml",          $gblTimeFmt="H:i:s";
60                                ".shtml",".css" ) ;  //      $gblTimeFmt="g:i:sA";
61    
62          // files that will display as images on the detail page          // Number of backup files to keep
63          // (useless if your browser doesn't support them)          $gblNumBackups=3;
64    
65          $gblImages   = array( ".jpg",".jpeg",".gif",".png",".ico",          // show red star if newer than ... days
66                                ".bmp",".xbm") ;          $gblModDays=1;
67    
68          // which files to hide (separated by ,)          // choose GifIcon below unless you have the M$
69          $gblHide = "";          // WingDings font installed on your system
70    
71          // Where are users? (by default in .htusers file)          $gblIcon="GifIcon";             // MockIcon or GifIcon
72          $gblUsers = "file";  
73            // the directory below should be /icons/ or /icons/small/
74  //////////////////////////////////////////////////////////////////          // on Apache; a set of icons is included in the distribution
75    
76          $gblTitle = "Document Manager";          $gblIconLocation="/icons/";
77          $gblVersion = "2.0-pre1";  
78            // files you want to be able to edit in text mode
79          $secHash    = "";          // and view with (primitive) syntax highlighting
80    
81          // location of html files          $gblEditable = array( ".txt",".asa",".asp",".htm",".html",
82          $html = $gblIncDir."/html";                                ".cfm",".php3",".php",".phtml",
83                                  ".shtml",".css" ) ;
84          LoadLanguage($HTTP_SERVER_VARS["HTTP_ACCEPT_LANGUAGE"]);  
85            // files that will display as images on the detail page
86          // for security and configuration          // (useless if your browser doesn't support them)
87          $realm=$HTTP_SERVER_VARS[HTTP_HOST];  
88            $gblImages   = array( ".jpg",".jpeg",".gif",".png",".ico",
89          $fsDocumentRoot = dirname($HTTP_SERVER_VARS[SCRIPT_FILENAME]);                                ".bmp",".xbm") ;
90          if ($fsDocumentRoot == "") Error("Configuration error","Can't get SCRIPT_FILENAME from your web server. Please set <tt>\$fsDocumentRoot</tt> in <tt>\$</tt>",1);  
91            // which files to hide (separated by ,)
92          // globals for later          $gblHide = "";
93          $gblLogin = $HTTP_SERVER_VARS[PHP_AUTH_USER];  
94          $gblPasswd = $HTTP_SERVER_VARS[PHP_AUTH_PW];          // Where are users? (by default in .htusers file)
95            $gblUsers = "file";
96  //////////////////////////////////////////////////////////////////  
97    //////////////////////////////////////////////////////////////////
98  function LoadLanguage($lang) {  
99            $gblTitle = "Document Manager";
100          global $gblIncDir,$html;          $gblVersion = "2.0-pre4";
101    
102          if (file_exists($gblIncDir."/lang/$lang.php")) {          $secHash    = "";
103                  include($gblIncDir."/lang/$lang.php");  
104                  $html .= "-$lang";          // load language
105          } else {          if (isset($HTTP_SERVER_VARS["HTTP_ACCEPT_LANGUAGE"])) {
106                  include($gblIncDir."/lang/default.php");                  LoadLanguage($HTTP_SERVER_VARS["HTTP_ACCEPT_LANGUAGE"]);
107          }          }
108  }  
109            // does gettext locale function exits?
110  function StartHTML($title,$text="") {          if (! function_exists("_")) {
111                    function _($str) { return $str; }
112          global $html,$fsDocumentRoot,$HTTP_SERVER_VARS;          }
113    
114          $title = $gblTitle." ".$title ;          // for security and configuration
115          $host  = $HTTP_SERVER_VARS["HTTP_HOST"] ;          $realm=$HTTP_SERVER_VARS["HTTP_HOST"];
116          $self  = $HTTP_SERVER_VARS["PHP_SELF"] ;  
117            // globals for later
118          if (file_exists("$fsDocumentRoot/docman.css")) {          $gblLogin = HTTP_SERVER_VAR("PHP_AUTH_USER");
119                  $css=dirname($self)."/docman.css";          $gblPasswd = HTTP_SERVER_VAR("PHP_AUTH_PW");
120          } else {  
121                  $css=$self."?STYLE=get";  //////////////////////////////////////////////////////////////////
122          }  
123    function LoadLanguage($lang) {
124          include("$html/head.html");  
125  }          global $gblIncDir,$html;
126    
127  //////////////////////////////////////////////////////////////////          if (file_exists($gblIncDir."/lang/$lang.php")) {
128                    include($gblIncDir."/lang/$lang.php");
129  function EndHTML() {                  $html .= "-$lang";
130            } elseif (file_exists($gblIncDir."/lang/default.php")) {
131          global $gblDateFmt, $gblTimeFmt, $gblUserName, $PHP_SELF,                  include($gblIncDir."/lang/default.php");
132                  $secHash, $gblVersion, $html,          }
133                  $gblLogin,$gblPasswd;  }
134    
135          $url = $PHP_SELF."?relogin=";  function StartHTML($title,$text="") {
136          if (isset($secHash) && $secHash != "") {  
137                  $url .= $secHash;          global $html,$gblIncDir,$gblTitle,$HTTP_SERVER_VARS;
138          } else {  
139                  $url .= md5($gblLogin.$gblPasswd);          $host  = $HTTP_SERVER_VARS["HTTP_HOST"] ;
140          }          $self  = $HTTP_SERVER_VARS["PHP_SELF"] ;
141          if (isset($gblLogin) && $gblLogin != "" && ($gblPasswd == "" || !isset($gblPasswd))) {  
142                  $url_title="login";          if (file_exists("$gblIncDir/docman.css")) {
143                  $url .= "&force_login=1";                  $css = "";
144          } else {                  $d = dirname($self);
145                  $url_title="relogin";                  if ($d != "/") $css = $d;
146          }                  $css .= "/docman.css";
147          include("$html/footer.html");          } else {
148  } // end function EndHTML                  $css=$self."?STYLE=get";
149            }
150  //////////////////////////////////////////////////////////////////          include("$html/head.html");
151    }
152  function DetailPage($fsRoot,$relDir,$fn) {  
153            //////////////////////////////////////////////////////////////////
154          global $gblEditable, $gblImages, $webRoot, $html, $HTTP_SERVER_VARS ;  
155          $self = $HTTP_SERVER_VARS["PHP_SELF"] ;  function EndHTML() {
156    
157          $relPath  = $relDir . "/" . $fn ;          global $gblDateFmt, $gblTimeFmt, $gblUserName, $PHP_SELF,
158          $fsPath   = $fsRoot . $relPath ;                  $secHash, $gblVersion, $html,
159          $fsDir    = $fsRoot . $relDir ;                  $gblLogin,$gblPasswd;
160    
161          $exists   = file_exists($fsPath) ;          $url = $PHP_SELF."?relogin=";
162          $ext      = strtolower(strrchr($relPath,".")) ;          if (isset($secHash) && $secHash != "") {
163          $editable = ( $ext=="" || strstr(join(" ",$gblEditable),$ext)) ;                  $url .= $secHash;
164          $writable = is_writeable($fsPath) ;          } else {
165          $file_lock = CheckLock($fsPath);                  $url .= md5($gblLogin.$gblPasswd);
166            }
167          if (!$editable && !$exists)          if ( (  (isset($gblLogin) && $gblLogin != "") ||
168                  Error("Creation unsupported for type",$relPath) ;                  (!isset($gblLogin) || $gblLogin == "")
169          if (!exists && !is_writeable($fsDir) )               ) && ($gblPasswd == "" || !isset($gblPasswd))) {
170                  Error("Creation denied",$relDir) ;                  $url_title="login";
171                    $url .= "&force_login=1";
172          $text  = _("Use this page to view, modify or ") ;          } else {
173          if (is_dir($fsPath)) {                  $url_title="relogin";
174                  $text .=_("delete a directory on this ") ;          }
175          } else {          include("$html/footer.html");
176                  $text .= _("delete a single document on this ") ;  
177          };  #       global $debug;
178          $text .= _("web site.") ;        #       if ($debug) print $debug;
179          $title = "("._("Detail Page").")" ;  } // end function EndHTML
180          StartHTML($title, $text) ;  
181    //////////////////////////////////////////////////////////////////
182          echo "<H3>" . $relDir . "/" . $fn . "</H3>" ;  
183          if ($exists) {  // get file info  function DetailPage($fsRoot,$relDir,$fn) {
184                  $fsize = filesize($fsPath) ;          
185                  $fmodified = date("$GLOBALS[gblDateFmt] $GLOBALS[gblTimeFmt]", filemtime($fsPath)) ;          global $gblEditable, $gblImages,
186                  $faccessed = date("$GLOBALS[gblDateFmt] $GLOBALS[gblTimeFmt]", fileatime($fsPath)) ;                  $gblDateFmt, $gblTimeFmt,
187                  $fuid=fileowner($fsPath);                  $gblPermNote,
188                  $fgid=filegroup($fsPath);                  $webRoot, $html,
189                  $userinfo = posix_getpwuid($fuid);                  $HTTP_SERVER_VARS ;
190                  $grpinfo = posix_getgrgid($fgid);          $self = $HTTP_SERVER_VARS["PHP_SELF"] ;
191    
192                  include("$html/DetailPage-file.html");          $relPath  = $relDir . "/" . $fn ;
193          }          $fsPath   = $fsRoot . $relPath ;
194            $fsDir    = $fsRoot . $relDir ;
195          if ( !is_dir($fsPath) && $editable && ($writable || !$exists) && !$file_lock ) {  
196                  $fh = fopen($fsPath,"a+") ;          $exists   = file_exists($fsPath) ;
197                  rewind($fh) ;          $ext      = strtolower(strrchr($relPath,".")) ;
198                  $fstr = fread($fh,filesize($fsPath)) ;          $editable = ( $ext=="" || strstr(join(" ",$gblEditable),$ext)) &&
199                  fclose($fh) ;                  check_perm($relPath,trperm_w);
200                  $fstr = htmlentities( $fstr ) ;          $writable = is_writeable($fsPath) && check_perm($relPath,trperm_w) ;
201  ?>          $writable_dir = is_writeable($fsDir) && check_perm($relDir,trperm_w) ;
202            $file_lock = CheckLock($fsPath);
203  <FORM ACTION="<?= $self ; ?>" METHOD="POST">  
204  <SPAN TITLE="Click [SAVE] to store updated contents.">          if (!$editable && !$exists)
205          <B>DOCUMENT CONTENTS</B>                  Error("Creation denied","Can't create <tt>$relPath</tt>") ;
206  </SPAN><BR>          if (!$exists && !$writable_dir )
207  <TEXTAREA NAME="FILEDATA" ROWS=18 COLS=70 WRAP="OFF"><?php                  Error("Creation denied","Can't write in directory <tt>$relDir</tt> while creating <tt>$relPath</tt>for which user has permissions.",1);
208  echo($fstr) ; ?></TEXTAREA>  
209  <INPUT TYPE="HIDDEN" NAME="DIR" VALUE="<?= $relDir ; ?>">          $text  = _("Use this page to view, modify or ") ;
210  <INPUT TYPE="HIDDEN" NAME="FN" VALUE="<?= $fn ; ?>">          if (is_dir($fsPath)) {
211  <INPUT TYPE="HIDDEN" NAME="POSTACTION" VALUE="SAVE">                  $text .=_("delete a directory on this ") ;
212  <INPUT TYPE="HIDDEN" SIZE=48 MAXLENGTH=255 NAME="RELPATH"          } else {
213          VALUE="<?= $relPath ; ?>">                  $text .= _("delete a single document on this ") ;
214  <br>          };
215  <INPUT TYPE="RESET" VALUE="UNDO ALL CHANGES">          $text .= _("web site.") ;      
216  <INPUT TYPE="SUBMIT" VALUE="SAVE">          $title = "("._("Detail Page").")" ;
217  </FORM>          StartHTML($title, $text) ;
218    
219  <?php          print "<H3>".$relDir.$fn."</H3>";
220          }  
221          if ( !$file_lock && $ext!="" && strstr(join(' ',$gblImages),$ext) ) {            if ($exists) {  // get file info
222                  $info  = getimagesize($fsPath) ;                  $fsize = filesize($fsPath) ;
223                  $tstr = "<IMG SRC=\"$webRoot".urlpath($relPath)."\" BORDER=0 " ;                  $fmodified = date("$gblDateFmt $gblTimeFmt", filemtime($fsPath)) ;
224                  $tstr .= $info[3] . " ALT=\"" . $fn . " - " ;                  $faccessed = date("$gblDateFmt $gblTimeFmt", fileatime($fsPath)) ;
225                  $tstr .= (int)(($fsize+1023)/1024) . "Kb\">" ;                  $fuid=fileowner($fsPath);
226  //              echo htmlentities($tstr) . "<BR><BR>" . $tstr ;                  $fgid=filegroup($fsPath);
227                  echo $tstr ;                  $userinfo = posix_getpwuid($fuid);
228          }                  $grpinfo = posix_getgrgid($fgid);
229    
230  ?>                  include("$html/DetailPage-file.html");
231            }
232  <FORM ACTION="<?= $self ; ?>" METHOD="POST">  
233  <INPUT TYPE="HIDDEN" NAME="DIR" VALUE="<?= $relDir ; ?>">          if ( !is_dir($fsPath) && $editable && ($writable || !$exists) && !$file_lock ) {
234  <INPUT TYPE="HIDDEN" NAME="FN" VALUE="<?= $fn ; ?>">                  $fh = fopen($fsPath,"a+") ;
235  <INPUT TYPE="SUBMIT" NAME="POSTACTION" VALUE="CANCEL"><BR>                  rewind($fh) ;
236                    $fstr = fread($fh,filesize($fsPath)) ;
237  <?php                  fclose($fh) ;
238                    $fstr = htmlentities( $fstr ) ;
239          if ($file_lock) {  
240  ?>                  include("$html/DetailPage-edit.html");
241  <hr>          }
242  <SPAN TITLE="Check OK and click UNLOCK to remove lock on file.">          if ( !$file_lock && $ext!="" && strstr(join(' ',$gblImages),$ext) ) {  
243  <B>OK TO FORCE LOCK REMOVAL ON "<?= $fn ; ?>" HELD BY <?= $file_lock ?>? </B></SPAN>                  $info  = getimagesize($fsPath) ;
244  <INPUT TYPE="CHECKBOX" NAME="CONFIRM">                  $tstr = "<IMG SRC=\"$self?A=V&D=".urlpath(dirname($relPath))."&F=".urlpath(basename($relPath))."\" BORDER=0 " ;
245  <INPUT TYPE="SUBMIT" NAME="POSTACTION" VALUE="UNLOCK">                  $tstr .= $info[3] . " ALT=\"" . $fn . " - " ;
246  <?                  $tstr .= (int)(($fsize+1023)/1024) . "Kb\">" ;
247          } // file_lock  //              echo htmlentities($tstr) . "<BR><BR>" . $tstr ;
248                    echo $tstr ;
249          if (substr($fn,0,4) == ".del") {          }
250                  $action="UNDELETE";  
251                  $desc="undelete previously deleted file";  
252          } else {          print '<FORM ACTION="'.$self.'" METHOD="POST">
253                  $action="DELETE";                  <INPUT TYPE="HIDDEN" NAME="DIR" VALUE="'.$relDir.'">
254                  $desc="delete";                  <INPUT TYPE="HIDDEN" NAME="FN" VALUE="'.$fn.'">
255          }                  <INPUT TYPE="SUBMIT" NAME="POSTACTION" VALUE="CANCEL"><BR>
256                    ';
257          if ($exists && $writable) {  
258  ?>          if ($file_lock && check_perm($relDir.$fn,trperm_w)) {
259                    include("$html/DetailPage-unlock.html");
260  <HR>          } // file_lock
261  <a name="undelete">  
262  <SPAN TITLE="Check OK and click [<?= $action ?>] to <?= $desc ?>.">          if (substr($fn,0,4) == ".del") {
263  <B>OK TO <?= $action ?> "<?= $fn ; ?>"? </B></SPAN>                  $action="UNDELETE";
264  <INPUT TYPE="CHECKBOX" NAME="CONFIRM">                  $desc="undelete previously deleted file";
265  <INPUT TYPE="SUBMIT" NAME="POSTACTION" VALUE="<?= $action ?>">          } else {
266                    $action="DELETE";
267  <HR>                  $desc="delete";
268  <a name="rename">          }
269  <SPAN TITLE="Check OK and click [RENAME] to rename.">  
270  <B>OK TO RENAME "<?= $fn ; ?>" TO          if ($exists && $writable) {
271  <INPUT TYPE="TEXT" SIZE=24 MAXLENGTH=255 NAME="NEWNAME" VALUE="<?= $fn ?>">                  include("$html/DetailPage-undelete.html");
272  ? </B></SPAN>                  include("$html/DetailPage-rename.html");
273  <INPUT TYPE="CHECKBOX" NAME="CONFIRM">  
274  <INPUT TYPE="SUBMIT" NAME="POSTACTION" VALUE="RENAME">          }
275            
276  <?php          if (check_perm($relDir.$fn,$gblPermNote)) {
277          }       // exists && writable                  include("$html/DetailPage-note.html");
278  ?>          }
279  <HR>  
280  <a name="note">          print "</FORM>";
281  <B>NOTE FOR "<?= $fn ; ?>":  
282  <INPUT TYPE="TEXT" SIZE=50 MAXLENGTH=255 NAME="NOTE" VALUE="<?= ReadNote($fsPath) ?>">          $name=basename("$fsDir/$fn");
283  </B></SPAN>          $logname=dirname("$fsDir/$fn")."/.log/$name";
284  <INPUT TYPE="SUBMIT" NAME="POSTACTION" VALUE="NOTE">          $bakdir=dirname("$fsDir/$fn")."/.bak";
285            if (file_exists($logname)) {
286  </FORM>                  $log=fopen($logname,"r");
287                    $cl1=" class=LST"; $cl2="";
288  <?php                  $logarr = array();
289                    while($line = fgetcsv($log,512,"\t")) {
290          $name=basename("$fsDir/$fn");                          $cl=$cl1; $cl1=$cl2; $cl2=$cl;
291          $logname=dirname("$fsDir/$fn")."/.log/$name";                          array_unshift($logarr,array($cl,$line[0],$line[1],$line[2],$line[3]));
292          $bakdir=dirname("$fsDir/$fn")."/.bak";                  }
293          if (file_exists($logname)) {                  fclose($log);
294                  $log=fopen($logname,"r");                  if (is_dir("$fsDir/$fn")) {
295                  $cl1=" class=LST"; $cl2="";                          $whatis="DIRECTORY";
296                  $logarr = array();                  } else {
297                  while($line = fgetcsv($log,512,"\t")) {                          $whatis="FILE";
298                          $cl=$cl1; $cl1=$cl2; $cl2=$cl;                  }
299                          array_unshift($logarr,array($cl,$line[0],$line[1],$line[2],$line[3]));                  print "<hr><br><b>CHANGES TO THIS $whatis</b><br><table border=0 width=100%>\n";
300                  }                  $bakcount = 0;  // start from 0, skip fist backup (it's current)
301                  fclose($log);                  while ($e = array_shift($logarr)) {
302                  if (is_dir("$fsDir/$fn")) {                          if (stristr($e[4],"upload") || stristr($e[4],"check-in")) {
303                          $whatis="DIRECTORY";  print "-- $e[4] -- $bakdir/$bakcount/$name --<br>\n";
304                  } else {                                  if (file_exists("$bakdir/$bakcount/$name")) {
305                          $whatis="FILE";                                          $e[4]="<a href=\"$self?A=V&D=".urlencode($relDir).urlencode(".bak/$bakcount/")."&F=".$name."\">$e[4]</a>";  
306                  }                                  }
307                  print "<hr><br><b>CHANGES TO THIS $whatis</b><br><table border=0 width=100%>\n";                                  $bakcount++;
308                  $bakcount = 0;  // start from 0, skip fist backup (it's current)                          }
309                  while ($e = array_shift($logarr)) {                          print "<tr><td$e[0]>$e[1]</td><td$e[0]>$e[2]</td><td$e[0]>$e[3]</td><td$e[0]>$e[4]</td></tr>\n";
310                          if (strstr($e[4],"upload")) {                  }
311                                  if (file_exists("$bakdir/$bakcount/$name")) {                  print "</table>";
312                                          $e[4]="<a href=\"$webRoot".urlpath(dirname($relPath)."/.bak/$bakcount/$name")."\">$e[4]</a>";          }
313                                  }  
314                                  $bakcount++;          EndHTML() ;
315                          }  
316                          print "<tr><td$e[0]>$e[1]</td><td$e[0]>$e[2]</td><td$e[0]>$e[3]</td><td$e[0]>$e[4]</td></tr>\n";  } // end function DetailPage
317                  }  
318                  print "</table>";  //////////////////////////////////////////////////////////////////
319          }  
320    function DisplayCode($fsRoot,$relDir,$fn) {
321          EndHTML() ;  
322            $path = $fsRoot . $relDir . "/" . $fn ;
323  } // end function DetailPage  
324            if (!file_exists($path)) Error("File not found",$path) ;
325  //////////////////////////////////////////////////////////////////  
326            StartHTML("(".$relDir."/".$fn.")","");
327  function DisplayCode($fsRoot,$relDir,$fn) {  
328            $tstr = join("",file($path)) ;
329          $path = $fsRoot . $relDir . "/" . $fn ;          $tstr = htmlentities($tstr) ;
330    
331          if (!file_exists($path)) Error("File not found",$path) ;          // Tabs
332            $tstr = str_replace(chr(9),"   ",$tstr) ;  
333          StartHTML("(".$relDir."/".$fn.")","");  
334            // ASP tags & XML/PHP tags
335          $tstr = join("",file($path)) ;          $aspbeg = "<SPAN CLASS=XML>&lt;%</SPAN><SPAN CLASS=BLK>" ;
336          $tstr = htmlentities($tstr) ;          $aspend = "</SPAN><SPAN CLASS=XML>%&gt;</SPAN>" ;
337            $tstr = str_replace("&lt;%",$aspbeg,$tstr) ;
338          // Tabs          $tstr = str_replace("%&gt;",$aspend,$tstr) ;    
339          $tstr = str_replace(chr(9),"   ",$tstr) ;    
340            $xmlbeg = "<SPAN CLASS=XML>&lt;?</SPAN><SPAN CLASS=BLK>" ;
341          // ASP tags & XML/PHP tags          $xmlend = "</SPAN><SPAN CLASS=XML>?&gt;</SPAN>" ;
342          $aspbeg = "<SPAN CLASS=XML>&lt;%</SPAN><SPAN CLASS=BLK>" ;          $tstr = str_replace("&lt;?",$xmlbeg,$tstr) ;
343          $aspend = "</SPAN><SPAN CLASS=XML>%&gt;</SPAN>" ;          $tstr = str_replace("?&gt;",$xmlend,$tstr) ;    
344          $tstr = str_replace("&lt;%",$aspbeg,$tstr) ;  
345          $tstr = str_replace("%&gt;",$aspend,$tstr) ;              // C style comment
346            $tstr = str_replace("/*","<SPAN CLASS=REM>/*",$tstr) ;  
347          $xmlbeg = "<SPAN CLASS=XML>&lt;?</SPAN><SPAN CLASS=BLK>" ;          $tstr = str_replace("*/","*/</SPAN>",$tstr) ;                  
348          $xmlend = "</SPAN><SPAN CLASS=XML>?&gt;</SPAN>" ;  
349          $tstr = str_replace("&lt;?",$xmlbeg,$tstr) ;          // HTML comments
350          $tstr = str_replace("?&gt;",$xmlend,$tstr) ;              $tstr = str_replace("&lt;!--","<I CLASS=RED>&lt;!--",$tstr) ;  
351            $tstr = str_replace("--&gt;","--&gt;</I>",$tstr) ;  
352          // C style comment  
353          $tstr = str_replace("/*","<SPAN CLASS=REM>/*",$tstr) ;            echo "<PRE>" ;  
354          $tstr = str_replace("*/","*/</SPAN>",$tstr) ;                    
355            $tstr = split("\n",$tstr) ;
356          // HTML comments          for ($i = 0 ; $i < sizeof($tstr) ; ++$i) {
357          $tstr = str_replace("&lt;!--","<I CLASS=RED>&lt;!--",$tstr) ;                    // add line numbers
358          $tstr = str_replace("--&gt;","--&gt;</I>",$tstr) ;                    echo "<BR><EM>" ;
359                    echo substr(("000" . ($i+1)), -4) . ":</EM> " ;
360          echo "<PRE>" ;                    $line = $tstr[$i] ;
361                    // C++ style comments
362          $tstr = split("\n",$tstr) ;                  $pos = strpos($line,"//") ;
363          for ($i = 0 ; $i < sizeof($tstr) ; ++$i) {                  // exceptions: two slashes aren't a script comment
364                  // add line numbers                  if (strstr($line,"//") &&
365                  echo "<BR><EM>" ;                      ! ($pos>0 && substr($line,$pos-1,1)==":") &&
366                  echo substr(("000" . ($i+1)), -4) . ":</EM> " ;                      ! (substr($line,$pos,8) == "//--&gt;") &&
367                  $line = $tstr[$i] ;                      ! (substr($line,$pos,9) == "// --&gt;")) {
368                  // C++ style comments                   $beg = substr($line,0,strpos($line,"//")) ;
369                  $pos = strpos($line,"//") ;                   $end = strstr($line,"//") ;
370                  // exceptions: two slashes aren't a script comment                   $line = $beg."<SPAN CLASS=REM>".$end."</SPAN>";
371                  if (strstr($line,"//") &&                  }
372                      ! ($pos>0 && substr($line,$pos-1,1)==":") &&                  // shell & asp style comments
373                      ! (substr($line,$pos,8) == "//--&gt;") &&                  $first = substr(ltrim($line),0,1) ;
374                      ! (substr($line,$pos,9) == "// --&gt;")) {                  if ($first == "#" || $first == "'") {
375                   $beg = substr($line,0,strpos($line,"//")) ;                   $line = "<SPAN CLASS=REM>".$line."</SPAN>";
376                   $end = strstr($line,"//") ;                  }
377                   $line = $beg."<SPAN CLASS=REM>".$end."</SPAN>";                  print($line) ;
378                  }          } // next i
379                  // shell & asp style comments  
380                  $first = substr(ltrim($line),0,1) ;          echo "</PRE>" ;
381                  if ($first == "#" || $first == "'") {                  
382                   $line = "<SPAN CLASS=REM>".$line."</SPAN>";          EndHTML() ;
383                  }  
384                  print($line) ;  } // end function DisplayCode
385          } // next i  
386    //////////////////////////////////////////////////////////////////
387          echo "</PRE>" ;  
388                    function MockIcon($txt) {
389          EndHTML() ;          $tstr = "<SPAN CLASS=MCK>" ;
390    
391  } // end function DisplayCode          switch (strtolower($txt)) {
392            case ".bmp" :
393  //////////////////////////////////////////////////////////////////          case ".gif" :
394            case ".jpg" :
395  function MockIcon($txt) {          case ".jpeg":
396          $tstr = "<SPAN CLASS=MCK>" ;          case ".tif" :
397            case ".tiff":
398          switch (strtolower($txt)) {                  $d = 176 ;
399          case ".bmp" :                  break ;
400          case ".gif" :          case ".doc" :
401          case ".jpg" :                  $d = 50 ;
402          case ".jpeg":                  break ;
403          case ".tif" :          case ".exe" :
404          case ".tiff":          case ".bat" :
405                  $d = 176 ;                  $d = 255 ;
406                  break ;                  break ;
407          case ".doc" :          case ".bas" :
408                  $d = 50 ;          case ".c"   :
409                  break ;          case ".cc"  :
410          case ".exe" :          case ".src" :
411          case ".bat" :                  $d = 255 ;
412                  $d = 255 ;                  break ;
413                  break ;          case "file" :
414          case ".bas" :                  $d = 51 ;
415          case ".c"   :                  break ;
416          case ".cc"  :          case "fldr" :
417          case ".src" :                  $d = 48 ;
418                  $d = 255 ;                  break ;
419                  break ;          case ".htm" :
420          case "file" :          case ".html":
421                  $d = 51 ;          case ".asa" :
422                  break ;          case ".asp" :
423          case "fldr" :          case ".cfm" :
424                  $d = 48 ;          case ".php3":
425                  break ;          case ".php" :
426          case ".htm" :          case ".phtml" :
427          case ".html":          case ".shtml" :
428          case ".asa" :                  $d = 182 ;
429          case ".asp" :                  break ;
430          case ".cfm" :          case ".pdf" :
431          case ".php3":                  $d = 38 ;
432          case ".php" :                  break;
433          case ".phtml" :          case ".txt" :
434          case ".shtml" :          case ".ini" :
435                  $d = 182 ;                  $d = 52 ;
436                  break ;                  break ;
437          case ".pdf" :          case ".xls" :
438                  $d = 38 ;                  $d = 252 ;
439                  break;                  break ;
440          case ".txt" :          case ".zip" :
441          case ".ini" :          case ".arc" :
442                  $d = 52 ;          case ".sit" :
443                  break ;          case ".tar" :
444          case ".xls" :          case ".gz"  :
445                  $d = 252 ;          case ".tgz" :
446                  break ;          case ".Z"   :
447          case ".zip" :                  $d = 59 ;
448          case ".arc" :                  break ;
449          case ".sit" :          case "view" :
450          case ".tar" :                  $d = 52 ;
451          case ".gz"  :                  break ;
452          case ".tgz" :          case "up" :
453          case ".Z"   :                  $d = 199 ;
454                  $d = 59 ;                  break ;
455                  break ;          case "blank" :
456          case "view" :                  return "&nbsp;&nbsp;</SPAN>" ;
457                  $d = 52 ;                  break ;
458                  break ;          default :
459          case "up" :                  $d = 51 ;
460                  $d = 199 ;          }
461                  break ;  
462          case "blank" :          return $tstr . chr($d) . "</SPAN>" ;
463                  return "&nbsp;&nbsp;</SPAN>" ;  } // end function MockIcon
464                  break ;  
465          default :  //////////////////////////////////////////////////////////////////
466                  $d = 51 ;  
467          }  function GifIcon($txt = "") {
468            global $gblIconLocation, $gblImages ;
469          return $tstr . chr($d) . "</SPAN>" ;  
470  } // end function MockIcon          switch (strtolower($txt)) {
471            case ".doc" :
472  //////////////////////////////////////////////////////////////////                  $d = "layout.gif" ;
473                    break ;
474  function GifIcon($txt) {          case ".exe" :
475          global $gblIconLocation ;          case ".bat" :
476                    $d = "screw2.gif" ;
477          switch (strtolower($txt)) {                  break ;
478          case ".bmp" :          case ".bas" :
479          case ".gif" :          case ".c"   :
480          case ".jpg" :          case ".cc"  :
481          case ".jpeg":          case ".src" :
482          case ".tif" :                  $d = "c.gif" ;
483          case ".tiff":                  break ;
484                  $d = "image2.gif" ;          case "file" :
485                  break ;                  $d = "generic.gif" ;
486          case ".doc" :                  break ;
487                  $d = "layout.gif" ;          case "fldr" :
488                  break ;                  $d = "dir.gif" ;
489          case ".exe" :                  break ;
490          case ".bat" :          case ".phps" :
491                  $d = "screw2.gif" ;                  $d = "phps.gif" ;
492                  break ;                  break ;
493          case ".bas" :          case ".php3" :
494          case ".c"   :                  $d = "php3.gif" ;
495          case ".cc"  :                  break ;
496          case ".src" :          case ".htm" :
497                  $d = "c.gif" ;          case ".html":
498                  break ;          case ".asa" :
499          case "file" :          case ".asp" :
500                  $d = "generic.gif" ;          case ".cfm" :
501                  break ;          case ".php3":
502          case "fldr" :          case ".php" :
503                  $d = "dir.gif" ;          case ".phtml" :
504                  break ;          case ".shtml" :
505          case ".phps" :                  $d = "world1.gif" ;
506                  $d = "phps.gif" ;                  break ;
507                  break ;          case ".pdf" :
508          case ".php3" :                  $d = "pdf.gif" ;
509                  $d = "php3.gif" ;                  break;
510                  break ;          case ".txt" :
511          case ".htm" :          case ".ini" :
512          case ".html":                  $d = "text.gif" ;
513          case ".asa" :                  break ;
514          case ".asp" :          case ".xls" :
515          case ".cfm" :                  $d = "box2.gif" ;
516          case ".php3":                  break ;
517          case ".php" :          case ".zip" :
518          case ".phtml" :          case ".arc" :
519          case ".shtml" :          case ".sit" :
520                  $d = "world1.gif" ;          case ".tar" :
521                  break ;          case ".gz"  :
522          case ".pdf" :          case ".tgz" :
523                  $d = "pdf.gif" ;          case ".Z"   :
524                  break;                  $d = "compressed.gif" ;
525          case ".txt" :                  break ;
526          case ".ini" :          case "view" :
527                  $d = "text.gif" ;                  $d = "index.gif" ;
528                  break ;                  break ;
529          case ".xls" :          case "up" :
530                  $d = "box2.gif" ;                  $d = "back.gif" ;
531                  break ;                  break ;
532          case ".zip" :          case "blank" :
533          case ".arc" :                  $d = "blank.gif" ;
534          case ".sit" :                  break ;
535          case ".tar" :          case "checkout":
536          case ".gz"  :                  $d = "box2.gif";
537          case ".tgz" :                  break;
538          case ".Z"   :          case "checkin":
539                  $d = "compressed.gif" ;                  $d = "hand.up.gif";
540                  break ;                  break;
541          case "view" :          case "locked":
542                  $d = "index.gif" ;                  $d = "screw2.gif";
543                  break ;                  break;
544          case "up" :          case "note":
545                  $d = "back.gif" ;                  $d = "quill.gif";
546                  break ;                  break;
547          case "blank" :          default :
548                  $d = "blank.gif" ;                  if (in_array(strtolower($txt),$gblImages)) {
549                  break ;                          $d = "image2.gif" ;
550          case "checkout":                  } else {
551                  $d = "box2.gif";                          $d = "generic.gif" ;
552                  break;                  }
553          case "checkin":          }
554                  $d = "hand.up.gif";  
555                  break;  
556          case "locked":          return "<IMG SRC=\"$gblIconLocation" . $d . "\" BORDER=0>" ;
557                  $d = "screw2.gif";  } // end function GifIcon
558                  break;  
559          case "note":  //////////////////////////////////////////////////////////////////
560                  $d = "quill.gif";  
561                  break;  function Navigate($fsRoot,$relDir) {
562          default :  
563                  $d = "generic.gif" ;          global $gblEditable, $gblIcon, $gblModDays, $webRoot, $gblHide,
564          }                  $gblIgnoreUnknownFileType, $gblRepositoryDir,
565                    $gblLogin, $gblUserName, $gblDateFmt, $gblTimeFmt,
566          return "<IMG SRC=\"$gblIconLocation" . $d . "\" BORDER=0>" ;                  $gblPermNote,
567  } // end function GifIcon                  $fsRealmDir, $realm, $realm_sep,
568                    $html, $realm_config,
569  //////////////////////////////////////////////////////////////////                  $HTTP_GET_VARS, $HTTP_SERVER_VARS;
570            
571  function Navigate($fsRoot,$relDir) {          $self     = $HTTP_SERVER_VARS["PHP_SELF"] ;
572    
573          global $gblEditable, $gblIcon, $gblModDays, $webRoot, $gblHide,          $relDir = chopsl($relDir)."/";
574                  $gblIgnoreUnknownFileType, $gblRepositoryDir,          $fsDir = $fsRoot.$relDir;       // current directory
575                  $fsRealmDir, $realm, $realm_sep,  
576                  $HTTP_GET_VARS, $html, $realm_config;          if (!is_dir($fsDir)) Error("Dir not found","Directory <tt>$relDir<tt> not found on filesystem at <tt>$fsDir</tt>",1) ;
577    
578          $self     = $HTTP_SERVER_VARS["PHP_SELF"] ;          global $debug;
579            $debug .= "[$gblLogin|$relDir] before >";
580          if ($relDir == "") $relDir = "/";  
581            if (! check_perm($relDir,trperm_b))
582          $fsDir = $fsRoot.$relDir."/";   // current directory                  Error("Access denied","User <tt>$gblLogin</tt> tried to access <tt>$relDir</tt> without valid trustee.",1);
583            $debug .= "< afeter";
584          if (!is_dir($fsDir)) Error("Dir not found",$relDir) ;  
585            $hide_items=",$gblHide,";
586          $hide_items=",$gblHide,";  
587            $dirList = array();
588          // read directory contents          $fileList = array();
589          if ( !($dir = @opendir($fsDir)) )  
590                  Error("Read Access denied",$relDir,1) ;          // read directory contents
591          while ($item = readdir($dir)) {          if ( !($dir = @opendir($fsDir)) )
592                  if ( substr($item,0,1) == "." || strstr($hide_items,",$item,") ) continue ;                  Error("Read Access denied",$relDir,1) ;
593                  if (is_dir($fsDir.$item) || is_link ($fsDir.$item)) {          while ($item = readdir($dir)) {
594                          if (check_perm($relDir.$item,trperm_b)) {                  if ( substr($item,0,1) == "." || strstr($hide_items,",$item,") ) continue ;
595                                  $dirList[$item] = $item ;                  if (is_dir($fsDir.$item) || is_link ($fsDir.$item)) {
596                                  $dirNote[$item] = ReadNote($fsDir.$item);                          if (check_perm($relDir.$item,trperm_b)) {
597                          }                                  $dirList[$item] = $item ;
598                  } else if (is_file($fsDir.$item)) {                                  $dirNote[$item] = ReadNote($fsDir.$item);
599                          if (check_perm($relDir.$item,trperm_r)) {                          }
600                                  $fileList[$item] = $item ;                                } else if (is_file($fsDir.$item)) {
601                                  $fileDate[$item] = filemtime($fsDir.$item) ;                          if (check_perm($relDir.$item,trperm_r)) {
602                                  $fileSize[$item] = filesize($fsDir.$item) ;                                  $fileList[$item] = $item ;              
603                                  $fileNote[$item] = ReadNote($fsDir.$item);                                  $fileDate[$item] = filemtime($fsDir.$item) ;
604                          }                                  $fileSize[$item] = filesize($fsDir.$item) ;
605                  } else {                                  $fileNote[$item] = ReadNote($fsDir.$item);
606                          if (! $gblIgnoreUnknownFileType) Error("File Type Error", "Item <tt>".$fsDir.$item."</tt> is not file, directory or link. If you want to ignore errors like this, set <tt>\$gblIgnoreUnknownFileType = 1</tt> in <tt>$realm_config</tt>.",1);                          }
607                  }                  } else {
608          }                          if (! $gblIgnoreUnknownFileType) Error("File Type Error", "Item <tt>".$fsDir.$item."</tt> is not file, directory or link. If you want to ignore errors like this, set <tt>\$gblIgnoreUnknownFileType = 1</tt> in <tt>$realm_config</tt>.",1);
609          closedir($dir) ;                  }
610            }
611          // scan deleted files          closedir($dir) ;
612          if ( $HTTP_GET_VARS["show_deleted"] == 1 && ($dir = @opendir("$fsDir/.del")) ) {  
613                  while ($item = readdir($dir)) {          // scan deleted files
614                          if ( substr($item,0,1) == "." || strstr($hide_items,",$item,") || !check_perm($relDir.$item,trperm_w) ) continue ;          if ( HTTP_GET_VAR("show_deleted") == 1 && ($dir = @opendir("$fsDir/.del")) ) {
615                          $fileList[$item] = ".del/$item" ;                                while ($item = readdir($dir)) {
616                          $fileDate[$item] = filemtime($fsDir.".del/$path") ;                          if ( substr($item,0,1) == "." || strstr($hide_items,",$item,") || !check_perm($relDir.$item,trperm_w) ) continue ;
617                          $fileSize[$item] = filesize($fsDir.".del/$path") ;                          if (is_file($fsDir.".del/$item")) {
618                          $fileNote[$item] = ReadNote($fsDir.".del/$item");                                  $fileList[$item] = ".del/$item" ;              
619                  }                                  $fileDate[$item] = filemtime($fsDir.".del/$item") ;
620                  closedir($dir) ;                                  $fileSize[$item] = filesize($fsDir.".del/$item") ;
621          }                                  $fileNote[$item] = ReadNote($fsDir.".del/$item");
622                            } else {
623          $emptyDir = ! (sizeof($dirList) || sizeof($fileList)) ;                                  $dirList[$item] = ".del/$item" ;                
624                                    $dirNote[$item] = ReadNote($fsDir.".del/$item");
625          // start navigation page                          }
626          $text  = "Use this page to add, delete";                  }
627          if (! isset($HTTP_GET_VARS[show_deleted])) {                  closedir($dir) ;
628                  $text .= ", <a href=$self?D=".urlencode($relDir)."&show_deleted=1>undelete</a>";          }
629          }  
630          $text .= " or revise files on this web site." ;          $emptyDir = ! (sizeof($dirList) || sizeof($fileList)) ;
631          $text .= "<br>Examine list of files <a href=\"$self?A=Ch1\">changed in last day</a> or <a href=\"$self?A=Ch\">all changes</a>.";  
632          StartHTML("(Navigate)",$text) ;          // start navigation page
633            $text  = "Use this page to add, delete";
634          echo "<TABLE BORDER=0 CELLPADDING=2          if (! isset($HTTP_GET_VARS["show_deleted"])) {
635                  CELLSPACING=3 WIDTH=\"100%\">" ;                  $text .= ", <a href=$self?D=".urlencode($relDir)."&show_deleted=1>undelete</a>";
636            }
637          // updir bar              $text .= " or revise files on this web site." ;
638          if (chopsl($fsDir) != chopsl($fsRoot)) {          $text .= "<br>Examine list of files <a href=\"$self?A=Ch1\">changed in last day</a> or <a href=\"$self?A=Ch\">all changes</a>.";
639                  $parent = dirname($relDir) ;          StartHTML("(Navigate)",$text) ;
640                  if ($parent == "") $parent = "/" ;  
641            print "<TABLE BORDER=0 CELLPADDING=2 CELLSPACING=3 WIDTH=\"100%\">" ;
642                  include("$html/Navigate-parent.html");  
643          }          // updir (parent) bar  
644            if (chopsl($fsDir) != chopsl($fsRoot)) {
645          function plural($name,$count) {                  $parent = dirname($relDir) ;
646                  $out="$count $name";                  if ($parent == "") $parent = "/" ;
647                  if ($count > 1) {  
648                          $out.="s";                  include("$html/Navigate-parent.html");
649                  }          }
650                  return $out;  
651          }          function plural($name,$count) {
652                    $out="$count $name";
653          $dsort = $HTTP_GET_VARS[dsort];                  if ($count > 1) {
654          if (! isset($dsort)) $dsort = "name";   // default directory sort                          $out.="s";
655                    }
656          $dsort_arr = array(                  return $out;
657                  "name" => array ("rname", "note"),          }
658                  "rname" => array ("name", "note"),  
659                  "note" => array ("name", "rnote"),          $dsort = HTTP_GET_VAR("dsort");
660                  "rnote" => array ("name", "note")          if (! isset($dsort)) $dsort = "name"; // default directory sort
661                  );  
662            $dsort_arr = array(
663          $fsort = $HTTP_GET_VARS[fsort];                  "name" => array ("rname", "note"),
664          if (! isset($fsort)) $fsort = "name";   // default directory sort                  "rname" => array ("name", "note"),
665                    "note" => array ("name", "rnote"),
666          $fsort_arr = array(                  "rnote" => array ("name", "note")
667                  "name" => array ("rname", "note", "date", "size"),                  );
668                  "rname" => array ("name", "note", "date", "size"),  
669                  "note" => array ("name", "rnote", "date", "size"),          $fsort = HTTP_GET_VAR("fsort");
670                  "rnote" => array ("name", "note", "date", "size"),          if (! isset($fsort)) $fsort = "name"; // default directory sort
671                  "date" => array ("name", "note", "rdate", "size"),  
672                  "rdate" => array ("name", "note", "date", "size"),          $fsort_arr = array(
673                  "size" => array ("name", "note", "date", "rsize"),                  "name" => array ("rname", "note", "date", "size"),
674                  "rsize" => array ("name", "note", "date", "size")                  "rname" => array ("name", "note", "date", "size"),
675                  );                  "note" => array ("name", "rnote", "date", "size"),
676                    "rnote" => array ("name", "note", "date", "size"),
677          $D="D=".urlencode($relDir);                  "date" => array ("name", "note", "rdate", "size"),
678                    "rdate" => array ("name", "note", "date", "size"),
679          function self_args($arr = array()) {                  "size" => array ("name", "note", "date", "rsize"),
680                  $arg = implode("&",$arr);                  "rsize" => array ("name", "note", "date", "size")
681                  if ($arg) {                  );
682                          return $self."?".$arg;  
683                  } else {          $D="D=".urlencode($relDir);
684                          return $self;  
685                  }          function self_args($arr = array()) {
686          }                  global $self;
687          // output subdirs                  $arg = implode("&",$arr);
688          if (sizeof($dirList) > 0) {                  if ($arg) {
689                  switch ($dsort) {                          return $self."?".$arg;
690                          case "note":                  } else {
691                                  $items = $dirNote;                          return $self;
692                                  asort($items);                  }
693                                  break;          }
694                          case "rnote":          // output subdirs
695                                  $items = $dirNote;          if (sizeof($dirList) > 0) {
696                                  arsort($items);                  switch ($dsort) {
697                                  break;                          case "note":
698                          case "rname":                                  $items = $dirNote;
699                                  $items = $dirList;                                  asort($items);
700                                  krsort($items);                                  break;
701                                  break;                          case "rnote":
702                          default:                                  $items = $dirNote;
703                                  $items = $dirList;                                  arsort($items);
704                                  ksort($items);                                  break;
705                                  break;                          case "rname":
706                  }                                  $items = $dirList;
707                  $durl = self_args(array($D,"dsort=".$dsort_arr[$dsort][0]));                                  krsort($items);
708                  $nurl = self_args(array($D,"dsort=".$dsort_arr[$dsort][1]));                                  break;
709                            default:
710                  include("$html/Navigate-dirHeader.html");                                  $items = $dirList;
711                                    ksort($items);
712                  while (list($key,$dir) = each($items)) {                                  break;
713                    }
714                          $dir = $dirList[$key];                  $durl = self_args(array($D,"dsort=".$dsort_arr[$dsort][0]));
715                    $nurl = self_args(array($D,"dsort=".$dsort_arr[$dsort][1]));
716                          $info_url=self_args(array("A"=>"A=E", "F"=>"F=".urlencode($dir), "D"=>$D));  
717                          $dir_url=$self."?D=".urlencode($relDir."/".$dir);                  include("$html/Navigate-dirHeader.html");
718                          include("$html/Navigate-dirEntry.html");  
719                    while (list($key,$dir) = each($items)) {
720                  }  // iterate over dirs  
721          }  // end if no dirs                          $dir = $dirList[$key];
722    
723          $durl = self_args(array($D,"fsort=".$fsort_arr[$fsort][0]));                          $info_url=self_args(array("A"=>"A=E", "F"=>"F=".urlencode($dir), "D"=>$D));
724          $nurl = self_args(array($D,"fsort=".$fsort_arr[$fsort][1]));                          if (substr($dir,0,5) == ".del/") {
725          $uurl = self_args(array($D,"fsort=".$fsort_arr[$fsort][2]));                                  $dir = substr($dir,5,strlen($dir)-5);
726          $surl = self_args(array($D,"fsort=".$fsort_arr[$fsort][3]));                                  $deleted = " <a href=\"$info_url#undelete\"><SPAN CLASS=deleted TITLE=\"deleted\">deleted</span></a>";
727                            } else {
728          include("$html/Navigate-fileHeader.html");                                  $deleted = "";
729                            }
730          if (sizeof($fileList) > 0) {          
731                  switch ($fsort) {                          $dir_url=$self."?D=".urlencode(chopsl($relDir)."/".$dir);
732                          case "note":                          if (check_perm($relDir.$dir,$gblPermNote)) {
733                                  $items = $fileNote;                                  $note_html="<a href=\"$info_url#note\">".$gblIcon("note")."</a>".$dirNote[$key];
734                                  asort($items);                          } else {
735                                  break;                                  $note_html=$dirNote[$key];
736                          case "rnote":                          }
737                                  $items = $fileNote;  
738                                  arsort($items);                          $dir_html = isBlank($dir,"directory");
739                                  break;  
740                          case "date":                          include("$html/Navigate-dirEntry.html");
741                                  $items = $fileDate;  
742                                  asort($items);                  }  // iterate over dirs
743                                  break;          }  // end if no dirs
744                          case "rdate":  
745                                  $items = $fileDate;          $durl = self_args(array($D,"fsort=".$fsort_arr[$fsort][0]));
746                                  arsort($items);          $nurl = self_args(array($D,"fsort=".$fsort_arr[$fsort][1]));
747                                  break;          $uurl = self_args(array($D,"fsort=".$fsort_arr[$fsort][2]));
748                          case "size":          $surl = self_args(array($D,"fsort=".$fsort_arr[$fsort][3]));
749                                  $items = $fileSize;  
750                                  asort($items);          $html_uri = $webRoot;
751                                  break;  
752                          case "rsize":          if (substr($relDir,0,1) == "/") {
753                                  $items = $fileSize;                  $html_uri .= substr($relDir,1,strlen($relDir)-1);
754                                  arsort($items);          } else {
755                                  break;                  $html_uri .= $relDir;
756                          case "rname":          }
757                                  $items = $fileList;  
758                                  krsort($items);          include("$html/Navigate-fileHeader.html");
759                                  break;  
760                          default:          if (sizeof($fileList) > 0) {
761                                  $items = $fileList;                  switch ($fsort) {
762                                  ksort($items);                          case "note":
763                                  break;                                  $items = $fileNote;
764                  }                                  asort($items);
765                                    break;
766            while (list($key,$file) = each($items)) {                          case "rnote":
767                  $file = $fileList[$key];                                  $items = $fileNote;
768                  $path = $fsDir."/".$file ;                                  arsort($items);
769                  $mod  = $fileDate[$key];                                  break;
770                  $sz   = $fileSize[$key];                          case "date":
771                                            $items = $fileDate;
772                  if ($sz >= 10240) {                                  asort($items);
773                          $sz = (int)(($sz+1023)/1024) . " k" ;                                  break;
774                  } else {                          case "rdate":
775                          $sz .= " " ;                                  $items = $fileDate;
776                  } // end size                                  arsort($items);
777                                    break;
778                  $a = $b = "" ;                          case "size":
779                                    $items = $fileSize;
780                  $info_url=$self."?A=E&F=".urlencode($file)."&D=".urlencode($relDir);                                  asort($items);
781                                    break;
782                  if ( ($mod + $gblModDays*86400) > time() ) {                          case "rsize":
783                          $a  = "<SPAN CLASS=RED TITLE=\"Newer" ;                                  $items = $fileSize;
784                          $a .= " than $gblModDays days\"> * </SPAN>" ;                                  arsort($items);
785                  }                                  break;
786                            case "rname":
787                  $file_lock=CheckLock($path);                                  $items = $fileList;
788                                    krsort($items);
789                  $file_url_html="<A HREF=\"$self?A=V&D=".urlencode($relDir)."&F=".urlencode($file);                                  break;
790                  $file_url_html.="\" TITLE=\"View file\">" ;                          default:
791                                    $items = $fileList;
792                  if (substr($file,0,5) != ".del/") {                                  ksort($items);
793                          $file_url_html .= $file . "</A>" . $a ;                                  break;
794                  } else {                  }
795                          $file_url_html .= substr($file,5,strlen($file)-5) . "</a> <SPAN CLASS=RED TITLE=\"deleted\"> <a href=\"$info_url#undelete\">deleted</a> </span>";  
796                  }            while (list($key,$file) = each($items)) {
797                    $file = $fileList[$key];
798                  $note_html="<a href=\"$info_url#note\">".$gblIcon("note")."</a>".ReadNote($path);                  $path = $fsDir."/".$file ;
799                    $mod  = $fileDate[$key];
800                  $ext = strtolower(strrchr($file,".")) ;                  $sz   = $fileSize[$key];
801            
802                  if ($file_lock) {                  if ($sz >= 10240) {
803                          if ($file_lock == $GLOBALS[gblUserName]) {                          $sz = (int)(($sz+1023)/1024) . " k" ;
804                                  $b.="<A HREF=\"$self?A=Ci&D=".urlencode($relDir)."&F=".urlencode($file);                  } else {
805                                  $b.="\" TITLE=\"Checkin (update) file on server\">" ;                          $sz .= " " ;
806                                  $file_url_html=$b;                  } // end size
807                                  $b.=$gblIcon("checkin")."</A>" ;  
808                                  $b.= $gblIcon("blank");                  $a = $b = "" ;
809                                  $file_url_html.="$file</a> $a";  
810                                  $note_html = $gblIcon("blank")."<b>Please check-in (update) this file</b>";                  $info_url=$self."?A=E&F=".urlencode($file)."&D=".urlencode($relDir);
811                          } else {  
812                                  $b = $gblIcon("locked");                  if ( ($mod + $gblModDays*86400) > time() ) {
813                                  $b.= $gblIcon("blank");                          $a  = "<SPAN CLASS=RED TITLE=\"Newer" ;
814                                  $note_html = $gblIcon("blank")."<b>File locked by $file_lock</b>";                          $a .= " than $gblModDays days\"> * </SPAN>" ;
815                                  $file_url_html = "$file $a";                  }
816                          }  
817                  } else {                  $file_lock=CheckLock($path);
818                          $b.="<A HREF=\"$self?A=Co&D=".urlencode($relDir)."&F=".urlencode($file);  
819                          $b.="\" TITLE=\"Checkout file for edit\">" ;                  $file_url_html="<A HREF=\"$self?A=V&D=".urlencode($relDir)."&F=".urlencode($file);
820                          $b.=$gblIcon("checkout")."</A>";                  $file_url_html.="\" TITLE=\"View file\">" ;
821    
822                          if ( $ext=="" || strstr(join(" ",$gblEditable),$ext) ) {                    if (substr($file,0,5) != ".del/") {
823                                  $b.="<A HREF=\"$self?A=C&D=".urlencode($relDir)."&F=".urlencode($file);                          $file_url_html .= isBlank($file) . "</A>" . $a ;
824                                  $b.="\" TITLE=\"List contents\">" ;                  } else {
825                                  $b.=$gblIcon("view")."</A>" ;                          $file_url_html .= isBlank(substr($file,5,strlen($file)-5)) . "</a> <a href=\"$info_url#undelete\"><SPAN CLASS=deleted TITLE=\"deleted\">deleted</span></a>";
826                          } else {                  }
827                                  $b.= $gblIcon("blank");  
828                          }                  if (check_perm($relDir.$file,$gblPermNote)) {
829                  }                          $note_html="<a href=\"$info_url#note\">".$gblIcon("note")."</a>".$fileNote[$key];
830                    } else {
831                  $mod = date("$GLOBALS[gblDateFmt] $GLOBALS[gblTimeFmt]",$mod);                          $note_html=$fileNote[$key];
832                    }
833                  include("$html/Navigate-fileEntry.html");  
834                    $ext = strtolower(strrchr($file,".")) ;
835            }  // iterate over files  
836          } else {  // end if no files                  if ($file_lock) {
837  ?>                          if ($file_lock == $gblUserName) {
838   <TR><TD></TD><TD COLSPAN=5 CLASS=LST>                                  $b.="<A HREF=\"$self?A=Ci&D=".urlencode($relDir)."&F=".urlencode($file);
839    No files in this directory                                  $b.="\" TITLE=\"Checkin (update) file on server\">" ;
840   </TD></TR>                                  $file_url_html=$b;
841  <?                                  $b.=$gblIcon("checkin")."</A>" ;
842          }                                  $b.= $gblIcon("blank");
843                                    $file_url_html.="$file</a> $a";
844          if ($emptyDir && $relDir != "") {                                  $note_html = $gblIcon("blank")."<b>Please check-in (update) this file</b>";
845  ?>                          } else {
846                                    $b = $gblIcon("locked");
847  <FORM METHOD="POST" ACTION="<?= $self ?>">                                  $b.= $gblIcon("blank");
848   <TR><TD></TD><TD COLSPAN=5 CLASS=BAR>                                  $note_html = $gblIcon("blank")."<b>File locked by $file_lock</b>";
849    <INPUT TYPE="HIDDEN" NAME="DIR" VALUE="<?= $relDir ?>">                                  $file_url_html = "$file $a";
850    OK TO DELETE THIS EMPTY FOLDER?                          }
851    <INPUT TYPE="CHECKBOX" NAME="CONFIRM">                  } else {
852    <INPUT TYPE="SUBMIT" NAME="POSTACTION" VALUE="DELETE">                          if (check_perm($relDir.$file,trperm_w)) {
853   </TD></TR>                                  $b.="<A HREF=\"$self?A=Co&D=".urlencode($relDir)."&F=".urlencode($file);
854  </FORM>                                  $b.="\" TITLE=\"Checkout file for edit\" onClick=\"window.setTimeout('window.location.reload()',3000); return true;\">" ;
855                                    $b.=$gblIcon("checkout")."</A>";
856  <?php                          }
857          } // end if emptyDir  
858  ?>                          if ( $ext=="" || strstr(join(" ",$gblEditable),$ext) ) {  
859                                    $b.="<A HREF=\"$self?A=C&D=".urlencode($relDir)."&F=".urlencode($file);
860  <TR><TD></TD><TD COLSPAN=5><HR></TD></TR>                                  $b.="\" TITLE=\"List contents\">" ;
861                                    $b.=$gblIcon("view")."</A>" ;
862  <?                          } else {
863                                    $b.= $gblIcon("blank");
864  if (file_exists("$fsRealmDir/$realm".$realm_sep."info.inc")) {                          }
865          print "<TR><TD></TD><TD COLSPAN=5>";                  }
866          include("$fsRealmDir/$realm".$realm_sep."info.inc");  
867          print "</TD></TR><TR><TD></TD><TD COLSPAN=5><HR></TD></TR>";                  $mod = date("$gblDateFmt $gblTimeFmt",$mod);
868  } elseif (file_exists("$gblRepositoryDir/.info.inc")) {  
869          print "<TR><TD></TD><TD COLSPAN=5>";                  include("$html/Navigate-fileEntry.html");
870          include("$gblRepositoryDir/.info.inc");  
871          print "</TD></TR><TR><TD></TD><TD COLSPAN=5><HR></TD></TR>";            }  // iterate over files
872  }          } else {  // end if no files
873                    include("$html/Navigate-noFiles.html");
874            }
875  ?>  
876            if ($emptyDir && $relDir != "") {
877  <FORM METHOD="POST" ACTION="<?= $self ?>">                  include("$html/Navigate-emptyDir.html");
878  <TR><TD></TD><TD COLSPAN=5 CLASS=BAR>CREATE NEW          } // end if emptyDir
879   <INPUT TYPE="RADIO" NAME="T" VALUE="D" CHECKED>DIRECTORY -OR-  
880   <INPUT TYPE="RADIO" NAME="T" VALUE="F">FILE : &nbsp;&nbsp;          include("$html/Navigate-hr.html");      
881   <NOBR>NAME <INPUT TYPE="TEXT" NAME="FN" SIZE=14>  
882   <INPUT TYPE="HIDDEN" NAME="POSTACTION" VALUE="CREATE">          if (file_exists("$fsRealmDir/$realm".$realm_sep."info.inc")) {
883   <INPUT TYPE="HIDDEN" NAME="DIR" VALUE="<?= $relDir ?>">                  print "<TR><TD></TD><TD COLSPAN=5>";
884   <INPUT TYPE="SUBMIT" VALUE="CREATE" NAME="CREATE">                  include("$fsRealmDir/$realm".$realm_sep."info.inc");
885   </NOBR>                  print "</TD></TR>";
886   <NOBR>OR <A HREF="<?= $self ?>?A=U&D=<?= urlencode($relDir) ?>">UPLOAD</A> A FILE</NOBR>                  include("$html/Navigate-hr.html");      
887  </TD></TR>          } elseif (file_exists("$gblRepositoryDir/.info.inc")) {
888  </FORM>                  print "<TR><TD></TD><TD COLSPAN=5>";
889  </TABLE>                  include("$gblRepositoryDir/.info.inc");
890                    print "</TD></TR>";
891  <?php                  include("$html/Navigate-hr.html");      
892          EndHTML() ;          }
893  } // end function Navigate  
894            include("$html/Navigate-createNew.html");
895  //////////////////////////////////////////////////////////////////  
896            print "</TABLE>";
897  function UploadPage($fsRoot, $relDir, $filename="") {  
898            EndHTML() ;
899          global $html, $HTTP_SERVER_VARS;  } // end function Navigate
900    
901          $self = $HTTP_SERVER_VARS["PHP_SELF"] ;  //////////////////////////////////////////////////////////////////
902          if ($relDir == "") $relDir = "/" ;  
903    function UploadPage($fsRoot, $relDir, $filename="") {
904          include("$html/UploadPage.html");  
905            global $html, $HTTP_SERVER_VARS;
906  } // end function UploadPage  
907            $self = $HTTP_SERVER_VARS["PHP_SELF"] ;
908  //////////////////////////////////////////////////////////////////          include("$html/UploadPage.html");
909    
910  // Error with sysadmin flag are reported to error_log or hidden from  } // end function UploadPage
911  // users  
912    //////////////////////////////////////////////////////////////////
913  function Error($title,$text="",$sysadmin=0,$no_404=0) {  
914          global $gblSeparateAdminMessages,  // Error with sysadmin flag are reported to error_log or hidden from
915                  $gblMailAdminMessages,$realm,  // users
916                  $HTTP_SERVER_VARS;  
917          if (! headers_sent() && ! $no_404) header("HTTP/1.0 404 Not Found");  function Error($title,$text="",$sysadmin=0,$no_404=0) {
918          if ($sysadmin) {          global $gblSeparateAdminMessages,
919                  if ($gblSeparateAdminMessages) {                  $gblMailAdminMessages,$realm,
920                          $user="Your administrator ";                  $HTTP_SERVER_VARS;
921                          if ($gblMailAdminMessages) {          if (! headers_sent() && ! $no_404) header("HTTP/1.0 404 Not Found");
922                                  mail($HTTP_SERVER_VARS["SERVER_ADMIN"], "docman $realm error message: $title", strip_tags($text));          if ($sysadmin) {
923                                  $user.="<tt>".$HTTP_SERVER_VARS["SERVER_ADMIN"]."</tt> ";                  if ($gblSeparateAdminMessages) {
924                          }                          $user="Your administrator ";
925                          $user.="has been notified about error" ;                          if ($gblMailAdminMessages) {
926                          StartHTML("($title)",$user);                                  mail($HTTP_SERVER_VARS["SERVER_ADMIN"], "docman $realm error message: $title", strip_tags($text));
927                          echo "<P ALIGN=center>Hit your Browser's Back Button.</P>" ;                                  $user.="<tt>".$HTTP_SERVER_VARS["SERVER_ADMIN"]."</tt> ";
928                          EndHTML();                          }
929                          error_log("docman $realm: ".strip_tags($text));                          $user.="has been notified about error" ;
930                  } else {                          StartHTML("($title)",$user);
931                          StartHTML("ADMIN: ".$title,$text) ;                          echo "<P ALIGN=center>Hit your Browser's Back Button.</P>" ;
932                          echo "<P ALIGN=center>Hit your Browser's Back Button.</P>" ;                          EndHTML();
933                          EndHTML();                          error_log("docman $realm: ".strip_tags($text));
934                  }                  } else {
935          } else {                          StartHTML("ADMIN: ".$title,$text) ;
936                  StartHTML("(".$title.")",$text) ;                          echo "<P ALIGN=center>Hit your Browser's Back Button.</P>" ;
937                  echo "<P ALIGN=center>Hit your Browser's Back Button.</P>" ;                          EndHTML();
938                  EndHTML() ;                  }
939          }          } else {
940          exit ;                  StartHTML("(".$title.")",$text) ;
941  } // end function Error                  echo "<P ALIGN=center>Hit your Browser's Back Button.</P>" ;
942                    EndHTML() ;
943  function LogIt($target,$msg, $changelog=0) {          }
944            exit ;
945          $dir=dirname($target);  } // end function Error
946          if (! file_exists($dir."/.log")) {  
947                  if (! @mkdir($dir."/.log",0700)) Error("docman installation problem","can't create log directory <tt>$dir/.log</tt>",1);  function LogIt($target,$msg, $changelog=0) {
948          }  
949          $file=basename($target);          global $gblDateFmt, $gblTimeFmt, $gblUserName, $gblFsRoot;
950    
951          $log=fopen("$dir/.log/$file","a+");          $dir=dirname($target);
952          fputs($log,date("$GLOBALS[gblDateFmt]\t$GLOBALS[gblTimeFmt]").          if (! file_exists($dir."/.log")) {
953                  "\t$GLOBALS[gblUserName]\t$msg\n");                  if (! @mkdir($dir."/.log",0700)) Error("docman installation problem","can't create log directory <tt>$dir/.log</tt>",1);
954          fclose($log);          }
955            $file=basename($target);
956          if (! $changelog) return;  
957            $log=fopen("$dir/.log/$file","a+");
958          global $gblFsRoot;          fputs($log,date("$gblDateFmt\t$gblTimeFmt").
959          $log=fopen("$gblFsRoot/.changelog","a+");                  "\t$gblUserName\t$msg\n");
960          if (substr($target,0,strlen($gblFsRoot)) == $gblFsRoot)          fclose($log);
961                  $target=substr($target,strlen($gblFsRoot),strlen($target)-strlen($gblFsRoot));  
962          $msg=str_replace("\t"," ",$msg);          if (! $changelog) return;
963          fputs($log,time()."\t$target\t$GLOBALS[gblUserName]\t$msg\n");  
964          fclose($log);          $log=fopen("$gblFsRoot/.changelog","a+");
965            if (substr($target,0,strlen($gblFsRoot)) == $gblFsRoot)
966          // FIX: implement e-mail notification based on $changelog                  $target=substr($target,strlen($gblFsRoot),strlen($target)-strlen($gblFsRoot));
967          // permission          $msg=str_replace("\t"," ",$msg);
968  }          fputs($log,time()."\t$target\t$gblUserName\t$msg\n");
969            fclose($log);
970    
971  //////////////////////////////////////////////////////////////////          // FIX: implement e-mail notification based on $changelog
972            // permission
973  function WriteNote($target,$msg) {  }
974    
975          $target=stripSlashes($target);  
976          $dir=dirname($target);  //////////////////////////////////////////////////////////////////
977          if (! file_exists($dir."/.note")) {  
978                  mkdir($dir."/.note",0700);  function WriteNote($target,$msg) {
979          }  
980          $file=basename($target);          $target=stripSlashes($target);
981            $dir=dirname($target);
982          $note=fopen("$dir/.note/$file","w");          if (! file_exists($dir."/.note")) {
983          fputs($note,"$msg\n");                  mkdir($dir."/.note",0700);
984          fclose($note);          }
985            $file=basename($target);
986          LogIt($target,"added note $msg");  
987            $note=fopen("$dir/.note/$file","w");
988  }          if (! $note) {
989                    Error("Error writing note","Can't open note file <tt>$dir/.note/$file</tt> for writing",1);
990  function ReadNote($target) {          }
991            fputs($note,"$msg\n");
992          $target=stripSlashes($target);          fclose($note);
993          $dir=dirname($target);  
994          $file=basename($target);          LogIt($target,"added note $msg");
995          $msg="";  
996          if (file_exists($dir."/.note/$file")) {  }
997                  $note=fopen("$dir/.note/$file","r");  
998                  $msg=fgets($note,4096);  function ReadNote($target) {
999                  fclose($note);  
1000          }          $target=stripSlashes($target);
1001          return HtmlSpecialChars(StripSlashes($msg));          $dir=dirname($target);
1002            $file=basename($target);
1003  }          $msg="";
1004            if (file_exists($dir."/.note/$file")) {
1005  //////////////////////////////////////////////////////////////////                  $note=fopen("$dir/.note/$file","r");
1006                    $msg=fgets($note,4096);
1007  function MoveTo($source,$folder) {                  fclose($note);
1008            }
1009          $source=stripSlashes($source);          return HtmlSpecialChars(StripSlashes($msg));
1010          $file=basename($source);  
1011          if (! file_exists($folder)) {  }
1012                  mkdir($folder,0700);  
1013          }  //////////////////////////////////////////////////////////////////
1014          if (file_exists($source)) {  
1015                  rename($source,"$folder/$file");  function MoveTo($source,$folder) {
1016          }  
1017  }          $source=stripSlashes($source);
1018            $file=basename($source);
1019  //////////////////////////////////////////////////////////////////          if (! file_exists($folder)) {
1020                    mkdir($folder,0700);
1021  function Lock($target) {          }
1022            if (file_exists($source)) {
1023          $target=stripSlashes($target);                  rename($source,"$folder/$file");
1024          $dir=dirname($target);          }
1025          if (! file_exists($dir."/.lock")) {  }
1026                  mkdir($dir."/.lock",0700);  
1027          }  //////////////////////////////////////////////////////////////////
1028          $file=basename($target);  
1029    function Lock($target) {
1030          if (file_exists("$dir/.lock/$file")) {  
1031                  LogIt($target,"attempt to locked allready locked file!");          global $gblUserName;
1032          } else {  
1033                  $lock=fopen("$dir/.lock/$file","w");          $target=stripSlashes($target);
1034                  fputs($lock,"$GLOBALS[gblUserName]\n");          $dir=dirname($target);
1035                  fclose($lock);          if (! file_exists($dir."/.lock")) {
1036                    mkdir($dir."/.lock",0700);
1037                  LogIt($target,"file locked");          }
1038          }          $file=basename($target);
1039    
1040  }          if (file_exists("$dir/.lock/$file")) {
1041                    LogIt($target,"attempt to locked allready locked file!");
1042  function CheckLock($target) {          } else {
1043                    $lock=fopen("$dir/.lock/$file","w");
1044          $target=stripSlashes($target);                  fputs($lock,"$gblUserName\n");
1045          $dir=dirname($target);                  fclose($lock);
1046          $file=basename($target);  
1047          $msg=0;                  LogIt($target,"file locked");
1048          if (file_exists($dir."/.lock/$file")) {          }
1049                  $lock=fopen("$dir/.lock/$file","r");  
1050                  $msg=fgets($lock,4096);  }
1051                  fclose($lock);  
1052          }  function CheckLock($target) {
1053          return chop($msg);  
1054            $target=stripSlashes($target);
1055  }          $dir=dirname($target);
1056            $file=basename($target);
1057  function Unlock($target) {          $msg=0;
1058            if (file_exists($dir."/.lock/$file")) {
1059          $target=stripSlashes($target);                  $lock=fopen("$dir/.lock/$file","r");
1060          $dir=dirname($target);                  $msg=fgets($lock,4096);
1061          $file=basename($target);                  fclose($lock);
1062          if (file_exists($dir."/.lock/$file")) {          }
1063                  unlink("$dir/.lock/$file");          return chop($msg);
1064                  LogIt($target,"file unlocked");  
1065          } else {  }
1066                  LogIt($target,"attempt to unlocked non-locked file!");  
1067          }  function Unlock($target) {
1068    
1069  }          $target=stripSlashes($target);
1070            $dir=dirname($target);
1071  //////////////////////////////////////////////////////////////////          $file=basename($target);
1072            if (file_exists($dir."/.lock/$file")) {
1073  function urlpath($url) {                  unlink("$dir/.lock/$file");
1074          $url=urlencode(StripSlashes("$url"));                  LogIt($target,"file unlocked");
1075          $url=str_replace("%2F","/",$url);          } else {
1076          $url=str_replace("+","%20",$url);                  LogIt($target,"attempt to unlocked non-locked file!");
1077          return($url);          }
1078  }  
1079    }
1080  //////////////////////////////////////////////////////////////////  
1081    //////////////////////////////////////////////////////////////////
1082  function safe_rename($fromdir,$fromfile,$tofile) {  
1083          function try_rename($from,$to) {  function urlpath($url) {
1084  #               print "$from -> $to\n";          $url=urlencode(StripSlashes("$url"));
1085                  if (file_exists($from) && is_writeable(dirname($to))) {          $url=str_replace("%2F","/",$url);
1086                          return rename($from,$to);          $url=str_replace("+","%20",$url);
1087                  } else {          return($url);
1088                          return 0;  }
1089                  }  
1090          }  //////////////////////////////////////////////////////////////////
1091    
1092          function try_dir($todir) {  function safe_rename($fromdir,$fromfile,$tofile) {
1093                  if (! file_exists($todir)) {  
1094                          @mkdir($todir,0700);          global $gblNumBackups;
1095                  }  
1096          }          function try_rename($from,$to) {
1097    #               print "$from -> $to\n";
1098          $to="$fromdir/$tofile";                  if (file_exists($from) && is_writeable(dirname($to))) {
1099          $todir=dirname($to);                          return rename($from,$to);
1100          $tofile=basename($to);                  } else {
1101                            return 0;
1102  #       print "<pre>$fromdir / $fromfile -> $todir / $tofile\n\n";                  }
1103            }
1104          if (! try_rename("$fromdir/$fromfile","$todir/$tofile")) Error("Rename error","Can't rename file <tt>$fromfile</tt> to <tt>$tofile</tt>",1);  
1105          try_dir("$todir/.log");          function try_dir($todir) {
1106          try_rename("$fromdir/.log/$fromfile","$todir/.log/$tofile");                  if (! file_exists($todir)) {
1107          try_dir("$todir/.note");                          @mkdir($todir,0700);
1108          try_rename("$fromdir/.note/$fromfile","$todir/.note/$tofile");                  }
1109          try_dir("$todir/.lock");          }
1110          try_rename("$fromdir/.lock/$fromfile","$todir/.lock/$tofile");  
1111          try_dir("$todir/.bak");          $to="$fromdir/$tofile";
1112          for($i=0;$i<=$GLOBALS[gblNumBackups];$i++) {          $todir=dirname($to);
1113                  try_rename("$fromdir/.bak/$i/$fromfile","$todir/.bak/$i/$tofile");          $tofile=basename($to);
1114          }  
1115  }  #       print "<pre>$fromdir / $fromfile -> $todir / $tofile\n\n";
1116    
1117            if (! try_rename("$fromdir/$fromfile","$todir/$tofile")) Error("Rename error","Can't rename file <tt>$fromfile</tt> to <tt>$tofile</tt>",1);
1118  //////////////////////////////////////////////////////////////////          try_dir("$todir/.log");
1119            try_rename("$fromdir/.log/$fromfile","$todir/.log/$tofile");
1120  // recursivly delete directory          try_dir("$todir/.note");
1121            try_rename("$fromdir/.note/$fromfile","$todir/.note/$tofile");
1122  function rrmdir($dir) {          try_dir("$todir/.lock");
1123          $handle=opendir($dir);          try_rename("$fromdir/.lock/$fromfile","$todir/.lock/$tofile");
1124          while ($file = readdir($handle)) {          try_dir("$todir/.bak");
1125                  if ($file != "." && $file != "..") {          for($i=0;$i<=$gblNumBackups;$i++) {
1126                          if (is_dir("$dir/$file"))                  try_rename("$fromdir/.bak/$i/$fromfile","$todir/.bak/$i/$tofile");
1127                                  rrmdir("$dir/$file");          }
1128                          else  }
1129                                  if (! @unlink("$dir/$file")) return(0);  
1130                  }  
1131          }  //////////////////////////////////////////////////////////////////
1132          closedir($handle);  
1133          return @rmdir($dir);  // recursivly delete directory
1134  }  
1135    function rrmdir($dir) {
1136  //////////////////////////////////////////////////////////////////          $handle=opendir($dir);
1137            while ($file = readdir($handle)) {
1138  function DisplayChangeLog($day) {                  if ($file != "." && $file != "..") {
1139                            if (is_dir("$dir/$file"))
1140          global $gblFsRoot,$HTTP_SERVER_VARS;                                  rrmdir("$dir/$file");
1141                            else
1142          if (!file_exists("$gblFsRoot/.changelog")) return;                                  if (! @unlink("$dir/$file")) return(0);
1143          $log=fopen("$gblFsRoot/.changelog","r");                  }
1144          $logarr = array();          }
1145          while($line = fgetcsv($log,512,"\t")) {          closedir($handle);
1146                  while (sizeof($line) > 4) {          return @rmdir($dir);
1147                          $tmp = array_pop($line);  }
1148                          $line.=" $tmp";  
1149                  }  //////////////////////////////////////////////////////////////////
1150                  if ($day!=1 || ($day==1 && (time()-$line[0] < 24*60*60))) {  
1151                          array_unshift($logarr,array($line[0],$line[1],$line[2],$line[3]));  function DisplayChangeLog($day) {
1152                  }  
1153          }          global $gblFsRoot, $gblDateFmt, $gblTimeFmt,
1154          fclose($log);                  $HTTP_SERVER_VARS;
1155          $cl1=" class=LST"; $cl2="";  
1156          print "<table border=0 width=100%>\n";          $self  = $HTTP_SERVER_VARS["PHP_SELF"];
1157          while ($e = array_shift($logarr)) {  
1158                  $cl=$cl1; $cl1=$cl2; $cl2=$cl;          if (!file_exists("$gblFsRoot/.changelog")) return;
1159                  $date = date("$GLOBALS[gblDateFmt]", $e[0]);          $log=fopen("$gblFsRoot/.changelog","r");
1160                  $time = date("$GLOBALS[gblTimeFmt]", $e[0]);          $logarr = array();
1161                  $dir = dirname($e[1]);          while($line = fgetcsv($log,512,"\t")) {
1162                  $file = basename($e[1]);                  while (sizeof($line) > 4) {
1163                  print "<tr><td$cl>$date</td><td$cl>$time</td><td$cl><a href=\"$HTTP_SERVER_VARS[PHP_SELF]?D=".urlencode($dir)."\">$dir</a>/$file</td><td$cl>$e[2]</td><td$cl>$e[3]</td></tr>\n";                          $tmp = array_pop($line);
1164          }                          $line.=" $tmp";
1165          print "</table>";                  }
1166          print "<p>".GifIcon(up)." Back to <a href=$HTTP_SERVER_VARS[PHP_SELF]>front page</a>.</p>";                  if ($day!=1 || ($day==1 && (time()-$line[0] < 24*60*60))) {
1167  }                          array_unshift($logarr,array($line[0],$line[1],$line[2],$line[3]));
1168                    }
1169  //////////////////////////////////////////////////////////////////          }
1170            fclose($log);
1171  function Download($path,$force=0) {          $cl1=" class=LST"; $cl2="";
1172          global $HTTP_SERVER_VARS,$mime_type;          print "<table border=0 width=100%>\n";
1173            while ($e = array_shift($logarr)) {
1174          // default transfer-encoding                  $cl=$cl1; $cl1=$cl2; $cl2=$cl;
1175          $encoding = "binary";                  $date = date($gblDateFmt, $e[0]);
1176                    $time = date($gblTimeFmt, $e[0]);
1177          // known transfer encodings                  $dir = dirname($e[1]);
1178          $encoding_ext = array(                  $file = basename($e[1]);
1179                  "gz" => "x-gzip",                  print "<tr><td$cl>$date</td><td$cl>$time</td><td$cl><a href=\"$HTTP_SERVER_VARS[PHP_SELF]?D=".urlencode($dir)."\">$dir</a>/$file</td><td$cl>$e[2]</td><td$cl>$e[3]</td></tr>\n";
1180                  "Z" => "x-compress",          }
1181          );          print "</table>";
1182            print "<p>".GifIcon("up")." Back to <a href=\"$self\">front page</a>.</p>";
1183          $file = basename($path);  }
1184          $size = filesize($path);  
1185    //////////////////////////////////////////////////////////////////
1186          $ext_arr = explode(".",$file);  
1187          $ext = array_pop($ext_arr);  function Download($path,$force=0) {
1188          if ($encoding_ext[$ext]) {          global $HTTP_SERVER_VARS,$mime_type;
1189                  $encoding = $encoding_ext[$ext];  
1190                  $ext = array_pop($ext_arr);          // default transfer-encoding
1191          }          $encoding = "binary";
1192    
1193          if ($force || !isset($mime_type[$ext])) {          // known transfer encodings
1194                  header("Content-Type: application/force-download");          $encoding_ext = array(
1195          } else {                  "gz" => "x-gzip",
1196                  header("Content-Type: $mime_type[$ext]");                  "Z" => "x-compress",
1197          }          );
1198    
1199          // IE5.5 just downloads index.php if we don't do this          $file = basename($path);
1200          if(preg_match("/MSIE 5.5/", $HTTP_SERVER_VARS[HTTP_USER_AGENT])) {          $size = filesize($path);
1201                  header("Content-Disposition: filename=$file");  
1202          } else {          $ext_arr = explode(".",$file);
1203                  header("Content-Disposition: attachment; filename=$file");          $ext = array_pop($ext_arr);
1204          }          if (isset($encoding_ext[$ext])) {
1205                    $encoding = $encoding_ext[$ext];
1206          header("Content-Transfer-Encoding: $encoding");                  $ext = array_pop($ext_arr);
1207          $fh = fopen($path, "r");          }
1208          fpassthru($fh);  
1209  }          if ($force || !isset($mime_type[$ext])) {
1210                    header("Content-Type: application/force-download");
1211            } else {
1212  //////////////////////////////////////////////////////////////////                  header("Content-Type: $mime_type[$ext]");
1213            }
1214  function chopsl($path) {  
1215          if (substr($path,strlen($path)-1,1) == "/") $path=substr($path,0,strlen($path)-1);          // IE5.5 just downloads index.php if we don't do this
1216          $path=str_replace("//","/",$path);          if(preg_match("/MSIE 5.5/", $HTTP_SERVER_VARS["HTTP_USER_AGENT"])) {
1217          return $path;                  header("Content-Disposition: filename=$file");
1218  }          } else {
1219                    header("Content-Disposition: attachment; filename=$file");
1220  //////////////////////////////////////////////////////////////////          }
1221  /*  
1222          Document manager ACL implementation          header("Content-Transfer-Encoding: $encoding");
1223            $fh = fopen($path, "r");
1224          Written by Dobrica Pavlinusic <dpavlin@rot13.org>          fpassthru($fh);
1225    }
1226          Based on ideas from Linux trustees code  
1227          by Vyacheslav Zavadsky <zavadsky@braysystems.com>  
1228  */  //////////////////////////////////////////////////////////////////
1229    
1230  define(trmask_not,1 << 0);  function chopsl($path) {
1231  define(trmask_clear,1 << 1);          $path=str_replace("//","/",$path);
1232  define(trmask_deny,1 << 2);          if (substr($path,strlen($path)-1,1) == "/") $path=substr($path,0,strlen($path)-1);
1233  define(trmask_one_level,1 << 3);          return $path;
1234  define(trmask_group,1 << 4);  }
1235    
1236  define(trperm_r,1 << 5);  //////////////////////////////////////////////////////////////////
1237  define(trperm_w,1 << 6);  /*
1238  define(trperm_b,1 << 7);          Document manager ACL implementation
1239  define(trperm_n,1 << 8);  
1240            Written by Dobrica Pavlinusic <dpavlin@rot13.org>
1241  $trustee_a2n = array(  
1242          '!' => trmask_not,          Based on ideas from Linux trustees code
1243          'C' => trmask_clear,          by Vyacheslav Zavadsky <zavadsky@braysystems.com>
1244          'D' => trmask_deny,  */
1245          'O' => trmask_one_level,  
1246          '+' => trmask_group,  define('trmask_not',1 << 0);
1247          'R' => trperm_r,  define('trmask_clear',1 << 1);
1248          'W' => trperm_w,  define('trmask_deny',1 << 2);
1249          'B' => trperm_b,  define('trmask_one_level',1 << 3);
1250          'N' => trperm_n,  define('trmask_group',1 << 4);
1251  );  
1252    define('trperm_r',1 << 5);
1253  // debugging function  define('trperm_w',1 << 6);
1254  function display_trustee($t) {  define('trperm_b',1 << 7);
1255          global $trustee_a2n;  define('trperm_n',1 << 8);
1256          $out="";  
1257          foreach ($trustee_a2n as $c=>$v) {  $trustee_a2n = array(
1258                  if ($t & $v) $out.=$c;          '!' => trmask_not,
1259          }          'C' => trmask_clear,
1260          return $out;          'D' => trmask_deny,
1261  }          'O' => trmask_one_level,
1262  function display_all_trustee() {          '+' => trmask_group,
1263          global $trustees;          'R' => trperm_r,
1264          print "trustee dump:<br>\n";          'W' => trperm_w,
1265          foreach ($trustees as $path => $tr) {          'B' => trperm_b,
1266                  print "<br><tt>$path</tt>\n";          'N' => trperm_n,
1267                  foreach ($tr as $user=>$perm) {  );
1268                          print "$user == $perm (".display_trustee($perm).")<br>\n";  
1269                  }  // debugging function
1270          }  function display_trustee($t) {
1271  }          global $trustee_a2n;
1272            $out="";
1273  function init_trustee() {          foreach ($trustee_a2n as $c=>$v) {
1274                    if ($t & $v) $out.=$c;
1275  global $trustee_conf,$trustee_php,$trustee_a2n,$groups,$trustees;          }
1276            return $out;
1277  // do we need to re-create compiled trustees?  }
1278  if (! file_exists($trustee_conf)) {  function display_all_trustee() {
1279          # $error="$trustee_conf doesn't exits";          global $trustees;
1280          return 0;       # don't use trustees          print "trustee dump:<br>\n";
1281  } elseif (file_exists($trustee_conf) && !is_readable($trustee_conf)) {          foreach ($trustees as $path => $tr) {
1282          $error="<tt>$trustee_conf</tt> exits, but is not readable";                  print "<br><tt>$path</tt>\n";
1283  } elseif (!is_writable(dirname($trustee_php))) {                  foreach ($tr as $user=>$perm) {
1284          $error="<tt>".dirname($trustee_php)."</tt> must be writable by web server user";                          print "$user == $perm (".display_trustee($perm).")<br>\n";
1285  } elseif (file_exists($trustee_php) && !is_writable($trustee_php)) {                  }
1286          $error="trustees cache file <tt>$trustee_php</tt> exists, but is not writable by web server";          }
1287  } elseif (1 || filemtime($trustee_conf) >= filemtime($trustee_php)) {  }
1288          $fp_php=@fopen($trustee_php,"w");  
1289          fputs($fp_php,"<?php // don't edit by hand!\n");  function init_trustee() {
1290    
1291          $fp_conf=fopen($trustee_conf,"r");  global $trustee_conf,$trustee_php,$trustee_a2n,$groups,$trustees;
1292    
1293          $groups_arr = array();  // do we need to re-create compiled trustees?
1294          $perm_arr = array();  if (! file_exists($trustee_conf)) {
1295            # $error="$trustee_conf doesn't exits";
1296          $tr_arr = array();          return 0;       # don't use trustees
1297    } elseif (file_exists($trustee_conf) && !is_readable($trustee_conf)) {
1298          while (! feof($fp_conf)) {          $error="<tt>$trustee_conf</tt> exits, but is not readable";
1299                  $l = trim(fgets($fp_conf,4096));  } elseif (!is_writable(dirname($trustee_php))) {
1300                  if (substr($l,0,1) == "+") {    // no comment          $error="<tt>".dirname($trustee_php)."</tt> must be writable by web server user";
1301                          $arr=explode(":",$l);  } elseif (file_exists($trustee_php) && !is_writable($trustee_php)) {
1302                          $groups_arr[$arr[0]] = $arr[1] ;          $error="trustees cache file <tt>$trustee_php</tt> exists, but is not writable by web server";
1303                  } elseif (substr($l,0,1) != "#") {  } elseif (@filemtime($trustee_conf) >= @filemtime($trustee_php)) {
1304                          $arr=explode(":",$l);          $fp_php=@fopen($trustee_php,"w");
1305                          $path=array_shift($arr);          fputs($fp_php,"<?php // don't edit by hand!\n");
1306                          if ($path == "") continue;  
1307                          $sep2="";          $fp_conf=fopen($trustee_conf,"r");
1308                          while ($user=array_shift($arr)) {  
1309                                  $perm=0;          $groups_arr = array();
1310                                  if (substr($user,0,1) == "+") {          $perm_arr = array();
1311                                          $perm|=trmask_group;  
1312                                          $user=substr($user,1,strlen($user)-1);          $tr_arr = array();
1313                                  }  
1314                                  $perm_ascii=array_shift($arr);          while (! feof($fp_conf)) {
1315                                  for ($i=0;$i<strlen($perm_ascii);$i++) {                  $l = trim(fgets($fp_conf,4096));
1316                                          $ch=strtoupper($perm_ascii[$i]);                  if (substr($l,0,1) == "+") {    // no comment
1317                                          if (isset($trustee_a2n[$ch])) {                          $arr=explode(":",$l);
1318                                                  $perm|=$trustee_a2n[$ch];                          $groups_arr[$arr[0]] = str_replace(" ","",$arr[1]) ;
1319                                          } else {                  } elseif (substr($l,0,1) != "#") {
1320                                                  $error.="trustee error in line '$l' [Unknown modifier '$ch']<br>\n";                          $arr=explode(":",$l);
1321                                          }                          $path=array_shift($arr);
1322                                  }                          if ($path == "") continue;
1323                                  $tr_arr[$path][$user] |= $perm;                          $sep2="";
1324                          }                          while ($user=array_shift($arr)) {
1325                  }                                  $perm=0;
1326          }                                  if (substr($user,0,1) == "+") {
1327                                            $perm|=trmask_group;
1328          fclose($fp_conf);                                          $user=substr($user,1,strlen($user)-1);
1329                                    }
1330          // save trustees                                  $perm_ascii=array_shift($arr);
1331          $tr_out='$trustees = array (';                                  for ($i=0;$i<strlen($perm_ascii);$i++) {
1332          $sep1="";                                          $ch=strtoupper($perm_ascii[$i]);
1333          while (list ($path, $tr) = each ($tr_arr)) {                                          if (isset($trustee_a2n[$ch])) {
1334                  $tr_out.="$sep1\n\t'$path'=>array(";                                                  $perm|=$trustee_a2n[$ch];
1335                  $sep2="";                                          } else {
1336                  while (list($user,$perm)=each($tr)) {                                                  $error.="trustee error in line '$l' [Unknown modifier '$ch']<br>\n";
1337                          $tr_out.="$sep2\n\t\t'$user'=>$perm";                                          }
1338                          $sep2=",";                                  }
1339                  }                                  if (isset($tr_arr[$path][$user])) {
1340                  $tr_out.="\n\t)";                                          $tr_arr[$path][$user] |= $perm;
1341                  $sep1=",";                                  } else {
1342          }                                          $tr_arr[$path][$user] = $perm;
1343          $tr_out.="\n);";                                  }
1344                            }
1345          // save groups                  }
1346          $gr_out='$groups = array (';          }
1347          $sep="";  
1348          while (list ($group, $members) = each ($groups_arr)) {          fclose($fp_conf);
1349                  $gr_out.="$sep\n\t'";  
1350                  $gr_out.=substr($group,1,strlen($group)-1);          // save trustees
1351                  $gr_out.="'=>array('".join("','",explode(",",$members))."')";          $tr_out='$trustees = array (';
1352                  $sep=",";          $sep1="";
1353          }          while (list ($path, $tr) = each ($tr_arr)) {
1354          $gr_out.="\n);\n";                  $tr_out.="$sep1\n\t'$path'=>array(";
1355                    $sep2="";
1356          fputs($fp_php,$gr_out);                  while (list($user,$perm)=each($tr)) {
1357          fputs($fp_php,$tr_out);                          $tr_out.="$sep2\n\t\t'$user'=>$perm";
1358          fputs($fp_php,"?>\n");                          $sep2=",";
1359          fclose($fp_php);                  }
1360  }                  $tr_out.="\n\t)";
1361                    $sep1=",";
1362  if ($error) {          }
1363          Error("Trustee error",$error,1);          $tr_out.="\n);";
1364  } else {  
1365          include("$trustee_php");          // save groups
1366  }          $gr_out='$groups = array (';
1367            $sep="";
1368  return 1;          while (list ($group, $members) = each ($groups_arr)) {
1369                    $gr_out.="$sep\n\t'";
1370  }//init_trustee                  $gr_out.=substr($group,1,strlen($group)-1);
1371                    $gr_out.="'=>array('".join("','",explode(",",$members))."')";
1372  function in_group($user,$group) {                  $sep=",";
1373          return in_array($groups[$group],$user);          }
1374  }          $gr_out.="\n);\n";
1375    
1376  // helper function          fputs($fp_php,$gr_out);
1377  function unroll_perm($u,$t,$user,$perm) {          fputs($fp_php,$tr_out);
1378          // check user          fputs($fp_php,"?>\n");
1379          if ($t & trmask_not && ($u==$user)) continue;          fclose($fp_php);
1380          if (!($t & trmask_not) && ($u!=$user)) continue;  }
1381    
1382          if ($t & trmask_deny) {  if (isset($error)) {
1383                  if ($t & trmask_clear) {          Error("Trustee error",$error,1);
1384                          $perm[deny] &= ~$t;  } else {
1385                  } else {          include_once("$trustee_php");
1386                          $perm[deny] |= $t;  }
1387                  }  
1388          } elseif ($t & trmask_clear) {  return 1;
1389                  $perm[allow] &= ~$t;  
1390          } else {  }//init_trustee
1391                  $perm[allow] |= $t;  
1392          }  function in_group($user,$group) {
1393          return $perm;          global $groups;
1394  }// end of helper function          return in_array($user,$groups[$group]);
1395    }
1396  function check_trustee($user,$path) {  
1397          global $trustees;  // helper function
1398          $perm[allow] = 0;  function unroll_perm($u,$t,$perm,$one_level) {
1399          $perm[deny] = 0;  
1400          $path_arr=explode("/",$path);          if ($t & trmask_one_level && !$one_level) return $perm;
1401          $path = "/";  
1402          while (count($path_arr)) {          if ($t & trmask_deny) {
1403                  if (substr($path,strlen($path)-1,1) != "/") $path.="/";                  if ($t & trmask_clear) {
1404                  $path.=array_shift($path_arr);                          $perm['deny'] &= ~$t;
1405                  $tr = $trustees[$path];                  } else {
1406                            $perm['deny'] |= $t;
1407                  if (isset($tr)) {                  }
1408                          // first apply trustee for all          } elseif ($t & trmask_clear) {
1409                          if (isset($tr['*'])) {                  $perm['allow'] &= ~$t;
1410                                  $perm = unroll_perm($user,$tr['*'],$user, $perm);          } else {
1411                                  unset($tr['*']);                  $perm['allow'] |= $t;
1412                          }          }
1413                          // then apply group policies          return $perm;
1414                          foreach ($tr as $u=>$t) {  }// end of helper function
1415                                  if ($t & trmask_group && in_group($user,$u)) {  
1416                                          // resolv user  function check_trustee($user,$path) {
1417                                          $t = $t & ~trmask_group;          global $trustees,$HAVE_TRUSTEE;
1418                                          $u = $user;          $perm['allow'] = 0;
1419                                          $perm = unroll_perm($u,$t,$user, $perm);          $perm['deny'] = 0;
1420                                          unset($tr[$u]);  
1421                                  }          // do we use trustees?
1422                          }          if (! $HAVE_TRUSTEE) return $perm;
1423                          // then apply use policy  
1424                          if (isset($tr[$user])) {          if (! isset($trustees)) Error("Trustees not found","Can't find in-memory trustee structure <tt>\$trustees</tt>. Probably bug in code. Contact <tt>dpavlin@rot13.org</tt>",1);
1425                                  $perm = unroll_perm($user,$tr[$user],$user, $perm);  
1426                                  unset($tr[$user]);  global $debug;
1427                          }  $debug .= "<br>check_trustee $path ... ";
1428    
1429                  }          $path_arr=explode("/",$path);
1430            $tmppath="";
1431          }          while (count($path_arr)) {
1432  #print "<br>user: $user path: $path perm: ";                  $p = array_shift($path_arr);
1433  #print "d: $perm[deny] (".display_trustee($perm[deny]).") a: $perm[allow] (".display_trustee($perm[allow]).")<Br>\n";  $debug.= "[$p] ";
1434          return $perm;                  # add trailing slash
1435  }                  if (substr($tmppath,strlen($tmppath)-1,1) != "/") {
1436                            $tmppath.="/";
1437  // handy functions                  }
1438                    # append currnet dir to tmppath
1439  function check_perm($path,$trperm) {                  if (isset($p)) {
1440          global $gblLogin,$HAVE_TRUSTEE;                          $tmppath.=$p;
1441  print "<br>check_perm: <tt>$path</tt> test perm ".display_trustee($perm)."<br>\n";                  }
1442          $return = ! $HAVE_TRUSTEE;  $debug.= ">> $tmppath ";
1443          if ($HAVE_TRUSTEE) {  
1444                  $perm = check_trustee($gblLogin,$path);                  if (! isset($trustees[$tmppath])) continue;
1445  print " d: $perm[deny] (".display_trustee($perm[deny]).") a: $perm[allow] (".display_trustee($perm[allow]).") perm: $trperm";                  $tr = $trustees[$tmppath];
1446                  if ($perm[deny] & $trperm) $return=0;  
1447                  elseif ($perm[allow] & $trperm) $return=1;                  $one_level = (!count($path_arr));
1448          }  $debug.=" O($one_level) ";
1449  print " return: $return<br>\n";  
1450          return($return);                  if (isset($tr)) {
1451  }                          // first apply trustee for all
1452                            if (isset($tr['*']) && $user!="anonymous") {
1453  //////////////////////////////////////////////////////////////////                                  $perm = unroll_perm($user,$tr['*'],$perm, $one_level);
1454                                    unset($tr['*']);
1455  function readMime() {                          }
1456          global $mime_type;                          // then apply not and group policies
1457                            foreach ($tr as $g=>$t) {
1458          if (! isset($gblMimeTypes)) {                                  if ($t & trmask_not && $g != $user) {
1459                  $gblMimeTypes = "/etc/mime.types";                                          $t = $t & ~trmask_not;
1460          }                                          $perm = unroll_perm($user,$t,$perm, $one_level);
1461                                            unset($tr[$g]);
1462          $mime = @fopen($gblMimeTypes,"r");  
1463                                    } elseif ($t & trmask_group && in_group($user,$g)) {
1464          if (! $mime) Error("Can't read MIME types","<tt>$gblMimeTypes</tt> file not found. You can setup other <tt>mime.types</tt> file using <tt>\$gblMimeTypes</tt> in <tt>$realm_config</tt>");                                          // resolv user
1465                                            $t = $t & ~trmask_group;
1466          while($line = fgets($mime,80)) {                                          $perm = unroll_perm($user,$t,$perm, $one_level);
1467                  if (substr($line,0,1) == "#") continue; // skip comment                                          unset($tr[$g]);
1468                  $arr = preg_split("/[\s\t]+/",$line);                                  }
1469                  $type = array_shift($arr);                          }
1470                  while ($ext = array_shift($arr)) {                          // then apply user policy
1471                          $mime_type[$ext] = $type;                          if (isset($tr[$user])) {
1472                  }                                  $perm = unroll_perm($user,$tr[$user],$perm,$one_level);
1473          }                                  unset($tr[$user]);
1474                            }
1475          fclose($mime);                  }
1476  }  $debug.="d(".display_trustee($perm['deny']).") a(".display_trustee($perm['allow']).") ";
1477    
1478  //////////////////////////////////////////////////////////////////          }
1479  // MAIN PROGRAM  $debug.="<br>check_trustee: user: $user path: $path==$tmppath perm: ";
1480    $debug.="d: ".$perm['deny']." (".display_trustee($perm['deny']).") a: ".$perm['allow']." (".display_trustee($perm['allow']).")<Br>\n";
1481          $gblFilePerms = 0640 ;         // default for new files          return $perm;
1482          $gblDirPerms  = 0750 ;          // default for new dirs  }
1483    
1484          $STYLE = $HTTP_GET_VARS[STYLE];  // handy functions
1485          if (isset($STYLE) && $STYLE == "get") {  
1486                  include("$html/docman.css");  function check_perm($path,$trperm) {
1487                  exit;          global $gblLogin,$HAVE_TRUSTEE;
1488          }  
1489            $path = str_replace("//","/",$path);
1490          // location of master docman configuration file  
1491          $docman_conf = "/etc/docman.conf";          global $debug;
1492          if (! file_exists($docman_conf)) {  $debug.="<br>check_perm: on <tt>$path</tt> for perm ".display_trustee($trperm)."<br>\n";
1493                  $error = "Can't find master configuration file $docman_conf. See docman2/doc/upgrade.html#docman_conf for more informations";  
1494                            $return = ! $HAVE_TRUSTEE;
1495                  error_log("docman: $error");          if ($HAVE_TRUSTEE) {
1496                  Error("docman not installed completly",$error);                  $perm = check_trustee($gblLogin,$path);
1497          }  $debug.=" d: ".$perm['deny']." (".display_trustee($perm['deny']).") a: ".$perm['allow']." (".display_trustee($perm['allow']).") perm to have: $trperm (".display_trustee($trperm).")";
1498          include($docman_conf);                  if ($perm['deny'] & $trperm) $return=0;
1499                    elseif (($perm['allow'] & $trperm) == $trperm) $return=1;
1500          if (! isset($fsRealmDir)) {          }
1501                  $fsRealmDir = "$gblIncDir/realm";  $debug.=" return: $return<br>\n";
1502          }          return($return);
1503    }
1504          // try to add dir to script name to realm var  
1505          if (is_dir("$fsRealmDir/$realm/".dirname($HTTP_SERVER_VARS[SCRIPT_NAME]))) {  //////////////////////////////////////////////////////////////////
1506                  $realm .= "/".dirname($HTTP_SERVER_VARS[SCRIPT_NAME]);  
1507                  $realm_sep = "/";  function readMime() {
1508          } else {          global $mime_type, $gblMimeTypes;
1509                  $realm_sep = ".";  
1510          }          if (! isset($gblMimeTypes)) {
1511                    $gblMimeTypes = "/etc/mime.types";
1512          $realm_config = $fsRealmDir."/".$realm.$realm_sep."conf";          }
1513    
1514          // read user-defined configuration          $mime = @fopen($gblMimeTypes,"r");
1515          if (file_exists($realm_config)) {  
1516                  include($realm_config);          if (! $mime) Error("Can't read MIME types","<tt>$gblMimeTypes</tt> file not found. You can setup other <tt>mime.types</tt> file using <tt>\$gblMimeTypes</tt> in <tt>$realm_config</tt>");
1517          } else {  
1518                  Error("Configuration error","Can't find configuration file at <tt>$realm_config</tt> !");          while($line = fgets($mime,80)) {
1519          }                  if (substr($line,0,1) == "#") continue; // skip comment
1520                    $arr = preg_split("/[\s\t]+/",$line);
1521          if (! isset($gblRepositoryDir)) Error("Configuration error","<tt>\$gblRepositoryDir</tt> is not setuped in realm configuration file <tt>$realm_config</tt>");                  $type = array_shift($arr);
1522                    while ($ext = array_shift($arr)) {
1523          // where do we get users from?                          $mime_type[$ext] = $type;
1524          if (file_exists("$gblIncDir/htusers/$gblUsers.php")) {                  }
1525                  include("$gblIncDir/htusers/$gblUsers.php");          }
1526          } else {  
1527                  Error("Configuration error","Can't find user handling module at <tt>$gblIncDir/htusers/$gblUsers.php</tt> ! Please fix <tt>$realm_config</tt>");          fclose($mime);
1528          }  }
1529    
1530          // if no password, or empty password logout  //////////////////////////////////////////////////////////////////
1531          if (  
1532                  isset($gblLogin) && (  // check for invalid characters in filename and dirname (.. and /)
1533                          !isset($relogin) || (  
1534                                  isset($relogin) && $relogin != md5($gblLogin.$gblPasswd)  function check_dirname($file) {
1535                          )          if (strstr($file,"..")) Error("Security violation","No parent dir <tt>..</tt> allowed in directory name <tt>$file</tt>",1);
1536                  ) && (  }
1537                          $gblPasswd == "" || !isset($gblPasswd)  
1538                  ) && !isset($force_login) && $gblLogin != "anonymous"  function check_filename($file) {
1539             ) {          if (strstr($file,"..")) Error("Security violation","No parent dir <tt>..</tt> allowed in file name <tt>$file</tt>",1);
1540                  StartHTML("Logout completed","Your login credentials has been erased") ;          // remove deleted directory (for undelete to work)
1541                  EndHTML() ;          $file = str_replace(".del/","",$file);
1542                  exit ;          if (strstr($file,"/")) Error("Security violation","No slashes <tt>/</tt> allowed in file name <tt>$file</tt>",1);
1543          }  }
1544    
1545          if (!is_dir($gblRepositoryDir)) Error("Repository dir not found","Can't find repository directory <tt>$gblRepositoryDir</tt>. Please fix that in <tt>$realm_config</tt> variable <tt>\$gblRepositoryDir</tt>.",1);  // bla/blo/../foo will return bla/foo
1546    function remove_parent($path) {
1547          // trustee (ACL) file configuration          while (preg_match(",/[^/]+/\.\./,",$path)) {
1548          $trustee_conf="$fsRealmDir/$realm".$realm_sep."trustee";                  $path = preg_replace(",/[^/]+/\.\./,","",$path);
1549          // compiled version of trustee file          }
1550          $trustee_php="$gblRepositoryDir/.trustee.php";          if (substr($path,0,1) != "/") $path = "/".$path;
1551          // get ACL informations          return $path;
1552          $HAVE_TRUSTEE = init_trustee();  }
1553    
1554          if (strtolower($gblLogin) == "anonymous" || !isset($gblPasswd)) {  //////////////////////////////////////////////////////////////////
1555                  $perm = check_trustee($gblLogin,$path);  
1556                  // browsing must be explicitly allowed for root directory  // functions to move HTTP server variables to global namespace
1557                  // of repository for anonymous user to work!  // [replacement for register_globals in php.ini]
1558                  if ($perm[allow] & trperm_b) {  
1559                          $secHash = md5($gblLogin.$gblPasswd);  function HTTP_GET_VAR($var) {
1560                          $gblUserName = "Anonymous user";          global $HTTP_GET_VARS, ${$var};
1561                  }          if (isset($HTTP_GET_VARS[$var])) {
1562          }                  $$var = stripSlashes($HTTP_GET_VARS[$var]);
1563                    return $$var;
1564          // authentication failure          }
1565          if ( md5($gblLogin.$gblPasswd) != $secHash ||  }
1566                  isset($relogin) && $secHash == $relogin) {  
1567                  header("WWW-authenticate: basic realm=\"$realm\"") ;  function HTTP_POST_VAR($var) {
1568                  header("HTTP/1.0 401 Unauthorized") ;          global $HTTP_POST_VARS, ${$var};
1569                  Error("401 Unauthorized","No trespassing !",0,1);          if (isset($HTTP_POST_VARS[$var])) {
1570          }                  $$var = $HTTP_POST_VARS[$var];
1571                    return $$var;
1572          // read mime.types          }
1573          readMime();  }
1574    
1575          // get current directory relative to $gblFsRoot  function HTTP_SERVER_VAR($var) {
1576          $relDir = $DIR ;        // from POST          global $HTTP_SERVER_VARS, ${$var};
1577          if ($relDir == "") {    // not defined in POST ?          if (isset($HTTP_SERVER_VARS[$var])) {
1578                  $relDir = urldecode($D) ;  // then use GET                  $$var = $HTTP_SERVER_VARS[$var];
1579          }                        return $$var;
1580            }
1581          $relDir=stripSlashes($relDir);  }
1582    
1583          if ($relDir == "/") $relDir = "" ;        //////////////////////////////////////////////////////////////////
1584          // default : website root = ""  
1585    function Warn($text) {
1586          if (strstr($relDir,"..")) Error("No updirs allowed");  }
1587    
1588          // full paths contain "fs" or "Fs". Paths realitve to root of  //////////////////////////////////////////////////////////////////
1589          // website contain "rel" or "Rel". The script won't let you  
1590          // edit anything above directory equal to http://server.com  function isBlank($file,$what = "filename") {
1591          // i.e. below $gblFsRoot.          if (trim($file) == "") return "<i>whitespace $what</i>";
1592            if ($file == "") return "<i>no $what</i>";
1593          $relScriptDir = dirname($SCRIPT_NAME) ;                  return $file;
1594          // i.e. /docman  }
1595    
1596          // start on server root  //////////////////////////////////////////////////////////////////
1597          $gblFsRoot = $gblRepositoryDir;  // MAIN PROGRAM
1598          // i.e. /home/httpd/html  
1599            $gblFilePerms = 0640 ;         // default for new files
1600          $fsDir = $gblFsRoot . $relDir ; // current directory          $gblDirPerms  = 0750 ;          // default for new dirs
1601          if ( !is_dir($fsDir) ) Error("Dir not found",$relDir) ;  
1602            if (isset($HTTP_GET_VARS["STYLE"]) && $HTTP_GET_VARS["STYLE"] == "get") {
1603          if (isset($HTTP_SERVER_VARS["HTTPS"]) && $HTTP_SERVER_VARS["HTTPS"] == "on") {                  if (! headers_sent()) {
1604                  $webRoot  = "https://";                          Header("Content-type: text/css");
1605          } else {                  }
1606                  $webRoot  = "http://";                  include("$html/docman.css");
1607          }                  exit;
1608          $webRoot .= $HTTP_SERVER_VARS["HTTP_HOST"] . $relScriptDir;          }
1609    
1610          // take variables from server          // set fsRealmDir
1611          $FN=stripSlashes($HTTP_POST_VARS["FN"]);          if (! isset($fsRealmDir)) {
1612          $DIR=stripSlashes($HTTP_POST_VARS["DIR"]);                  $fsRealmDir = "$gblIncDir/realm";
1613          $RELPATH=stripSlashes($HTTP_POST_VARS["RELPATH"]);          }
1614          $T=stripSlashes($HTTP_POST_VARS["T"]);  
1615          $CONFIRM=stripSlashes($HTTP_POST_VARS["CONFIRM"]);          // try to add dir to script name to realm var
1616            if (is_dir("$fsRealmDir/$realm/".dirname($HTTP_SERVER_VARS["SCRIPT_NAME"]))) {
1617          // get                  $realm .= dirname($HTTP_SERVER_VARS["SCRIPT_NAME"]);
1618          $A=stripSlashes($HTTP_GET_VARS["A"]);                  $realm_sep = "/";
1619          $D=stripSlashes($HTTP_GET_VARS["D"]);          } else {
1620                    $realm_sep = ".";
1621  //      if (isset($F)) Error("Document manager system error","variable $F shouldn't be set here (re-check old code)",1);          }
1622  //      $F=stripSlashes($HTTP_SERVER_VARS["PATH_INFO"]);  
1623          $F=stripSlashes($HTTP_GET_VARS["F"]);          $realm_config = $fsRealmDir."/".$realm.$realm_sep."conf";
1624    
1625          switch ($HTTP_POST_VARS["POSTACTION"]) {          // read user-defined configuration
1626          case "UPLOAD" :          if (file_exists($realm_config)) {
1627                  $FN_name=stripSlashes($HTTP_POST_FILES["FN"]["tmp_name"]);                  include($realm_config);
1628                  $FN=stripSlashes($HTTP_POST_FILES["FN"]["name"]);          } else {
1629                  if (!is_writeable($fsDir)) Error("Write denied",$relDir) ;                  Error("Configuration error","Can't find configuration file at <tt>$realm_config</tt> !");
1630            }
1631                  $source = $FN_name ;  
1632                  if (! file_exists($source)) {          if (! isset($gblRepositoryDir)) Error("Configuration error","<tt>\$gblRepositoryDir</tt> is not setuped in realm configuration file <tt>$realm_config</tt>");
1633                          Error("You must select file with browse to upload it!");  
1634                  }          // where do we get users from?
1635            if (file_exists("$gblIncDir/htusers/$gblUsers.php")) {
1636                  $FILENAME = $HTTP_POST_VARS["FILENAME"];                  include("$gblIncDir/htusers/$gblUsers.php");
1637                  if (strstr($FILENAME,"/"))          } else {
1638                          Error("Upload error","Non-conforming filename. Filename <tt>$FILENAME</tt> has slashes (<tt>/</tt>) in it.") ;                  Error("Configuration error","Can't find user handling module at <tt>$gblIncDir/htusers/$gblUsers.php</tt> ! Please fix <tt>$realm_config</tt>");
1639                  if (! isset($FILENAME)) {       // from update file          }
1640                          $target = "$fsDir/".basename($FN);  
1641                  } else {          // take additional login vars
1642                          $target = "$fsDir/$FILENAME";          HTTP_GET_VAR("relogin");
1643                  }          HTTP_GET_VAR("force_login");
1644    
1645                  // backup old files first          // if no password, or empty password logout
1646                  $dir=dirname($target);          if (
1647                  if (! file_exists($dir."/.bak")) {                  isset($gblLogin) && (
1648                          mkdir($dir."/.bak",0700);                          !isset($relogin) || (
1649                  }                                  isset($relogin) && $relogin != md5($gblLogin.$gblPasswd)
1650                  if (! file_exists($dir."/.bak/$GLOBALS[gblNumBackups]")) {                          )
1651                          mkdir($dir."/.bak/$GLOBALS[gblNumBackups]",0700);                  ) && (
1652                  }                          $gblPasswd == "" || !isset($gblPasswd)
1653                  $file=basename($target);                  ) && !isset($force_login) && $gblLogin != "anonymous"
1654                  for($i=$GLOBALS[gblNumBackups]-1;$i>0;$i--) {             ) {
1655                          MoveTo("$dir/.bak/$i/$file","$dir/.bak/".($i+1)."/");                  StartHTML("Logout completed","Your login credentials has been erased") ;
1656                  }                  EndHTML() ;
1657                  MoveTo($target,$dir."/.bak/1/");                  exit ;
1658            }
1659                  copy($source,$target) ;  
1660                  chmod($target,$gblFilePerms) ;          if (!is_dir($gblRepositoryDir)) Error("Repository dir not found","Can't find repository directory <tt>$gblRepositoryDir</tt>. Please fix that in <tt>$realm_config</tt> variable <tt>\$gblRepositoryDir</tt>.",1);
1661                  clearstatcache() ;  
1662                  if (isset($FILENAME)) {          // trustee (ACL) file configuration
1663                          LogIt($target,"check-in",trperm_r | trperm_w);          $trustee_conf="$fsRealmDir/$realm".$realm_sep."trustee";
1664                          Unlock($target);          // compiled version of trustee file
1665                  } else {          $trustee_php="$gblRepositoryDir/.trustee.php";
1666                          LogIt($target,"uploaded",trperm_r | trperm_w);          // get ACL informations
1667                  }          $HAVE_TRUSTEE = init_trustee();
1668                  break ;  
1669            if (strtolower($gblLogin) == "anonymous" || !isset($gblLogin)) {
1670          case "SAVE" :                  $perm = check_trustee("anonymous","/");
1671                  $path = $gblFsRoot . $RELPATH ;                  // browsing must be explicitly allowed for root directory
1672                  $path=stripSlashes($path);                  // of repository for anonymous user to work!
1673                  $writable = is_writeable($path) ;                  if ($perm['allow'] & trperm_b) {
1674                  $legaldir = is_writeable(dirname($path)) ;                          $gblLogin = $gblPasswd = "anonymous";
1675                  $exists   = (file_exists($path)) ? 1 : 0 ;                          $secHash = md5($gblLogin.$gblPasswd);
1676  // check for legal extension here as well                          $gblUserName = "Anonymous user";
1677                  if (!($writable || (!$exists && $legaldir)))                  }
1678                          Error("Write denied",$RELPATH) ;          }
1679                  $fh = fopen($path, "w") ;  
1680                  $FILEDATA=stripSlashes($FILEDATA);          // authentication failure
1681                  fwrite($fh,$FILEDATA) ;          if ( md5($gblLogin.$gblPasswd) != $secHash ||
1682                  fclose($fh) ;                  isset($relogin) && $secHash == $relogin) {
1683                  clearstatcache() ;                  header("WWW-authenticate: basic realm=\"$realm\"") ;
1684                  LogIt($path,"saved changes",trperm_r);                  header("HTTP/1.0 401 Unauthorized") ;
1685                  break ;                  Error("401 Unauthorized","No trespassing !",0,1);
1686            }
1687          case "CREATE" :  
1688                  // we know $fsDir exists  
1689                  if ($FN == "") break;           // no filename!          // read mime.types
1690                  if (!is_writeable($fsDir)) Error("Write denied",$relDir) ;          readMime();
1691                  $path = $fsDir . "/" . $FN ;  // file or dir to create  
1692                  $relPath = $relDir . "/" . $FN ;          if (! isset($gblPermNote)) {
1693                  switch ( $T ) {                  $gblPermNote = trperm_r;
1694                  case "D" :  // create a directory          }
1695                          if ( ! @mkdir($path,$gblDirPerms) )  
1696                                  Error("Mkdir failed",$relPath) ; // eg. if it exists          HTTP_POST_VAR("FN");
1697                          else  
1698                                  LogIt($path."/","dir created",trperm_w);          if ($HTTP_SERVER_VARS["REQUEST_METHOD"] == "POST") {
1699                          clearstatcache() ;                  // take variables from server
1700                          break ;                  if (HTTP_POST_VAR("FN"))
1701                  case "F" :  // create a new file                          check_filename($FN);
1702  // this functionality is doubled in DetailView().                  if (HTTP_POST_VAR("DIR")) {
1703  // better keep it here altogether                          check_dirname($DIR);
1704  // chmod perms to $gblFilePerms                          $relDir = $DIR;
1705                          if ( file_exists($path) && !is_writeable($path) )                  } else {
1706                                  Error("File not writable", $relPath) ;                          trigger_error("Can't get DIR",E_USER_WARNING);
1707                          $fh = fopen($path, "w+") ;                          $relDir = "/";
1708                          if ($fh) {                  }
1709                                  fputs($fh,"\n");                  if (HTTP_POST_VAR("RELPATH")) check_dirname($RELPATH);
1710                                  fclose($fh) ;                  HTTP_POST_VAR("T");
1711                                  LogIt($path,"file created",trperm_r | trperm_w);                  HTTP_POST_VAR("CONFIRM");
1712                          } else {          } else {
1713                                  Error("Creation of file $relPath failed -- $path");                  // get
1714                          }                  HTTP_GET_VAR("A");
1715                          $tstr = "$PHP_SELF?A=E&D=".urlencode($relDir)."&F=".urlencode($FN) ;                  if (HTTP_GET_VAR("D")) {
1716                          header("Location: " . $tstr) ;                          check_dirname($D);
1717                          exit ;                          $D=urldecode($D);
1718                  }                          $relDir = $D;
1719                  break ;                  } else {
1720                            //trigger_error("Can't get D",E_USER_WARNING);
1721          case "DELETE" :                            $relDir = "/";
1722                  if ( $CONFIRM != "on" ) break ;                  }
1723                    if (HTTP_GET_VAR("F")) check_filename($F);
1724                  $tstr  = "Attempt to delete non-existing object or " ;          }
1725                  $tstr .= "insufficient privileges: " ;  
1726            $relScriptDir = dirname($HTTP_SERVER_VARS["SCRIPT_NAME"]) ;    
1727                  if ( $FN != "") {  // delete file          // i.e. /docman
1728                          $path =  $fsDir . "/" . $FN ;  
1729                            // start on server root
1730                          $dir=dirname($path);          $gblFsRoot = $gblRepositoryDir;
1731                          $file=basename($path);          // i.e. /home/httpd/repository
1732                          if (! file_exists("$dir/.del")) {  
1733                                  mkdir("$dir/.del",0700);          $fsDir = $gblFsRoot . $relDir ; // current directory
1734                          }          if ( !is_dir($fsDir) ) Error("Dir not found","Can't find <tt>$relDir</tt> which points to <tt>$fsDir</tt>",1) ;
1735    
1736  //                      if ( ! @unlink($path) ) {          if ($relDir == "") $relDir="/";
1737                          if ( ! rename($path,"$dir/.del/$file") ) {  
1738                                  LogIt($path,"file delete failed");          if (isset($HTTP_SERVER_VARS["HTTPS"]) && $HTTP_SERVER_VARS["HTTPS"] == "on") {
1739                                  Error("File delete failed", $tstr . $path) ;                  $webRoot  = "https://";
1740                          } else {          } else {
1741                                  LogIt($path,"file deleted",trperm_w);                  $webRoot  = "http://";
1742                                  MoveTo("$dir/.log/$file","$dir/.del/.log/");          }
1743                                  MoveTo("$dir/.note/$file","$dir/.del/.note/");          $webRoot .= $HTTP_SERVER_VARS["HTTP_HOST"] . $relScriptDir;
1744                                  MoveTo("$dir/.lock/$file","$dir/.del/.lock/");  
1745                          }          if (HTTP_POST_VAR("POSTACTION")) switch ($POSTACTION) {
1746                  } else {  // delete directory          case "UPLOAD" :
1747                          if ( ! @rrmdir($fsDir) ) {                  $FN_name=stripSlashes($HTTP_POST_FILES["FN"]["tmp_name"]);
1748                                  Error("Rmdir failed", $tstr . $fsDir) ;                  $FN=stripSlashes($HTTP_POST_FILES["FN"]["name"]);
1749                          } else {                  if (!is_writeable($fsDir)) Error("Write denied",$relDir) ;
1750                                  LogIt($path,"dir deleted",trperm_w);  
1751                                  $relDir = dirname($relDir) ;  // move up                  $source = $FN_name ;
1752                          }                  if (! file_exists($source)) {
1753                  }                          Error("You must select file with browse to upload it!","If file is too big, you might need to modify php configuration options <tt>post_max_size</tt> and <tt>upload_max_filesize</tt>",1);
1754                  break ;                  }
1755    
1756          case "UNDELETE" :                    if (HTTP_POST_VAR("FILENAME")) check_filename($FILENAME);
1757                  if ( $CONFIRM != "on" ) break ;  
1758                    if (! isset($FILENAME)) {       // from update file
1759                  if (substr($FN,0,4) != ".del") break ;                          $target = "$fsDir/".basename($FN);
1760                  $file=substr($FN,4,strlen($FN)-4);                  } else {
1761                            $target = "$fsDir/$FILENAME";
1762                  LogIt("$fsDir/.del/$file","undeleted",trperm_w);                  }
1763                  MoveTo("$fsDir/.del/$file","$fsDir/");  
1764                  MoveTo("$fsDir/.del/.log/$file","$fsDir/.log/");                  if (! check_perm("$relDir/".basename($target), trperm_w))
1765                  MoveTo("$fsDir/.del/.note/$file","$fsDir/.note/");                          Error("Access denied","User <tt>$gblLogin</tt> tried to upload <tt>$relDir/".basename($target)."</tt> without valid trustee.",1);
1766                  MoveTo("$fsDir/.del/.lock/$file","$fsDir/.lock/");  
1767                    // backup old files first
1768                  break ;                  $dir=dirname($target);
1769                    if (! file_exists($dir."/.bak")) {
1770          case "RENAME" :                            mkdir($dir."/.bak",0700);
1771                  if ( $CONFIRM != "on" ) break ;                  }
1772                    if (! file_exists($dir."/.bak/$gblNumBackups")) {
1773                  $NEWNAME=stripSlashes($HTTP_POST_VARS["NEWNAME"]);                          mkdir($dir."/.bak/$gblNumBackups",0700);
1774                  LogIt("$fsDir/$FN","renamed $FN to $NEWNAME",trperm_r);                  }
1775                  safe_rename($fsDir,$FN,$NEWNAME);                  $file=basename($target);
1776                  break ;                  for($i=$gblNumBackups-1;$i>0;$i--) {
1777                            MoveTo("$dir/.bak/$i/$file","$dir/.bak/".($i+1)."/");
1778          case "NOTE" :                    }
1779                  $NOTE=stripSlashes($HTTP_POST_VARS["NOTE"]);                  MoveTo($target,$dir."/.bak/1/");
1780                  WriteNote("$fsDir/$FN","$NOTE");  
1781                  break ;                  copy($source,$target) ;
1782                    chmod($target,$gblFilePerms) ;
1783          case "UNLOCK" :                    clearstatcache() ;
1784                  if ( $CONFIRM != "on" ) break ;                  if (isset($FILENAME)) {
1785                  Unlock("$fsDir/$FN");                          LogIt($target,"check-in",trperm_r | trperm_w);
1786                  break ;                          Unlock($target);
1787                    } else {
1788          default :                          LogIt($target,"uploaded",trperm_r | trperm_w);
1789                  // user hit "CANCEL" or undefined action                  }
1790          }                  break ;
1791    
1792          // common to all POSTs : redirect to directory view ($relDir)          case "SAVE" :
1793          if ( $POSTACTION != "" ) {                  $path = $gblFsRoot . $RELPATH ;
1794                  $tstr = $PHP_SELF . "?D=" . urlencode($relDir) ;                  $path=stripSlashes($path);
1795                  header("Location: " . $tstr) ;    
1796                  exit ;                  if (! check_perm("$RELPATH", trperm_w))
1797          }                          Error("Access denied","User <tt>$gblLogin</tt> tried to save <tt>$RELPATH</tt> without valid trustee.",1);
1798            
1799          // check for mode.. navigate, code display, upload, or detail?                  $writable = is_writeable($path) ;
1800          // $A=U : upload to path given in $D                  $legaldir = is_writeable(dirname($path)) ;
1801          // $A=E : display detail of file $D/$F and edit                  $exists   = (file_exists($path)) ? 1 : 0 ;
1802          // $A=C : display code in file $D/$F                  // FIX: more verbose error message
1803          // $A=Co : checkout file $D/$F                  if (!($writable || (!$exists && $legaldir)))
1804          // $A=Ci : checkin file $D/$F                          Error("Write denied",$RELPATH) ;
1805          // $A=V : view file (do nothing except log)                  $fh = fopen($path, "w") ;
1806          // $A=I : include file .$F.php from $gblFsRoot                  HTTP_POST_VAR("FILEDATA");
1807          // default : display directory $D                  fwrite($fh,$FILEDATA) ;
1808                    fclose($fh) ;
1809          switch ($A) {                  clearstatcache() ;
1810          case "U" :                  LogIt($path,"saved changes",trperm_r);
1811                  // upload to $relDir                  break ;
1812                  if (!is_writeable($gblFsRoot . $relDir))  
1813                          Error("Write access denied",$relDir) ;          case "CREATE" :
1814                  $text  = "Use this page to upload a single " ;                  // we know $fsDir exists
1815                  $text .= "file to <B>$realm</B>." ;                  if (! check_perm($relDir, trperm_w))
1816                  StartHTML("(Upload Page)", $text) ;                          Error("Write access denied","You don't have permission to write in <tt>$relDir</tt>");
1817                  UploadPage($gblFsRoot, $relDir) ;                  if ($T == "D") $type = "directory";
1818                  EndHTML() ;                  else $type ="file";
1819                  exit ;                  if ($FN == "") Error("Can't create $type","You must enter name of $type to create it.");
1820          case "E" :                  if (!is_writeable($fsDir)) Error("Write denied","User <tt>$gblLogin</tt> has trustee to write in <tt>$relDir</tt> but permissions on <tt>$fsDir</tt> are wrong!", 1) ;
1821                  // detail of $relDir/$F                  $path = "$fsDir/$FN";           // file or dir to create
1822                  if (is_file("$gblFsRoot/$relDir/$F") || is_dir("$gblFsRoot/$relDir/$F")) DetailPage($gblFsRoot, $relDir, $F) ;                  $relPath = "$relDir/$FN";
1823                  exit ;  
1824          case "C" :                  if (file_exists($path))
1825                  $F=stripSlashes($F);                          Error("Can't create $type","Object <tt>$relPath</tt> allready exists");
1826                  // listing of $relDir/$F  
1827                  DisplayCode($gblFsRoot, $relDir, $F) ;                  switch ( $T ) {
1828                  exit ;                  case "D" :  // create a directory
1829          case "Co" :                          if ( ! @mkdir($path,$gblDirPerms) )
1830                  // checkout                                  Error("Mkdir failed",$relPath) ; // eg. if it exists
1831                  Lock("$gblFsRoot/$relDir/$F");                          else
1832                  Download("$gblFsRoot/$relDir/$F",1);                                  LogIt($path."/","dir created",trperm_w);
1833                  exit;                          clearstatcache() ;
1834          case "Ci" :                          break ;
1835                  $F=stripSlashes($F);                  case "F" :  // create a new file
1836                  // upload && update to $relDir  // this functionality is doubled in DetailView().
1837                  if (!is_writeable($gblFsRoot . $relDir))  // better keep it here altogether
1838                          Error("Write access denied",$relDir) ;  // chmod perms to $gblFilePerms
1839                  $text  = "Use this page to update a single " ;                          if ( file_exists($path) && !is_writeable($path) )
1840                  $text .= "file to <B>$realm</B>." ;                                  Error("File not writable", "User <tt>$gblLogin</tt> has trustee to write in <tt>$relPath</tt> but permissions on <tt>$path</tt> are wrong!", 1) ;
1841                  StartHTML("(Update file Page)", $text) ;                          $fh = fopen($path, "w+") ;
1842                  UploadPage($gblFsRoot, $relDir, $F) ;                          if ($fh) {
1843                  EndHTML() ;                                  fputs($fh,"\n");
1844                  exit ;                                  fclose($fh) ;
1845          case "V" :                                  LogIt($path,"file created",trperm_r | trperm_w);
1846                  // view                          } else {
1847                  LogIt("$gblFsRoot/$relDir/$F","viewed");                                  Error("Creation of file $relPath failed", "User <tt>$gblLogin</tt> has trustee to write in <tt>$relPath</tt> but creation of <tt>$path</tt> failed!", 1) ;
1848                  Download("$gblFsRoot/$relDir/$F",$gblForceDownload);                          }
1849                  exit;                          $tstr = $HTTP_SERVER_VARS["PHP_SELF"]."?A=E&D=".urlencode($relDir)."&F=".urlencode($FN) ;
1850          case "Ch" :                          header("Location: " . $tstr) ;
1851                  StartHTML("(File changes)","All changes chronologicaly...");                          exit ;
1852                  DisplayChangeLog(0);    // all                  }
1853                  EndHTML() ;                  break ;
1854                  exit;  
1855          case "Ch1" :          case "DELETE" :  
1856                  StartHTML("(File changes)","Changes to files in last day...");                  if ( $CONFIRM != "on" ) break;
1857                  DisplayChangeLog(1);  
1858                  EndHTML() ;                  if ( isset($FN) && $FN != "") {
1859                  exit;                          $path=$fsDir."/".$FN;
1860          case "I" :                          $what = "file";
1861                  $F=stripSlashes($F);                  } elseif (isset($DIR)) {
1862                  $inc_file="${gblFsRoot}/.${F}.php";                          $path=$gblFsRoot."/".$DIR;
1863                  if (!isset($F) || $F == "" || !file_exists($inc_file)) Error("Fatal error $inc_file"); // can't find file to include                          $what = "directory";
1864                  if (!is_readable($inc_file))                  } else  {
1865                          Error("Read access to include file denied",".${F}.php");                          Error("Can't delete object","Can't find filename <tt>\$FN</tt> or dirname in <tt>\$DIR</tt>",1);
1866                  $text  = "Your include file should define \$text variable which holds this text and \$title variable which is page title";                  }
1867                  $title = "You should define \$title variable with page title";  
1868                  include($inc_file);                  if (! check_perm("$relDir/$FN", trperm_w))
1869                  StartHTML($title, $text) ;                          Error("Access denied","User <tt>$gblLogin</tt> tried to erase $what <tt>$relDir/$FN</tt> without valid trustee.",1);
1870                  print "<p>".GifIcon(up)." Back to <a href=$HTTP_SERVER_VARS[PHP_SELF]>front page</a>.</p>";  
1871                  EndHTML() ;                  $tstr  = "Attempt to delete non-existing object or insufficient privileges: " ;
1872                  exit ;  
1873          }                  $dir=dirname($path);
1874                    $file=basename($path);
1875          // default: display directory $relDir  
1876          Navigate($gblFsRoot,$relDir) ;                    if (! file_exists("$dir/.del")) {
1877          exit ;                          mkdir("$dir/.del",0700);
1878                    }
1879          Error("Whooah!","By cartesian logic, this never happens",1) ;  
1880  ?>                  if ( ! @rename($path,"$dir/.del/$file") ) {
1881                            LogIt($path,"$what delete failed");
1882                            Error("Can't delete $what",$tstr."<tt>".$relDir."/".$FN."</tt>") ;
1883                    } else {
1884                            LogIt($path,"$what deleted",trperm_w);
1885                            MoveTo("$dir/.log/$file","$dir/.del/.log/");
1886                            MoveTo("$dir/.note/$file","$dir/.del/.note/");
1887                            MoveTo("$dir/.lock/$file","$dir/.del/.lock/");
1888                    }
1889                    break ;
1890    
1891            case "UNDELETE" :  
1892                    if ( $CONFIRM != "on" ) break ;
1893    
1894                    if (substr($FN,0,4) != ".del") break ;
1895                    $file=substr($FN,4,strlen($FN)-4);
1896    
1897                    if (! check_perm("$relDir/$file", trperm_w))
1898                            Error("Access denied","User <tt>$gblLogin</tt> tried to undelete <tt>$relDir/$file</tt> without valid trustee.",1);
1899    
1900                    LogIt("$fsDir/.del/$file","undeleted",trperm_w);
1901                    MoveTo("$fsDir/.del/$file","$fsDir/");
1902                    MoveTo("$fsDir/.del/.log/$file","$fsDir/.log/");
1903                    MoveTo("$fsDir/.del/.note/$file","$fsDir/.note/");
1904                    MoveTo("$fsDir/.del/.lock/$file","$fsDir/.lock/");
1905    
1906                    break ;
1907    
1908            case "RENAME" :  
1909                    if ( $CONFIRM != "on" ) break ;
1910    
1911                    if (HTTP_POST_VAR("NEWNAME")) {
1912                            $dest = remove_parent($relDir.$NEWNAME);
1913                            if (! check_perm($relDir.$FN, trperm_w) ||
1914                                ! check_perm($dest, trperm_w) )
1915                                    Error("Access denied","User <tt>$gblLogin</tt> tried to rename <tt>$relDir$FN</tt> to <tt>$dest</tt> without valid trustee.",1);
1916                    } else {
1917                            Error("Rename error","Can't find new name in var <tt>\$NEWNAME</tt>",1);
1918                    }
1919                    LogIt("$fsDir/$FN","renamed $FN to $NEWNAME",trperm_r);
1920                    safe_rename($fsDir,$FN,$NEWNAME);
1921                    break ;
1922    
1923            case "NOTE" :
1924                    if (! HTTP_POST_VAR("NOTE"))
1925                            Error("Can't add note to object","Can't find var <tt>\$NOTE</tt>",1);
1926                    if (! check_perm("$relDir/$FN", trperm_w))
1927                            Error("Access denied","User <tt>$gblLogin</tt> tried to add note to <tt>$relDir/$FN</tt> without valid trustee.",1);
1928    
1929                    WriteNote("$fsDir/$FN",$NOTE);
1930                    break ;
1931    
1932            case "UNLOCK" :  
1933                    if ( $CONFIRM != "on" ) break ;
1934                    if (! check_perm("$relDir/$FN", trperm_w))
1935                            Error("Access denied","User <tt>$gblLogin</tt> tried to unlock <tt>$relDir/$FN</tt> without valid trustee.",1);
1936                    Unlock("$fsDir/$FN");
1937                    break ;
1938    
1939            default :
1940                    // user hit "CANCEL" or undefined action
1941            }
1942    
1943            // common to all POSTs : redirect to directory view ($relDir)
1944            if (isset($POSTACTION)) {
1945                    $tstr = $HTTP_SERVER_VARS["PHP_SELF"]."?D=".urlencode($relDir);
1946                    header("Location: ".$tstr) ;  
1947                    exit ;
1948            }
1949    
1950            // check for mode.. navigate, code display, upload, or detail?
1951            // $A=U : upload to path given in $D
1952            // $A=E : display detail of file $D/$F and edit
1953            // $A=C : display code in file $D/$F
1954            // $A=Co : checkout file $D/$F
1955            // $A=Ci : checkin file $D/$F
1956            // $A=V : view file (do nothing except log)
1957            // $A=I : include file .$F.php from [$gblIncDir|realm]/include_php
1958            // default : display directory $D
1959    
1960            if (isset($A)) switch ($A) {
1961            case "U" :
1962                    // upload to $relDir
1963                    if (! check_perm($relDir, trperm_w))
1964                            Error("Write access denied","You don't have permission to write in <tt>$relDir</tt>");
1965                    if (!is_writeable($gblFsRoot . $relDir))
1966                            Error("Write access denied","User <tt>$gblLogin</tt> has permission on <tt>$relDir</tt>, but directory is not writable",1);
1967                    $text  = "Use this page to upload a single " ;
1968                    $text .= "file to <B>$realm</B>." ;
1969                    StartHTML("(Upload Page)", $text) ;
1970                    UploadPage($gblFsRoot, $relDir) ;
1971                    EndHTML() ;
1972                    exit ;
1973            case "E" :
1974                    // detail of $relDir/$F
1975                    if (is_file("$gblFsRoot/$relDir/$F") || is_dir("$gblFsRoot/$relDir/$F")) DetailPage($gblFsRoot, $relDir, $F) ;
1976                    exit ;
1977            case "C" :
1978                    $F=stripSlashes($F);
1979                    // listing of $relDir/$F
1980                    DisplayCode($gblFsRoot, $relDir, $F) ;
1981                    exit ;
1982            case "Co" :
1983                    // checkout
1984                    Lock("$gblFsRoot/$relDir/$F");
1985                    Download("$gblFsRoot/$relDir/$F",1);
1986                    exit;
1987            case "Ci" :
1988                    $F=stripSlashes($F);
1989                    // upload && update to $relDir
1990                    if (!is_writeable($gblFsRoot . $relDir))
1991                            Error("Write access denied",$relDir) ;
1992                    $text  = "Use this page to update a single " ;
1993                    $text .= "file to <B>$realm</B>." ;
1994                    StartHTML("(Update file Page)", $text) ;
1995                    UploadPage($gblFsRoot, $relDir, $F) ;
1996                    EndHTML() ;
1997                    exit ;
1998            case "V" :
1999                    // view
2000                    LogIt("$gblFsRoot/$relDir/$F","viewed");
2001                    Download("$gblFsRoot/$relDir/$F",$gblForceDownload);
2002                    exit;
2003            case "Ch" :
2004                    StartHTML("(File changes)","All changes chronologicaly...");
2005                    DisplayChangeLog(0);    // all
2006                    EndHTML() ;
2007                    exit;
2008            case "Ch1" :
2009                    StartHTML("(File changes)","Changes to files in last day...");
2010                    DisplayChangeLog(1);
2011                    EndHTML() ;
2012                    exit;
2013            case "I" :
2014                    if (! isset($F) || $F == "")
2015                            Error("Can't find file to include","Your request didn't specify file to include which should be in variable <tt>F</tt> like <tt>$HTTP_SERVER_VARS[REQUEST_URI]<b>&F=include_php_file</b></tt>",1);
2016                    $inc_file="$fsRealmDir/$realm".$realm_sep.$F.".php";
2017                    if (! file_exists($inc_file)) {
2018                            Error("Can't find file to include","Can't find include file <tt>$F.php</tt> in <tt>$fsRealmDir/$realm/</tt>. Meybe you should copy <tt>$gblIncDir/include_php/$F.php</tt> to <tt>$inc_file<tt> ?",1);
2019                    }
2020                    if (!is_readable($inc_file))
2021                            Error("Read access to include file denied","Can't read PHP include file <tt>$inc_file</tt>. Fix permissions on it.",1);
2022                    $text  = "Your include file should define \$text variable which holds this text and \$title variable which is page title";
2023                    $title = "You should define \$title variable with page title";
2024                    include($inc_file);
2025                    StartHTML($title, $text) ;
2026                    print "<p>".GifIcon(up)." Back to <a href=$HTTP_SERVER_VARS[PHP_SELF]>front page</a>.</p>";
2027                    EndHTML() ;
2028                    exit ;
2029            }
2030    
2031            // default: display directory $relDir
2032            Navigate($gblFsRoot,$relDir) ;  
2033            exit ;
2034    
2035            Error("Whooah!","By cartesian logic, this never happens",1) ;
2036    ?>
2037    

Legend:
Removed from v.1.12  
changed lines
  Added in v.1.44

  ViewVC Help
Powered by ViewVC 1.1.26