/[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.23 by dpavlin, Sun Jul 28 19:52:11 2002 UTC revision 1.33 by dpavlin, Fri Sep 6 17:34:06 2002 UTC
# Line 157  function DetailPage($fsRoot,$relDir,$fn) Line 157  function DetailPage($fsRoot,$relDir,$fn)
157                    
158          global $gblEditable, $gblImages,          global $gblEditable, $gblImages,
159                  $gblDateFmt, $gblTimeFmt,                  $gblDateFmt, $gblTimeFmt,
160                    $gblPermNote,
161                  $webRoot, $html,                  $webRoot, $html,
162                  $HTTP_SERVER_VARS ;                  $HTTP_SERVER_VARS ;
163          $self = $HTTP_SERVER_VARS["PHP_SELF"] ;          $self = $HTTP_SERVER_VARS["PHP_SELF"] ;
# Line 188  function DetailPage($fsRoot,$relDir,$fn) Line 189  function DetailPage($fsRoot,$relDir,$fn)
189          $title = "("._("Detail Page").")" ;          $title = "("._("Detail Page").")" ;
190          StartHTML($title, $text) ;          StartHTML($title, $text) ;
191    
192          echo "<H3>" . $relDir . "/" . $fn . "</H3>" ;          print "<H3>".$relDir.$fn."</H3>";
193    
194          if ($exists) {  // get file info          if ($exists) {  // get file info
195                  $fsize = filesize($fsPath) ;                  $fsize = filesize($fsPath) ;
196                  $fmodified = date("$gblDateFmt $gblTimeFmt", filemtime($fsPath)) ;                  $fmodified = date("$gblDateFmt $gblTimeFmt", filemtime($fsPath)) ;
# Line 207  function DetailPage($fsRoot,$relDir,$fn) Line 209  function DetailPage($fsRoot,$relDir,$fn)
209                  $fstr = fread($fh,filesize($fsPath)) ;                  $fstr = fread($fh,filesize($fsPath)) ;
210                  fclose($fh) ;                  fclose($fh) ;
211                  $fstr = htmlentities( $fstr ) ;                  $fstr = htmlentities( $fstr ) ;
 ?>  
   
 <FORM ACTION="<?= $self ?>" METHOD="POST">  
 <SPAN TITLE="Click [SAVE] to store updated contents.">  
         <B>DOCUMENT CONTENTS</B>  
 </SPAN><BR>  
 <TEXTAREA NAME="FILEDATA" ROWS=18 COLS=70 WRAP="OFF"><?php  
 echo($fstr) ; ?></TEXTAREA>  
 <INPUT TYPE="HIDDEN" NAME="DIR" VALUE="<?= $relDir ; ?>">  
 <INPUT TYPE="HIDDEN" NAME="FN" VALUE="<?= $fn ; ?>">  
 <INPUT TYPE="HIDDEN" NAME="POSTACTION" VALUE="SAVE">  
 <INPUT TYPE="HIDDEN" SIZE=48 MAXLENGTH=255 NAME="RELPATH"  
         VALUE="<?= $relPath ; ?>">  
 <br>  
 <INPUT TYPE="RESET" VALUE="UNDO ALL CHANGES">  
 <INPUT TYPE="SUBMIT" VALUE="SAVE">  
 </FORM>  
212    
213  <?php                  include("$html/DetailPage-edit.html");
214          }          }
215          if ( !$file_lock && $ext!="" && strstr(join(' ',$gblImages),$ext) ) {            if ( !$file_lock && $ext!="" && strstr(join(' ',$gblImages),$ext) ) {  
216                  $info  = getimagesize($fsPath) ;                  $info  = getimagesize($fsPath) ;
217                  $tstr = "<IMG SRC=\"$webRoot".urlpath($relPath)."\" BORDER=0 " ;                  $tstr = "<IMG SRC=\"$self?A=V&D=".urlpath(dirname($relPath))."&F=".urlpath(basename($relPath))."\" BORDER=0 " ;
218                  $tstr .= $info[3] . " ALT=\"" . $fn . " - " ;                  $tstr .= $info[3] . " ALT=\"" . $fn . " - " ;
219                  $tstr .= (int)(($fsize+1023)/1024) . "Kb\">" ;                  $tstr .= (int)(($fsize+1023)/1024) . "Kb\">" ;
220  //              echo htmlentities($tstr) . "<BR><BR>" . $tstr ;  //              echo htmlentities($tstr) . "<BR><BR>" . $tstr ;
221                  echo $tstr ;                  echo $tstr ;
222          }          }
223    
 ?>  
224    
225  <FORM ACTION="<?= $self ; ?>" METHOD="POST">          print '<FORM ACTION="'.$self.'" METHOD="POST">
226  <INPUT TYPE="HIDDEN" NAME="DIR" VALUE="<?= $relDir ; ?>">                  <INPUT TYPE="HIDDEN" NAME="DIR" VALUE="'.$relDir.'">
227  <INPUT TYPE="HIDDEN" NAME="FN" VALUE="<?= $fn ; ?>">                  <INPUT TYPE="HIDDEN" NAME="FN" VALUE="'.$fn.'">
228  <INPUT TYPE="SUBMIT" NAME="POSTACTION" VALUE="CANCEL"><BR>                  <INPUT TYPE="SUBMIT" NAME="POSTACTION" VALUE="CANCEL"><BR>
229                    ';
230  <?php  
231            if ($file_lock && check_perm($relDir.$fn,trperm_w)) {
232          if ($file_lock) {                  include("$html/DetailPage-unlock.html");
 ?>  
 <hr>  
 <SPAN TITLE="Check OK and click UNLOCK to remove lock on file.">  
 <B>OK TO FORCE LOCK REMOVAL ON "<?= $fn ; ?>" HELD BY <?= $file_lock ?>? </B></SPAN>  
 <INPUT TYPE="CHECKBOX" NAME="CONFIRM">  
 <INPUT TYPE="SUBMIT" NAME="POSTACTION" VALUE="UNLOCK">  
 <?  
233          } // file_lock          } // file_lock
234    
235          if (substr($fn,0,4) == ".del") {          if (substr($fn,0,4) == ".del") {
# Line 264  echo($fstr) ; ?></TEXTAREA> Line 241  echo($fstr) ; ?></TEXTAREA>
241          }          }
242    
243          if ($exists && $writable) {          if ($exists && $writable) {
244  ?>                  include("$html/DetailPage-undelete.html");
245                    include("$html/DetailPage-rename.html");
246    
247  <HR>          }
248  <a name="undelete">          
249  <SPAN TITLE="Check OK and click [<?= $action ?>] to <?= $desc ?>.">          if (check_perm($relDir.$fn,$gblPermNote)) {
250  <B>OK TO <?= $action ?> "<?= $fn ; ?>"? </B></SPAN>                  include("$html/DetailPage-note.html");
251  <INPUT TYPE="CHECKBOX" NAME="CONFIRM">          }
 <INPUT TYPE="SUBMIT" NAME="POSTACTION" VALUE="<?= $action ?>">  
   
 <HR>  
 <a name="rename">  
 <SPAN TITLE="Check OK and click [RENAME] to rename.">  
 <B>OK TO RENAME "<?= $fn ; ?>" TO  
 <INPUT TYPE="TEXT" SIZE=24 MAXLENGTH=255 NAME="NEWNAME" VALUE="<?= $fn ?>">  
 ? </B></SPAN>  
 <INPUT TYPE="CHECKBOX" NAME="CONFIRM">  
 <INPUT TYPE="SUBMIT" NAME="POSTACTION" VALUE="RENAME">  
   
 <?php  
         }       // exists && writable  
 ?>  
 <HR>  
 <a name="note">  
 <B>NOTE FOR "<?= $fn ; ?>":  
 <INPUT TYPE="TEXT" SIZE=50 MAXLENGTH=255 NAME="NOTE" VALUE="<?= ReadNote($fsPath) ?>">  
 </B></SPAN>  
 <INPUT TYPE="SUBMIT" NAME="POSTACTION" VALUE="NOTE">  
   
 </FORM>  
252    
253  <?php          print "</FORM>";
254    
255          $name=basename("$fsDir/$fn");          $name=basename("$fsDir/$fn");
256          $logname=dirname("$fsDir/$fn")."/.log/$name";          $logname=dirname("$fsDir/$fn")."/.log/$name";
# Line 480  function MockIcon($txt) { Line 436  function MockIcon($txt) {
436    
437  //////////////////////////////////////////////////////////////////  //////////////////////////////////////////////////////////////////
438    
439  function GifIcon($txt) {  function GifIcon($txt = "") {
440          global $gblIconLocation ;          global $gblIconLocation, $gblImages ;
441    
442          switch (strtolower($txt)) {          switch (strtolower($txt)) {
         case ".bmp" :  
         case ".gif" :  
         case ".jpg" :  
         case ".jpeg":  
         case ".tif" :  
         case ".tiff":  
                 $d = "image2.gif" ;  
                 break ;  
443          case ".doc" :          case ".doc" :
444                  $d = "layout.gif" ;                  $d = "layout.gif" ;
445                  break ;                  break ;
# Line 569  function GifIcon($txt) { Line 517  function GifIcon($txt) {
517                  $d = "quill.gif";                  $d = "quill.gif";
518                  break;                  break;
519          default :          default :
520                  $d = "generic.gif" ;                  if (in_array(strtolower($txt),$gblImages)) {
521                            $d = "image2.gif" ;
522                    } else {
523                            $d = "generic.gif" ;
524                    }
525          }          }
526    
527    
528          return "<IMG SRC=\"$gblIconLocation" . $d . "\" BORDER=0>" ;          return "<IMG SRC=\"$gblIconLocation" . $d . "\" BORDER=0>" ;
529  } // end function GifIcon  } // end function GifIcon
530    
# Line 582  function Navigate($fsRoot,$relDir) { Line 535  function Navigate($fsRoot,$relDir) {
535          global $gblEditable, $gblIcon, $gblModDays, $webRoot, $gblHide,          global $gblEditable, $gblIcon, $gblModDays, $webRoot, $gblHide,
536                  $gblIgnoreUnknownFileType, $gblRepositoryDir,                  $gblIgnoreUnknownFileType, $gblRepositoryDir,
537                  $gblLogin, $gblUserName, $gblDateFmt, $gblTimeFmt,                  $gblLogin, $gblUserName, $gblDateFmt, $gblTimeFmt,
538                    $gblPermNote,
539                  $fsRealmDir, $realm, $realm_sep,                  $fsRealmDir, $realm, $realm_sep,
540                  $html, $realm_config,                  $html, $realm_config,
541                  $HTTP_GET_VARS, $HTTP_SERVER_VARS;                  $HTTP_GET_VARS, $HTTP_SERVER_VARS;
# Line 632  function Navigate($fsRoot,$relDir) { Line 586  function Navigate($fsRoot,$relDir) {
586          if ( HTTP_GET_VAR("show_deleted") == 1 && ($dir = @opendir("$fsDir/.del")) ) {          if ( HTTP_GET_VAR("show_deleted") == 1 && ($dir = @opendir("$fsDir/.del")) ) {
587                  while ($item = readdir($dir)) {                  while ($item = readdir($dir)) {
588                          if ( substr($item,0,1) == "." || strstr($hide_items,",$item,") || !check_perm($relDir.$item,trperm_w) ) continue ;                          if ( substr($item,0,1) == "." || strstr($hide_items,",$item,") || !check_perm($relDir.$item,trperm_w) ) continue ;
589                          $fileList[$item] = ".del/$item" ;                                        if (is_file($fsDir.".del/$item")) {
590                          $fileDate[$item] = filemtime($fsDir.".del/$path") ;                                  $fileList[$item] = ".del/$item" ;              
591                          $fileSize[$item] = filesize($fsDir.".del/$path") ;                                  $fileDate[$item] = filemtime($fsDir.".del/$item") ;
592                          $fileNote[$item] = ReadNote($fsDir.".del/$item");                                  $fileSize[$item] = filesize($fsDir.".del/$item") ;
593                                    $fileNote[$item] = ReadNote($fsDir.".del/$item");
594                            } else {
595                                    $dirList[$item] = ".del/$item" ;                
596                                    $dirNote[$item] = ReadNote($fsDir.".del/$item");
597                            }
598                  }                  }
599                  closedir($dir) ;                  closedir($dir) ;
600          }          }
# Line 651  function Navigate($fsRoot,$relDir) { Line 610  function Navigate($fsRoot,$relDir) {
610          $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>.";          $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>.";
611          StartHTML("(Navigate)",$text) ;          StartHTML("(Navigate)",$text) ;
612    
613          echo "<TABLE BORDER=0 CELLPADDING=2          print "<TABLE BORDER=0 CELLPADDING=2 CELLSPACING=3 WIDTH=\"100%\">" ;
                 CELLSPACING=3 WIDTH=\"100%\">" ;  
614    
615          // updir (parent) bar            // updir (parent) bar  
616          if (chopsl($fsDir) != chopsl($fsRoot)) {          if (chopsl($fsDir) != chopsl($fsRoot)) {
# Line 670  function Navigate($fsRoot,$relDir) { Line 628  function Navigate($fsRoot,$relDir) {
628                  return $out;                  return $out;
629          }          }
630    
631          if (! HTTP_GET_VAR("dsort")) $dsort = "name"; // default directory sort          $dsort = HTTP_GET_VAR("dsort");
632            if (! isset($dsort)) $dsort = "name"; // default directory sort
633    
634          $dsort_arr = array(          $dsort_arr = array(
635                  "name" => array ("rname", "note"),                  "name" => array ("rname", "note"),
# Line 679  function Navigate($fsRoot,$relDir) { Line 638  function Navigate($fsRoot,$relDir) {
638                  "rnote" => array ("name", "note")                  "rnote" => array ("name", "note")
639                  );                  );
640    
641          if (! HTTP_GET_VAR("fsort")) $fsort = "name"; // default directory sort          $fsort = HTTP_GET_VAR("fsort");
642            if (! isset($fsort)) $fsort = "name"; // default directory sort
643    
644          $fsort_arr = array(          $fsort_arr = array(
645                  "name" => array ("rname", "note", "date", "size"),                  "name" => array ("rname", "note", "date", "size"),
# Line 733  function Navigate($fsRoot,$relDir) { Line 693  function Navigate($fsRoot,$relDir) {
693                          $dir = $dirList[$key];                          $dir = $dirList[$key];
694    
695                          $info_url=self_args(array("A"=>"A=E", "F"=>"F=".urlencode($dir), "D"=>$D));                          $info_url=self_args(array("A"=>"A=E", "F"=>"F=".urlencode($dir), "D"=>$D));
696                            if (substr($dir,0,5) == ".del/") {
697                                    $dir = substr($dir,5,strlen($dir)-5);
698                                    $deleted = " <a href=\"$info_url#undelete\"><SPAN CLASS=deleted TITLE=\"deleted\">deleted</span></a>";
699                            } else {
700                                    $deleted = "";
701                            }
702            
703                          $dir_url=$self."?D=".urlencode(chopsl($relDir)."/".$dir);                          $dir_url=$self."?D=".urlencode(chopsl($relDir)."/".$dir);
704                            if (check_perm($relDir.$dir,$gblPermNote)) {
705                                    $note_html="<a href=\"$info_url#note\">".$gblIcon("note")."</a>".$dirNote[$key];
706                            } else {
707                                    $note_html=$dirNote[$key];
708                            }
709    
710                          include("$html/Navigate-dirEntry.html");                          include("$html/Navigate-dirEntry.html");
711    
712                  }  // iterate over dirs                  }  // iterate over dirs
# Line 811  function Navigate($fsRoot,$relDir) { Line 784  function Navigate($fsRoot,$relDir) {
784                  if (substr($file,0,5) != ".del/") {                  if (substr($file,0,5) != ".del/") {
785                          $file_url_html .= $file . "</A>" . $a ;                          $file_url_html .= $file . "</A>" . $a ;
786                  } else {                  } else {
787                          $file_url_html .= substr($file,5,strlen($file)-5) . "</a> <SPAN CLASS=RED TITLE=\"deleted\"> <a href=\"$info_url#undelete\">deleted</a> </span>";                          $file_url_html .= substr($file,5,strlen($file)-5) . "</a> <a href=\"$info_url#undelete\"><SPAN CLASS=deleted TITLE=\"deleted\">deleted</span></a>";
788                  }                  }
789    
790                  $note_html="<a href=\"$info_url#note\">".$gblIcon("note")."</a>".ReadNote($path);                  if (check_perm($relDir.$file,$gblPermNote)) {
791                            $note_html="<a href=\"$info_url#note\">".$gblIcon("note")."</a>".$fileNote[$key];
792                    } else {
793                            $note_html=$fileNote[$key];
794                    }
795    
796                  $ext = strtolower(strrchr($file,".")) ;                  $ext = strtolower(strrchr($file,".")) ;
797    
# Line 834  function Navigate($fsRoot,$relDir) { Line 811  function Navigate($fsRoot,$relDir) {
811                                  $file_url_html = "$file $a";                                  $file_url_html = "$file $a";
812                          }                          }
813                  } else {                  } else {
814                          $b.="<A HREF=\"$self?A=Co&D=".urlencode($relDir)."&F=".urlencode($file);                          if (check_perm($relDir.$file,trperm_w)) {
815                          $b.="\" TITLE=\"Checkout file for edit\">" ;                                  $b.="<A HREF=\"$self?A=Co&D=".urlencode($relDir)."&F=".urlencode($file);
816                          $b.=$gblIcon("checkout")."</A>";                                  $b.="\" TITLE=\"Checkout file for edit\">" ;
817                                    $b.=$gblIcon("checkout")."</A>";
818                            }
819    
820                          if ( $ext=="" || strstr(join(" ",$gblEditable),$ext) ) {                            if ( $ext=="" || strstr(join(" ",$gblEditable),$ext) ) {  
821                                  $b.="<A HREF=\"$self?A=C&D=".urlencode($relDir)."&F=".urlencode($file);                                  $b.="<A HREF=\"$self?A=C&D=".urlencode($relDir)."&F=".urlencode($file);
# Line 853  function Navigate($fsRoot,$relDir) { Line 832  function Navigate($fsRoot,$relDir) {
832    
833            }  // iterate over files            }  // iterate over files
834          } else {  // end if no files          } else {  // end if no files
835  ?>                  include("$html/Navigate-noFiles.html");
  <TR><TD></TD><TD COLSPAN=5 CLASS=LST>  
   No files in this directory  
  </TD></TR>  
 <?  
836          }          }
837    
838          if ($emptyDir && $relDir != "") {          if ($emptyDir && $relDir != "") {
839  ?>                  include("$html/Navigate-emptyDir.html");
   
 <FORM METHOD="POST" ACTION="<?= $self ?>">  
  <TR><TD></TD><TD COLSPAN=5 CLASS=BAR>  
   <INPUT TYPE="HIDDEN" NAME="DIR" VALUE="<?= $relDir ?>">  
   OK TO DELETE THIS EMPTY FOLDER?  
   <INPUT TYPE="CHECKBOX" NAME="CONFIRM">  
   <INPUT TYPE="SUBMIT" NAME="POSTACTION" VALUE="DELETE">  
  </TD></TR>  
 </FORM>  
   
 <?php  
840          } // end if emptyDir          } // end if emptyDir
 ?>  
841    
842  <TR><TD></TD><TD COLSPAN=5><HR></TD></TR>          include("$html/Navigate-hr.html");      
843    
844  <?          if (file_exists("$fsRealmDir/$realm".$realm_sep."info.inc")) {
845                    print "<TR><TD></TD><TD COLSPAN=5>";
846  if (file_exists("$fsRealmDir/$realm".$realm_sep."info.inc")) {                  include("$fsRealmDir/$realm".$realm_sep."info.inc");
847          print "<TR><TD></TD><TD COLSPAN=5>";                  print "</TD></TR>";
848          include("$fsRealmDir/$realm".$realm_sep."info.inc");                  include("$html/Navigate-hr.html");      
849          print "</TD></TR><TR><TD></TD><TD COLSPAN=5><HR></TD></TR>";          } elseif (file_exists("$gblRepositoryDir/.info.inc")) {
850  } elseif (file_exists("$gblRepositoryDir/.info.inc")) {                  print "<TR><TD></TD><TD COLSPAN=5>";
851          print "<TR><TD></TD><TD COLSPAN=5>";                  include("$gblRepositoryDir/.info.inc");
852          include("$gblRepositoryDir/.info.inc");                  print "</TD></TR>";
853          print "</TD></TR><TR><TD></TD><TD COLSPAN=5><HR></TD></TR>";                  include("$html/Navigate-hr.html");      
854  }          }
855    
856            include("$html/Navigate-createNew.html");
857    
858  ?>          print "</TABLE>";
   
 <FORM METHOD="POST" ACTION="<?= $self ?>">  
 <TR><TD></TD><TD COLSPAN=5 CLASS=BAR>CREATE NEW  
  <INPUT TYPE="RADIO" NAME="T" VALUE="D" CHECKED>DIRECTORY -OR-  
  <INPUT TYPE="RADIO" NAME="T" VALUE="F">FILE : &nbsp;&nbsp;  
  <NOBR>NAME <INPUT TYPE="TEXT" NAME="FN" SIZE=14>  
  <INPUT TYPE="HIDDEN" NAME="POSTACTION" VALUE="CREATE">  
  <INPUT TYPE="HIDDEN" NAME="DIR" VALUE="<?= $relDir ?>">  
  <INPUT TYPE="SUBMIT" VALUE="CREATE" NAME="CREATE">  
  </NOBR>  
  <NOBR>OR <A HREF="<?= $self ?>?A=U&D=<?= urlencode($relDir) ?>">UPLOAD</A> A FILE</NOBR>  
 </TD></TR>  
 </FORM>  
 </TABLE>  
859    
 <?php  
860          EndHTML() ;          EndHTML() ;
861  } // end function Navigate  } // end function Navigate
862    
# Line 998  function WriteNote($target,$msg) { Line 947  function WriteNote($target,$msg) {
947          $file=basename($target);          $file=basename($target);
948    
949          $note=fopen("$dir/.note/$file","w");          $note=fopen("$dir/.note/$file","w");
950            if (! $note) {
951                    Error("Error writing note","Can't open note file <tt>$dir/.note/$file</tt> for writing",1);
952            }
953          fputs($note,"$msg\n");          fputs($note,"$msg\n");
954          fclose($note);          fclose($note);
955    
# Line 1211  function Download($path,$force=0) { Line 1163  function Download($path,$force=0) {
1163    
1164          $ext_arr = explode(".",$file);          $ext_arr = explode(".",$file);
1165          $ext = array_pop($ext_arr);          $ext = array_pop($ext_arr);
1166          if ($encoding_ext[$ext]) {          if (isset($encoding_ext[$ext])) {
1167                  $encoding = $encoding_ext[$ext];                  $encoding = $encoding_ext[$ext];
1168                  $ext = array_pop($ext_arr);                  $ext = array_pop($ext_arr);
1169          }          }
# Line 1223  function Download($path,$force=0) { Line 1175  function Download($path,$force=0) {
1175          }          }
1176    
1177          // IE5.5 just downloads index.php if we don't do this          // IE5.5 just downloads index.php if we don't do this
1178          if(preg_match("/MSIE 5.5/", $HTTP_SERVER_VARS[HTTP_USER_AGENT])) {          if(preg_match("/MSIE 5.5/", $HTTP_SERVER_VARS["HTTP_USER_AGENT"])) {
1179                  header("Content-Disposition: filename=$file");                  header("Content-Disposition: filename=$file");
1180          } else {          } else {
1181                  header("Content-Disposition: attachment; filename=$file");                  header("Content-Disposition: attachment; filename=$file");
# Line 1424  function unroll_perm($u,$t,$perm,$one_le Line 1376  function unroll_perm($u,$t,$perm,$one_le
1376  }// end of helper function  }// end of helper function
1377    
1378  function check_trustee($user,$path) {  function check_trustee($user,$path) {
1379          global $trustees;          global $trustees,$HAVE_TRUSTEE;
1380          $perm['allow'] = 0;          $perm['allow'] = 0;
1381          $perm['deny'] = 0;          $perm['deny'] = 0;
1382    
1383          if (! isset($trustees)) Error("Trustees not found","Can't find in-memory trustee structure \$trustees. Probably bug in code. Contact <tt>dpavlin@rot13.org</tt>",1);          // do we use trustees?
1384            if (! $HAVE_TRUSTEE) return $perm;
1385    
1386            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);
1387    
1388  global $debug;  global $debug;
1389  $debug .= "<br>check_trustee $path ... ";  $debug .= "<br>check_trustee $path ... ";
# Line 1447  $debug.=" O($one_level) "; Line 1402  $debug.=" O($one_level) ";
1402    
1403                  if (isset($tr)) {                  if (isset($tr)) {
1404                          // first apply trustee for all                          // first apply trustee for all
1405                          if (isset($tr['*'])) {                          if (isset($tr['*']) && $user!="anonymous") {
1406                                  $perm = unroll_perm($user,$tr['*'],$perm, $one_level);                                  $perm = unroll_perm($user,$tr['*'],$perm, $one_level);
1407                                  unset($tr['*']);                                  unset($tr['*']);
1408                          }                          }
# Line 1484  $debug.="d: ".$perm['deny']." (".display Line 1439  $debug.="d: ".$perm['deny']." (".display
1439  function check_perm($path,$trperm) {  function check_perm($path,$trperm) {
1440          global $gblLogin,$HAVE_TRUSTEE;          global $gblLogin,$HAVE_TRUSTEE;
1441    
1442            $path = str_replace("//","/",$path);
1443    
1444          global $debug;          global $debug;
1445  $debug.="<br>check_perm: on <tt>$path</tt> for perm ".display_trustee($trperm)."<br>\n";  $debug.="<br>check_perm: on <tt>$path</tt> for perm ".display_trustee($trperm)."<br>\n";
1446    
# Line 1533  function check_dirname($file) { Line 1490  function check_dirname($file) {
1490    
1491  function check_filename($file) {  function check_filename($file) {
1492          if (strstr($file,"..")) Error("Security violation","No parent dir <tt>..</tt> allowed in file name <tt>$file</tt>",1);          if (strstr($file,"..")) Error("Security violation","No parent dir <tt>..</tt> allowed in file name <tt>$file</tt>",1);
1493            // remove deleted directory (for undelete to work)
1494            $file = str_replace(".del/","",$file);
1495          if (strstr($file,"/")) Error("Security violation","No slashes <tt>/</tt> allowed in file name <tt>$file</tt>",1);          if (strstr($file,"/")) Error("Security violation","No slashes <tt>/</tt> allowed in file name <tt>$file</tt>",1);
1496  }  }
1497    
1498    // bla/blo/../foo will return bla/foo
1499    function remove_parent($path) {
1500            while (preg_match(",/[^/]+/\.\./,",$path)) {
1501                    $path = preg_replace(",/[^/]+/\.\./,","",$path);
1502            }
1503            if (substr($path,0,1) != "/") $path = "/".$path;
1504            return $path;
1505    }
1506    
1507  //////////////////////////////////////////////////////////////////  //////////////////////////////////////////////////////////////////
1508    
1509  // functions to move HTTP server variables to global namespace  // functions to move HTTP server variables to global namespace
# Line 1584  function Warn($text) { Line 1552  function Warn($text) {
1552          // location of master docman configuration file          // location of master docman configuration file
1553          $docman_conf = "/etc/docman.conf";          $docman_conf = "/etc/docman.conf";
1554          if (! file_exists($docman_conf)) {          if (! file_exists($docman_conf)) {
1555                  $error = "Can't find master configuration file $docman_conf. See docman2/doc/upgrade.html#docman_conf for more informations";                  $error = "Can't find master configuration file <tt>$docman_conf</tt>. See <tt>docman2/doc/upgrade.html#docman_conf</tt> for more informations";
1556                                    
1557                  error_log("docman: $error");                  error_log("docman: $error");
1558                  Error("docman not installed completly",$error);                  Error("docman not installed completly",$error);
# Line 1672  function Warn($text) { Line 1640  function Warn($text) {
1640          // read mime.types          // read mime.types
1641          readMime();          readMime();
1642    
1643  HTTP_POST_VAR("FN");          if (! isset($gblPermNote)) {
1644                    $gblPermNote = trperm_r;
1645            }
1646    
1647            HTTP_POST_VAR("FN");
1648    
1649          if ($HTTP_SERVER_VARS["REQUEST_METHOD"] == "POST") {          if ($HTTP_SERVER_VARS["REQUEST_METHOD"] == "POST") {
1650                  // take variables from server                  // take variables from server
# Line 1729  HTTP_POST_VAR("FN"); Line 1701  HTTP_POST_VAR("FN");
1701    
1702                  $source = $FN_name ;                  $source = $FN_name ;
1703                  if (! file_exists($source)) {                  if (! file_exists($source)) {
1704                          Error("You must select file with browse to upload it!");                          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);
1705                  }                  }
1706    
1707                  if (HTTP_POST_VAR("FILENAME")) check_filename($FILENAME);                  if (HTTP_POST_VAR("FILENAME")) check_filename($FILENAME);
# Line 1740  HTTP_POST_VAR("FN"); Line 1712  HTTP_POST_VAR("FN");
1712                          $target = "$fsDir/$FILENAME";                          $target = "$fsDir/$FILENAME";
1713                  }                  }
1714    
1715                    if (! check_perm("$relDir/".basename($target), trperm_w))
1716                            Error("Access denied","User <tt>$gblLogin</tt> tried to upload <tt>$relDir/".basename($target)."</tt> without valid trustee.",1);
1717    
1718                  // backup old files first                  // backup old files first
1719                  $dir=dirname($target);                  $dir=dirname($target);
1720                  if (! file_exists($dir."/.bak")) {                  if (! file_exists($dir."/.bak")) {
# Line 1768  HTTP_POST_VAR("FN"); Line 1743  HTTP_POST_VAR("FN");
1743          case "SAVE" :          case "SAVE" :
1744                  $path = $gblFsRoot . $RELPATH ;                  $path = $gblFsRoot . $RELPATH ;
1745                  $path=stripSlashes($path);                  $path=stripSlashes($path);
1746    
1747                    if (! check_perm("$RELPATH", trperm_w))
1748                            Error("Access denied","User <tt>$gblLogin</tt> tried to save <tt>$RELPATH</tt> without valid trustee.",1);
1749    
1750                  $writable = is_writeable($path) ;                  $writable = is_writeable($path) ;
1751                  $legaldir = is_writeable(dirname($path)) ;                  $legaldir = is_writeable(dirname($path)) ;
1752                  $exists   = (file_exists($path)) ? 1 : 0 ;                  $exists   = (file_exists($path)) ? 1 : 0 ;
1753  // check for legal extension here as well                  // FIX: more verbose error message
1754                  if (!($writable || (!$exists && $legaldir)))                  if (!($writable || (!$exists && $legaldir)))
1755                          Error("Write denied",$RELPATH) ;                          Error("Write denied",$RELPATH) ;
1756                  $fh = fopen($path, "w") ;                  $fh = fopen($path, "w") ;
# Line 1789  HTTP_POST_VAR("FN"); Line 1768  HTTP_POST_VAR("FN");
1768                  if ($T == "D") $type = "directory";                  if ($T == "D") $type = "directory";
1769                  else $type ="file";                  else $type ="file";
1770                  if ($FN == "") Error("Can't create $type","You must enter name of $type to create it.");                  if ($FN == "") Error("Can't create $type","You must enter name of $type to create it.");
1771                  if (!is_writeable($fsDir)) Error("Write denied",$relDir) ;                  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) ;
1772                  $path = $fsDir . "/" . $FN ;  // file or dir to create                  $path = "$fsDir/$FN";           // file or dir to create
1773                  $relPath = $relDir . "/" . $FN ;                  $relPath = "$relDir/$FN";
1774    
1775                    if (file_exists($path))
1776                            Error("Can't create $type","Object <tt>$relPath</tt> allready exists");
1777    
1778                  switch ( $T ) {                  switch ( $T ) {
1779                  case "D" :  // create a directory                  case "D" :  // create a directory
1780                          if ( ! @mkdir($path,$gblDirPerms) )                          if ( ! @mkdir($path,$gblDirPerms) )
# Line 1805  HTTP_POST_VAR("FN"); Line 1788  HTTP_POST_VAR("FN");
1788  // better keep it here altogether  // better keep it here altogether
1789  // chmod perms to $gblFilePerms  // chmod perms to $gblFilePerms
1790                          if ( file_exists($path) && !is_writeable($path) )                          if ( file_exists($path) && !is_writeable($path) )
1791                                  Error("File not writable", $relPath) ;                                  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) ;
1792                          $fh = fopen($path, "w+") ;                          $fh = fopen($path, "w+") ;
1793                          if ($fh) {                          if ($fh) {
1794                                  fputs($fh,"\n");                                  fputs($fh,"\n");
1795                                  fclose($fh) ;                                  fclose($fh) ;
1796                                  LogIt($path,"file created",trperm_r | trperm_w);                                  LogIt($path,"file created",trperm_r | trperm_w);
1797                          } else {                          } else {
1798                                  Error("Creation of file $relPath failed -- $path");                                  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) ;
1799                          }                          }
1800                          $tstr = $HTTP_SERVER_VARS["PHP_SELF"]."?A=E&D=".urlencode($relDir)."&F=".urlencode($FN) ;                          $tstr = $HTTP_SERVER_VARS["PHP_SELF"]."?A=E&D=".urlencode($relDir)."&F=".urlencode($FN) ;
1801                          header("Location: " . $tstr) ;                          header("Location: " . $tstr) ;
# Line 1821  HTTP_POST_VAR("FN"); Line 1804  HTTP_POST_VAR("FN");
1804                  break ;                  break ;
1805    
1806          case "DELETE" :            case "DELETE" :  
1807                  if ( $CONFIRM != "on" ) break ;                  if ( $CONFIRM != "on" ) break;
1808    
1809                    if ( isset($FN) && $FN != "") {
1810                            $path=$fsDir."/".$FN;
1811                            $what = "file";
1812                    } elseif (isset($DIR)) {
1813                            $path=$gblFsRoot."/".$DIR;
1814                            $what = "directory";
1815                    } else  {
1816                            Error("Can't delete object","Can't find filename <tt>\$FN</tt> or dirname in <tt>\$DIR</tt>",1);
1817                    }
1818    
1819                  $tstr  = "Attempt to delete non-existing object or " ;                  if (! check_perm("$relDir/$FN", trperm_w))
1820                  $tstr .= "insufficient privileges: " ;                          Error("Access denied","User <tt>$gblLogin</tt> tried to erase $what <tt>$relDir/$FN</tt> without valid trustee.",1);
1821    
1822                  if ( $FN != "") {  // delete file                  $tstr  = "Attempt to delete non-existing object or insufficient privileges: " ;
                         $path =  $fsDir . "/" . $FN ;  
                   
                         $dir=dirname($path);  
                         $file=basename($path);  
                         if (! file_exists("$dir/.del")) {  
                                 mkdir("$dir/.del",0700);  
                         }  
1823    
1824  //                      if ( ! @unlink($path) ) {                  $dir=dirname($path);
1825                          if ( ! rename($path,"$dir/.del/$file") ) {                  $file=basename($path);
1826                                  LogIt($path,"file delete failed");  
1827                                  Error("File delete failed", $tstr . $path) ;                  if (! file_exists("$dir/.del")) {
1828                          } else {                          mkdir("$dir/.del",0700);
1829                                  LogIt($path,"file deleted",trperm_w);                  }
1830                                  MoveTo("$dir/.log/$file","$dir/.del/.log/");  
1831                                  MoveTo("$dir/.note/$file","$dir/.del/.note/");                  if ( ! @rename($path,"$dir/.del/$file") ) {
1832                                  MoveTo("$dir/.lock/$file","$dir/.del/.lock/");                          LogIt($path,"$what delete failed");
1833                          }                          Error("Can't delete $what",$tstr."<tt>".$relDir."/".$FN."</tt>") ;
1834                  } else {  // delete directory                  } else {
1835                          if ( ! @rrmdir($fsDir) ) {                          LogIt($path,"$what deleted",trperm_w);
1836                                  Error("Rmdir failed", $tstr . $fsDir) ;                          MoveTo("$dir/.log/$file","$dir/.del/.log/");
1837                          } else {                          MoveTo("$dir/.note/$file","$dir/.del/.note/");
1838                                  LogIt($path,"dir deleted",trperm_w);                          MoveTo("$dir/.lock/$file","$dir/.del/.lock/");
                                 $relDir = dirname($relDir) ;  // move up  
                         }  
1839                  }                  }
1840                  break ;                  break ;
1841    
# Line 1861  HTTP_POST_VAR("FN"); Line 1845  HTTP_POST_VAR("FN");
1845                  if (substr($FN,0,4) != ".del") break ;                  if (substr($FN,0,4) != ".del") break ;
1846                  $file=substr($FN,4,strlen($FN)-4);                  $file=substr($FN,4,strlen($FN)-4);
1847    
1848                    if (! check_perm("$relDir/$file", trperm_w))
1849                            Error("Access denied","User <tt>$gblLogin</tt> tried to undelete <tt>$relDir/$file</tt> without valid trustee.",1);
1850    
1851                  LogIt("$fsDir/.del/$file","undeleted",trperm_w);                  LogIt("$fsDir/.del/$file","undeleted",trperm_w);
1852                  MoveTo("$fsDir/.del/$file","$fsDir/");                  MoveTo("$fsDir/.del/$file","$fsDir/");
1853                  MoveTo("$fsDir/.del/.log/$file","$fsDir/.log/");                  MoveTo("$fsDir/.del/.log/$file","$fsDir/.log/");
# Line 1872  HTTP_POST_VAR("FN"); Line 1859  HTTP_POST_VAR("FN");
1859          case "RENAME" :            case "RENAME" :  
1860                  if ( $CONFIRM != "on" ) break ;                  if ( $CONFIRM != "on" ) break ;
1861    
1862                  $NEWNAME=stripSlashes($HTTP_POST_VARS["NEWNAME"]);                  if (HTTP_POST_VAR("NEWNAME")) {
1863                            $dest = remove_parent($relDir.$NEWNAME);
1864                            if (! check_perm($relDir.$FN, trperm_w) ||
1865                                ! check_perm($dest, trperm_w) )
1866                                    Error("Access denied","User <tt>$gblLogin</tt> tried to rename <tt>$relDir$FN</tt> to <tt>$dest</tt> without valid trustee.",1);
1867                    } else {
1868                            Error("Rename error","Can't find new name in var <tt>\$NEWNAME</tt>",1);
1869                    }
1870                  LogIt("$fsDir/$FN","renamed $FN to $NEWNAME",trperm_r);                  LogIt("$fsDir/$FN","renamed $FN to $NEWNAME",trperm_r);
1871                  safe_rename($fsDir,$FN,$NEWNAME);                  safe_rename($fsDir,$FN,$NEWNAME);
1872                  break ;                  break ;
1873    
1874          case "NOTE" :            case "NOTE" :
1875                  $NOTE=stripSlashes($HTTP_POST_VARS["NOTE"]);                  if (! HTTP_POST_VAR("NOTE"))
1876                  WriteNote("$fsDir/$FN","$NOTE");                          Error("Can't add note to object","Can't find var <tt>\$NOTE</tt>",1);
1877                    if (! check_perm("$relDir/$FN", trperm_w))
1878                            Error("Access denied","User <tt>$gblLogin</tt> tried to add note to <tt>$relDir/$FN</tt> without valid trustee.",1);
1879    
1880                    WriteNote("$fsDir/$FN",$NOTE);
1881                  break ;                  break ;
1882    
1883          case "UNLOCK" :            case "UNLOCK" :  
1884                  if ( $CONFIRM != "on" ) break ;                  if ( $CONFIRM != "on" ) break ;
1885                    if (! check_perm("$relDir/$FN", trperm_w))
1886                            Error("Access denied","User <tt>$gblLogin</tt> tried to unlock <tt>$relDir/$FN</tt> without valid trustee.",1);
1887                  Unlock("$fsDir/$FN");                  Unlock("$fsDir/$FN");
1888                  break ;                  break ;
1889    
# Line 1897  HTTP_POST_VAR("FN"); Line 1897  HTTP_POST_VAR("FN");
1897                  header("Location: ".$tstr) ;                    header("Location: ".$tstr) ;  
1898                  exit ;                  exit ;
1899          }          }
1900            
1901          // check for mode.. navigate, code display, upload, or detail?          // check for mode.. navigate, code display, upload, or detail?
1902          // $A=U : upload to path given in $D          // $A=U : upload to path given in $D
1903          // $A=E : display detail of file $D/$F and edit          // $A=E : display detail of file $D/$F and edit

Legend:
Removed from v.1.23  
changed lines
  Added in v.1.33

  ViewVC Help
Powered by ViewVC 1.1.26