/[docman]/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.30 by dpavlin, Fri Jan 26 12:39:57 2001 UTC revision 1.57 by dpavlin, Wed Feb 20 12:15:06 2002 UTC
# Line 78  TODO: Line 78  TODO:
78          // from where to include auth_*.php modules?          // from where to include auth_*.php modules?
79          $gblIncDir = "/home/httpd/docman";          $gblIncDir = "/home/httpd/docman";
80    
81            // do we want to force download? (default is 0 for backward
82            // compatibility, but it's defined as 1 in docman.conf for all
83            // future applications!
84            $gblForceDownload = 0;
85    
86          // username/password should not be system          // username/password should not be system
87          // usernames/passwords !!          // usernames/passwords !!
88    
89          $gblPw    = "";          $gblPw    = "";
90    
         $htusers_file=dirname($SCRIPT_FILENAME)."/.htusers";  
         if (! file_exists($htusers_file)) {  
                 $htusers=fopen($htusers_file,"a+");  
                 fputs($htusers,"# Change owner of $htusers_file to root !!\n");  
                 fputs($htusers,"demo:full name:[md5_hash|auth_*]:e-mail\n");  
                 fclose($htusers);  
         }  
         $htusers=fopen($htusers_file,"r");  
         while($user = fgetcsv($htusers,255,":")) {  
                 if ($user[0] == $GLOBALS["PHP_AUTH_USER"]) {  
                         $gblUserName=$user[1];  
                         $gblPw=$user[2];  
                         if (substr($gblPw,0,5) == "auth_" && file_exists("$gblIncDir/$gblPw.php")) {  
                                 require("$gblIncDir/$gblPw.php");  
                                 if ($gblPw($user)) {  
                                         $gblPw=md5($PHP_AUTH_USER.$PHP_AUTH_PW);  
                                 } else {  
                                         $gblPw="error".md5($PHP_AUTH_USER.$PHP_AUTH_PW);  
                                 }  
                         }  
                         $gblEmail=$user[3];  
                         continue ;  
                 }  
         }  
         fclose($htusers);  
   
91          // date format          // date format
92  //      $gblDateFmt="D, F d, Y";  //      $gblDateFmt="D, F d, Y";
93          $gblDateFmt="Y-m-d";          $gblDateFmt="Y-m-d";
# Line 146  TODO: Line 125  TODO:
125          $gblImages   = array( ".jpg",".jpeg",".gif",".png",".ico",          $gblImages   = array( ".jpg",".jpeg",".gif",".png",".ico",
126                                ".bmp",".xbm") ;                                ".bmp",".xbm") ;
127    
128            // which files to hide (separated by ,)
129            $gblHide = "";
130    
131            // Where are users? (by default in .htusers file)
132            $gblUsers = "htusers_file";
133    
134  //////////////////////////////////////////////////////////////////  //////////////////////////////////////////////////////////////////
135    
136            $gblVersion = "1.9-dev";
137    
138  function StartHTML($title,$text="") {  function StartHTML($title,$text="") {
139    
140          $title = "Document Manager " . $title ;          $title = "Document Manager " . $title ;
# Line 158  function StartHTML($title,$text="") { Line 145  function StartHTML($title,$text="") {
145  <HTML>  <HTML>
146  <HEAD>  <HEAD>
147   <TITLE><?= $host . " " . $title ?></TITLE>   <TITLE><?= $host . " " . $title ?></TITLE>
148   <META NAME="description" CONTENT="PHP port of AnyPortal Site Manager">   <META NAME="description" CONTENT="Document Manager">
149   <META NAME="keywords" CONTENT="site manager, web site maintenance">   <META NAME="keywords" CONTENT="site manager, web site maintenance">
150   <META NAME="robots" CONTENT="noindex">   <META NAME="robots" CONTENT="noindex">
151   <META HTTP-EQUIV="expires" CONTENT="0">   <META HTTP-EQUIV="expires" CONTENT="0">
# Line 177  function StartHTML($title,$text="") { Line 164  function StartHTML($title,$text="") {
164  //////////////////////////////////////////////////////////////////  //////////////////////////////////////////////////////////////////
165    
166  function EndHTML() {  function EndHTML() {
167    
168    global $gblDateFmt, $gblTimeFmt, $gblUserName, $PHP_SELF, $gblPw, $gblVersion;
169    
170  ?>  ?>
171    
172  <HR>  <HR>
173  <P CLASS=FTR>  <P CLASS=FTR>
174  <B><?= date($GLOBALS[gblDateFmt]) ?> -  <B><?= date($gblDateFmt) ?> -
175  <?= date($GLOBALS[gblTimeFmt]) ?> -  <?= date($gblTimeFmt) ?> -
176  <?= $GLOBALS[gblUserName] ?>  <?= $gblUserName ?>
177  <small> [<a href="<?= $GLOBALS["PHP_SELF"] ?>?relogin=<?= $GLOBALS[gblPw] ?>">logout</a>]</small>  <?php
178            global $PHP_AUTH_USER,$PHP_AUTH_PW;
179            $url = $PHP_SELF."?relogin=";
180            if (isset($gblPw) && $gblPw != "") {
181                    $url .= $gblPw;
182            } else {
183                    $url .= md5($PHP_AUTH_USER.$PHP_AUTH_PW);
184            }
185            if (isset($PHP_AUTH_USER) && $PHP_AUTH_USER != "" && ($PHP_AUTH_PW == "" || !isset($PHP_AUTH_PW))) {
186                    $url_title="login";
187                    $url .= "&force_login=1";
188            } else {
189                    $url_title="relogin";
190            }
191    ?>
192    <small> [<a href="<?= $url ?>"><?= $url_title ?></a>]</small>
193  </B>  </B>
194  <BR>ANYPORTAL(php) Site Manager  <BR><small>
195  <br><small>  Document Manager <?= $gblVersion ?>, based on ANYPORTAL(php) Site Manager
196    <br>
197  &copy; 1999 by <A HREF="http://www.anyportal.com">ANYPORTAL</A>,  &copy; 1999 by <A HREF="http://www.anyportal.com">ANYPORTAL</A>,
198  &copy; 2000 by <A HREF="http://da.nger.org">d@nger.org</A>,  &copy; 2000 by <A HREF="http://da.nger.org">d@nger.org</A>,
199  &copy; 2000 by <A HREF="http://www.rot13.org/~dpavlin/">DbP</A>  &copy; 2000-2002 by <A HREF="http://www.rot13.org/~dpavlin/">DbP</A>
200  </small>  </small>
201  </P>  </P>
202  <BR>  <BR>
# Line 229  A:HOVER { color:red; } Line 235  A:HOVER { color:red; }
235    
236  function DetailPage($fsRoot,$relDir,$fn) {  function DetailPage($fsRoot,$relDir,$fn) {
237                    
238          global $gblEditable, $gblImages ;          global $gblEditable, $gblImages, $webRoot ;
239          $self = $GLOBALS["PHP_SELF"] ;          $self = $GLOBALS["PHP_SELF"] ;
240    
241          $relPath  = $relDir . "/" . $fn ;          $relPath  = $relDir . "/" . $fn ;
# Line 248  function DetailPage($fsRoot,$relDir,$fn) Line 254  function DetailPage($fsRoot,$relDir,$fn)
254                  Error("Creation denied",$relDir) ;                  Error("Creation denied",$relDir) ;
255    
256          $text  = "Use this page to view, modify or " ;          $text  = "Use this page to view, modify or " ;
257          $text .= "delete a single document on this " ;          if (is_dir($fsPath)) {
258                    $text .="delete a directory on this " ;
259            } else {
260                    $text .= "delete a single document on this " ;
261            };
262          $text .= "web site." ;            $text .= "web site." ;  
263          $title = "(Detail Page)" ;          $title = "(Detail Page)" ;
264          StartHTML($title, $text) ;          StartHTML($title, $text) ;
# Line 258  function DetailPage($fsRoot,$relDir,$fn) Line 268  function DetailPage($fsRoot,$relDir,$fn)
268                  $fsize = filesize($fsPath) ;                  $fsize = filesize($fsPath) ;
269                  $fmodified = date("$GLOBALS[gblDateFmt] $GLOBALS[gblTimeFmt]", filemtime($fsPath)) ;                  $fmodified = date("$GLOBALS[gblDateFmt] $GLOBALS[gblTimeFmt]", filemtime($fsPath)) ;
270                  $faccessed = date("$GLOBALS[gblDateFmt] $GLOBALS[gblTimeFmt]", fileatime($fsPath)) ;                  $faccessed = date("$GLOBALS[gblDateFmt] $GLOBALS[gblTimeFmt]", fileatime($fsPath)) ;
271                  echo "<PRE>    file size: " . $fsize . " Bytes<BR>" ;                  $fuid=fileowner($fsPath);
272                    $fgid=filegroup($fsPath);
273                    $userinfo = posix_getpwuid($fuid);
274                    $grpinfo = posix_getgrgid($fgid);
275                    echo "<PRE>";
276                    if (!is_dir($fsPath)) echo "    file size: " . $fsize . " Bytes<BR>" ;
277                  echo "last modified: <B>" . $fmodified . "</B><BR>" ;                  echo "last modified: <B>" . $fmodified . "</B><BR>" ;
278                  echo "last accessed: <B>" . $faccessed . "</B><BR>" ;                  echo "last accessed: <B>" . $faccessed . "</B><BR>" ;
279                  echo "        owner: <B>" . fileowner($fsPath) . "</B><BR>" ;                  echo "        owner: <B>" . $userinfo["name"] . " [$fuid]</B><BR>" ;
280                  echo "        group: <B>" . filegroup($fsPath) . "</B><BR>" ;                  echo "        group: <B>" . $grpinfo["name"] . " [$fgid]</B><BR>" ;
281                  echo "  permissions: <B>" ;                  echo "  permissions: <B>" ;
282                  echo printf( "%o", fileperms($fsPath) ) . "</B>" ;                  echo printf( "%o", fileperms($fsPath) ) . "</B>" ;
283                  echo "</PRE>" ;                  echo "</PRE>" ;
284    
285          }          }
286    
287          if ( $editable && ($writable || !$exists) && !$file_lock ) {          if ( !is_dir($fsPath) && $editable && ($writable || !$exists) && !$file_lock ) {
288                  $fh = fopen($fsPath,"a+") ;                  $fh = fopen($fsPath,"a+") ;
289                  rewind($fh) ;                  rewind($fh) ;
290                  $fstr = fread($fh,filesize($fsPath)) ;                  $fstr = fread($fh,filesize($fsPath)) ;
# Line 297  echo($fstr) ; ?></TEXTAREA> Line 312  echo($fstr) ; ?></TEXTAREA>
312          }          }
313          if ( !$file_lock && $ext!="" && strstr(join(' ',$gblImages),$ext) ) {            if ( !$file_lock && $ext!="" && strstr(join(' ',$gblImages),$ext) ) {  
314                  $info  = getimagesize($fsPath) ;                  $info  = getimagesize($fsPath) ;
315                  $tstr = "<IMG SRC=\"".urlpath($relPath)."\" BORDER=0 " ;                  $tstr = "<IMG SRC=\"$webRoot".urlpath($relPath)."\" BORDER=0 " ;
316                  $tstr .= $info[3] . " ALT=\"" . $fn . " - " ;                  $tstr .= $info[3] . " ALT=\"" . $fn . " - " ;
317                  $tstr .= (int)(($fsize+1023)/1024) . "Kb\">" ;                  $tstr .= (int)(($fsize+1023)/1024) . "Kb\">" ;
318  //              echo htmlentities($tstr) . "<BR><BR>" . $tstr ;  //              echo htmlentities($tstr) . "<BR><BR>" . $tstr ;
# Line 371  echo($fstr) ; ?></TEXTAREA> Line 386  echo($fstr) ; ?></TEXTAREA>
386                  $log=fopen($logname,"r");                  $log=fopen($logname,"r");
387                  $cl1=" class=LST"; $cl2="";                  $cl1=" class=LST"; $cl2="";
388                  $logarr = array();                  $logarr = array();
389                  while($line = fgetcsv($log,255,"\t")) {                  while($line = fgetcsv($log,512,"\t")) {
390                          $cl=$cl1; $cl1=$cl2; $cl2=$cl;                          $cl=$cl1; $cl1=$cl2; $cl2=$cl;
391                          array_unshift($logarr,array($cl,$line[0],$line[1],$line[2],$line[3]));                          array_unshift($logarr,array($cl,$line[0],$line[1],$line[2],$line[3]));
392                  }                  }
393                  fclose($log);                  fclose($log);
394                  print "<hr><br><b>CHANGES TO THIS FILE</b><br><table border=0 width=100%>\n";                  if (is_dir("$fsDir/$fn")) {
395                            $whatis="DIRECTORY";
396                    } else {
397                            $whatis="FILE";
398                    }
399                    print "<hr><br><b>CHANGES TO THIS $whatis</b><br><table border=0 width=100%>\n";
400                  $bakcount = 0;  // start from 0, skip fist backup (it's current)                  $bakcount = 0;  // start from 0, skip fist backup (it's current)
401                  while ($e = array_shift($logarr)) {                  while ($e = array_shift($logarr)) {
402                          if (strstr($e[4],"upload")) {                          if (strstr($e[4],"upload")) {
403                                  if (file_exists("$bakdir/$bakcount/$name")) {                                  if (file_exists("$bakdir/$bakcount/$name")) {
404                                          $e[4]="<a href=\"".urlpath(dirname($relPath)."/.bak/$bakcount/$name")."\">$e[4]</a>";                                          $e[4]="<a href=\"$webRoot".urlpath(dirname($relPath)."/.bak/$bakcount/$name")."\">$e[4]</a>";
405                                  }                                  }
406                                  $bakcount++;                                  $bakcount++;
407                          }                          }
# Line 642  function GifIcon($txt) { Line 662  function GifIcon($txt) {
662    
663  function Navigate($fsRoot,$relDir) {  function Navigate($fsRoot,$relDir) {
664    
665          global $gblEditable, $gblIcon, $gblModDays ;          global $gblEditable, $gblIcon, $gblModDays, $webRoot, $gblHide ;
666    
667          $self     = $GLOBALS["PHP_SELF"] ;          $self     = $GLOBALS["PHP_SELF"] ;
668          if (isset($GLOBALS["HTTPS"]) && $GLOBALS["HTTPS"] == "on") {  
669                  $webRoot  = "https://" . $GLOBALS["HTTP_HOST"] ;          $fsDir = $fsRoot . $relDir . "/" ; // current directory
         } else {  
                 $webRoot  = "http://" . $GLOBALS["HTTP_HOST"] ;  
         }  
         $fsDir    = $fsRoot . $relDir . "/" ; // current directory  
670    
671          if (!is_dir($fsDir)) Error("Dir not found",$relDir) ;          if (!is_dir($fsDir)) Error("Dir not found",$relDir) ;
672    
673            $hide_items=",$gblHide,";
674    
675          // read directory contents          // read directory contents
676          if ( !($dir = @opendir($fsDir)) )          if ( !($dir = @opendir($fsDir)) )
677                  Error("Read Access denied",$relDir) ;                  Error("Read Access denied",$relDir) ;
678          while ($item = readdir($dir)) {          while ($item = readdir($dir)) {
679                  if ( $item == ".." || $item == "." || substr($item,0,1) == "." ) continue ;                  if ( substr($item,0,1) == "." || strstr($hide_items,",$item,") ) continue ;
680                  if ( is_dir($fsDir . $item) ) {                  if ( is_dir($fsDir . $item) ) {
681                          $dirList[] = $item ;                          $dirList[] = $item ;
682                  } else if ( is_file($fsDir . $item) ) {                  } else if ( is_file($fsDir . $item) ) {
# Line 677  function Navigate($fsRoot,$relDir) { Line 695  function Navigate($fsRoot,$relDir) {
695          // scan deleted files          // scan deleted files
696          if ( $GLOBALS[show_deleted] == 1 && ($dir = @opendir("$fsDir/.del")) ) {          if ( $GLOBALS[show_deleted] == 1 && ($dir = @opendir("$fsDir/.del")) ) {
697                  while ($item = readdir($dir)) {                  while ($item = readdir($dir)) {
698                          if ( substr($item,0,1) == "." ) continue ;                          if ( substr($item,0,1) == "." || strstr($hide_items,",$item,") ) continue ;
699                          $fileList[] = ".del/$item" ;                                      $fileList[] = ".del/$item" ;            
700                  }                  }
701                  closedir($dir) ;                  closedir($dir) ;
# Line 698  function Navigate($fsRoot,$relDir) { Line 716  function Navigate($fsRoot,$relDir) {
716                  CELLSPACING=3 WIDTH=\"100%\">" ;                  CELLSPACING=3 WIDTH=\"100%\">" ;
717    
718          // updir bar              // updir bar    
719          if ($fsDir != $fsRoot) {          if (chopsl($fsDir) != chopsl($fsRoot)) {
720                  $parent = dirname($relDir) ;                  $parent = dirname($relDir) ;
721                  if ($parent == "") $parent = "/" ;                  if ($parent == "") $parent = "/" ;
722  ?>  ?>
# Line 710  function Navigate($fsRoot,$relDir) { Line 728  function Navigate($fsRoot,$relDir) {
728  <?php  <?php
729          }          }
730    
731    function plural($name,$count) {
732            $out="$count $name";
733            if ($count > 1) {
734                    $out.="s";
735            }
736            return $out;
737    }
738    
739          // output subdirs          // output subdirs
740          if (sizeof($dirList) > 0) {          if (sizeof($dirList) > 0) {
741                  sort($dirList) ;                  sort($dirList) ;
742  ?>  ?>
743    
744  <TR><TD></TD><TD COLSPAN=5 CLASS=TOP><HR>DIRECTORY NAME</TD></TR>  <TR><TD></TD><TD COLSPAN=2 CLASS=TOP>DIRECTORY NAME (<?= plural("dir",sizeof($dirList)) ?>)</TD><TD COLSPAN=3 CLASS=TOP>DIRECTORY NOTE</TR>
745    
746  <?php  <?php
747                  while (list($key,$dir) = each($dirList)) {                  while (list($key,$dir) = each($dirList)) {
748    
749                            $info_url=$self."?A=E&F=".urlencode($dir)."&D=".urlencode($relDir);
750                          $tstr = "<A HREF=\"" . $self . "?D=" ;                          $tstr = "<A HREF=\"" . $self . "?D=" ;
751                          $tstr .= urlencode($relDir."/".$dir) ;                          $tstr .= urlencode($relDir."/".$dir) ;
752                          $tstr .= "\">" . $dir . "/</A>" ;                          $tstr .= "\">" . $dir . "/</A>" ;
753                            $note_html="<a href=\"$info_url#note\">".$gblIcon("note")."</a>".ReadNote($fsDir.$dir);
754  ?>  ?>
755    
756  <TR><TD><?= $gblIcon("fldr") ?></TD>  <TR><TD>
757  <TD COLSPAN=5 CLASS=LST><?= $tstr ?></TD></TR>  <A HREF="<?= $info_url ?>" TITLE="View/Edit">
758    <?= $gblIcon("fldr") ?></A></TD>
759    <TD COLSPAN=2 CLASS=LST><?= $tstr ?></TD>
760    <TD COLSPAN=3 CLASS=LST><?= $note_html ?></TD></TR>
761    
762  <?php  <?php
763                  }  // iterate over dirs                  }  // iterate over dirs
# Line 735  function Navigate($fsRoot,$relDir) { Line 766  function Navigate($fsRoot,$relDir) {
766    
767  <TR><TD></TD><TD COLSPAN=5><HR><B><?= $webRoot . $relDir ?>  <TR><TD></TD><TD COLSPAN=5><HR><B><?= $webRoot . $relDir ?>
768  </B></TD></TR>  </B></TD></TR>
769  <TR><TD></TD><TD CLASS=TOP>DOCUMENT NAME</TD>  <TR><TD></TD><TD CLASS=TOP>DOCUMENT NAME (<?= plural("file",sizeof($fileList)) ?>)</TD>
770  <TD><?= $gblIcon("blank").$gblIcon("blank") ?></TD>  <TD><?= $gblIcon("blank").$gblIcon("blank") ?></TD>
771  <TD CLASS=TOP>NOTE</TD>  <TD CLASS=TOP>NOTE</TD>
772  <TD CLASS=TOP>LAST UPDATE</TD><TD CLASS=TOP>FILE SIZE</TD></TR>  <TD CLASS=TOP>LAST UPDATE</TD><TD CLASS=TOP>FILE SIZE</TD></TR>
# Line 833  function Navigate($fsRoot,$relDir) { Line 864  function Navigate($fsRoot,$relDir) {
864  <?  <?
865          }          }
866    
867          if ($emptyDir) {          if ($emptyDir && $relDir != "") {
868  ?>  ?>
869    
870  <FORM METHOD="POST" ACTION="<?= $self ?>">  <FORM METHOD="POST" ACTION="<?= $self ?>">
# Line 867  if (file_exists(".info.inc")) { Line 898  if (file_exists(".info.inc")) {
898   <NOBR>NAME <INPUT TYPE="TEXT" NAME="FN" SIZE=14>   <NOBR>NAME <INPUT TYPE="TEXT" NAME="FN" SIZE=14>
899   <INPUT TYPE="HIDDEN" NAME="POSTACTION" VALUE="CREATE">   <INPUT TYPE="HIDDEN" NAME="POSTACTION" VALUE="CREATE">
900   <INPUT TYPE="HIDDEN" NAME="DIR" VALUE="<?= $relDir ?>">   <INPUT TYPE="HIDDEN" NAME="DIR" VALUE="<?= $relDir ?>">
901   <INPUT TYPE="SUBMIT" VALUE="CREATE"></NOBR>   <INPUT TYPE="SUBMIT" VALUE="CREATE" NAME="CREATE">
902   <NOBR>OR <A HREF="<?= $self ?>?A=U&D=<?= urlencode($relDir) ?>">UPLOAD</A> A FILE   </NOBR>
903   </NOBR>   <NOBR>OR <A HREF="<?= $self ?>?A=U&D=<?= urlencode($relDir) ?>">UPLOAD</A> A FILE</NOBR>
904  </TD></TR>  </TD></TR>
905  </FORM>  </FORM>
906  </TABLE>  </TABLE>
# Line 933  function NoEntry() { Line 964  function NoEntry() {
964    
965          $title = "(401 Unauthorized)" ;          $title = "(401 Unauthorized)" ;
966          $text  = "No trespassing !" ;          $text  = "No trespassing !" ;
967    
968            global $PHP_AUTH_USER,$PHP_AUTH_PW,$gblPw,$relogin;
969          StartHTML($title,$text) ;          StartHTML($title,$text) ;
970    
971          EndHTML() ;          EndHTML() ;
# Line 987  function ReadNote($target) { Line 1020  function ReadNote($target) {
1020                  $msg=fgets($note,4096);                  $msg=fgets($note,4096);
1021                  fclose($note);                  fclose($note);
1022          }          }
1023          return StripSlashes($msg);          return HtmlSpecialChars(StripSlashes($msg));
1024    
1025  }  }
1026    
# Line 1068  function urlpath($url) { Line 1101  function urlpath($url) {
1101    
1102  //////////////////////////////////////////////////////////////////  //////////////////////////////////////////////////////////////////
1103    
1104  function safe_rename($from,$to) {  function safe_rename($fromdir,$fromfile,$tofile) {
1105          if (file_exists($from) && is_writable(dirname($to))) {          function try_rename($from,$to) {
1106                  rename($from,$to);  #               print "$from -> $to\n";
1107                    if (file_exists($from) && is_writeable(dirname($to))) {
1108                            rename($from,$to);
1109                    }
1110            }
1111    
1112            function try_dir($todir) {
1113                    if (! file_exists($todir)) {
1114                            mkdir($todir,0700);
1115                    }
1116            }
1117    
1118            $to="$fromdir/$tofile";
1119            $todir=dirname($to);
1120            $tofile=basename($to);
1121    
1122    #       print "<pre>$fromdir / $fromfile -> $todir / $tofile\n\n";
1123    
1124            try_rename("$fromdir/$fromfile","$todir/$tofile");
1125            try_dir("$todir/.log");
1126            try_rename("$fromdir/.log/$fromfile","$todir/.log/$tofile");
1127            try_dir("$todir/.note");
1128            try_rename("$fromdir/.note/$fromfile","$todir/.note/$tofile");
1129            try_dir("$todir/.lock");
1130            try_rename("$fromdir/.lock/$fromfile","$todir/.lock/$tofile");
1131            try_dir("$todir/.bak");
1132            for($i=0;$i<=$GLOBALS[gblNumBackups];$i++) {
1133                    try_rename("$fromdir/.bak/$i/$fromfile","$todir/.bak/$i/$tofile");
1134          }          }
1135  }  }
1136    
1137    
1138  //////////////////////////////////////////////////////////////////  //////////////////////////////////////////////////////////////////
1139    
1140  // recursivly delete directory  // recursivly delete directory
# Line 1100  function ChangeLog($target,$msg) { Line 1161  function ChangeLog($target,$msg) {
1161          $log=fopen("$gblFsRoot/.changelog","a+");          $log=fopen("$gblFsRoot/.changelog","a+");
1162          if (substr($target,0,strlen($gblFsRoot)) == $gblFsRoot)          if (substr($target,0,strlen($gblFsRoot)) == $gblFsRoot)
1163                  $target=substr($target,strlen($gblFsRoot),strlen($target)-strlen($gblFsRoot));                  $target=substr($target,strlen($gblFsRoot),strlen($target)-strlen($gblFsRoot));
1164            $msg=str_replace("\t"," ",$msg);
1165          fputs($log,time()."\t$target\t$GLOBALS[gblUserName]\t$msg\n");          fputs($log,time()."\t$target\t$GLOBALS[gblUserName]\t$msg\n");
1166          fclose($log);          fclose($log);
1167    
# Line 1111  function DisplayChangeLog($day) { Line 1173  function DisplayChangeLog($day) {
1173          if (!file_exists("$gblFsRoot/.changelog")) return;          if (!file_exists("$gblFsRoot/.changelog")) return;
1174          $log=fopen("$gblFsRoot/.changelog","r");          $log=fopen("$gblFsRoot/.changelog","r");
1175          $logarr = array();          $logarr = array();
1176          while($line = fgetcsv($log,255,"\t")) {          while($line = fgetcsv($log,512,"\t")) {
1177                    while (sizeof($line) > 4) {
1178                            $tmp = array_pop($line);
1179                            $line.=" $tmp";
1180                    }
1181                  if ($day!=1 || ($day==1 && (time()-$line[0] < 24*60*60))) {                  if ($day!=1 || ($day==1 && (time()-$line[0] < 24*60*60))) {
1182                          array_unshift($logarr,array($line[0],$line[1],$line[2],$line[3]));                          array_unshift($logarr,array($line[0],$line[1],$line[2],$line[3]));
1183                  }                  }
# Line 1133  function DisplayChangeLog($day) { Line 1199  function DisplayChangeLog($day) {
1199    
1200  //////////////////////////////////////////////////////////////////  //////////////////////////////////////////////////////////////////
1201    
1202    function Download($path) {
1203            global $HTTP_USER_AGENT;
1204            $file=basename($path);
1205            $size = filesize($path);
1206            //header("Content-Type: application/octet-stream");
1207            header("Content-Type: application/force-download");
1208            header("Content-Length: $size");
1209            // IE5.5 just downloads index.php if we don't do this
1210            if(preg_match("/MSIE 5.5/", $HTTP_USER_AGENT)) {
1211                    header("Content-Disposition: filename=$file");
1212            } else {
1213                    header("Content-Disposition: attachment; filename=$file");
1214            }
1215            header("Content-Transfer-Encoding: binary");
1216            $fh = fopen($path, "r");
1217            fpassthru($fh);
1218    }
1219    
1220    
1221    //////////////////////////////////////////////////////////////////
1222    
1223    function chopsl($path) {
1224            if (substr($path,strlen($path)-1,1) == "/") $path=substr($path,0,strlen($path)-1);
1225            $path=str_replace("//","/",$path);
1226            return $path;
1227    }
1228    
1229    //////////////////////////////////////////////////////////////////
1230  // MAIN PROGRAM  // MAIN PROGRAM
1231  // ============  // ============
1232  // query parameters: capital letters  // query parameters: capital letters
# Line 1147  function DisplayChangeLog($day) { Line 1241  function DisplayChangeLog($day) {
1241    
1242          // forks before authentication: style sheet and hash          // forks before authentication: style sheet and hash
1243          // creation if password not yet set.          // creation if password not yet set.
1244          if ($STYLE == "get") { CSS() ; exit ; }          if (isset($STYLE) && $STYLE == "get") { CSS() ; exit ; }
1245    
1246            $fsScriptDir  = dirname($SCRIPT_FILENAME) ;    
1247            // i.e. /home/httpd/html/docman
1248    
1249            // read user-defined configuration
1250            if (file_exists("$fsScriptDir/.docman.conf")) {
1251                    include("$fsScriptDir/.docman.conf");
1252            }
1253    
1254            // where do we get users from?
1255            if (file_exists("$gblIncDir/$gblUsers.php")) {
1256                    include("$gblIncDir/$gblUsers.php");
1257            } else {
1258                    Error("Configuration error","Can't find user handling module at <tt>$gblIncDir/$gblUsers.php</tt> ! Please fix <tt>$fsScriptDir/.docman.conf</tt>");
1259            }
1260    
1261            // if no password, or empty password logout
1262            if (
1263                    isset($PHP_AUTH_USER) && (
1264                            !isset($relogin) || (
1265                                    isset($relogin) && $relogin != md5($PHP_AUTH_USER.$PHP_AUTH_PW)
1266                            )
1267                    ) && (
1268                            $PHP_AUTH_PW == "" || !isset($PHP_AUTH_PW)
1269                    ) && !isset($force_login)
1270               ) {
1271                    StartHTML("Logout completed","Your login credentials has been erased") ;
1272                    EndHTML() ;
1273                    exit ;
1274            }
1275    
1276          // authentication failure          // authentication failure
1277          if ( md5($PHP_AUTH_USER.$PHP_AUTH_PW) != $gblPw ||          if ( md5($PHP_AUTH_USER.$PHP_AUTH_PW) != $gblPw ||
1278                  isset($relogin) && $gblPw == $relogin ) {                  isset($relogin) && $gblPw == $relogin) {
1279                  header("WWW-authenticate: basic realm=\"$HTTP_HOST\"") ;                  $realm="$HTTP_HOST";
1280                    header("WWW-authenticate: basic realm=\"$realm\"") ;
1281                  header("HTTP/1.0 401 Unauthorized") ;                  header("HTTP/1.0 401 Unauthorized") ;
1282                  NoEntry() ;                  NoEntry() ;
1283                  exit ;                  exit ;
# Line 1164  function DisplayChangeLog($day) { Line 1289  function DisplayChangeLog($day) {
1289                  $relDir = urldecode($D) ;  // then use GET                  $relDir = urldecode($D) ;  // then use GET
1290          }                }      
1291    
1292            $relDir=stripSlashes($relDir);
1293    
1294          if ($relDir == "/") $relDir = "" ;                if ($relDir == "/") $relDir = "" ;      
1295          // default : website root = ""          // default : website root = ""
1296    
# Line 1177  function DisplayChangeLog($day) { Line 1304  function DisplayChangeLog($day) {
1304          $relScriptDir = dirname($SCRIPT_NAME) ;                  $relScriptDir = dirname($SCRIPT_NAME) ;        
1305          // i.e. /docman          // i.e. /docman
1306    
         $fsScriptDir  = dirname($SCRIPT_FILENAME) ;      
         // i.e. /home/httpd/html/docman  
   
1307          // start on server root          // start on server root
1308  //      $gblFsRoot = substr($fsScriptDir,0, strlen($fsScriptDir)-strlen($relScriptDir)) ;  //      $gblFsRoot = substr($fsScriptDir,0, strlen($fsScriptDir)-strlen($relScriptDir)) ;
1309          // or on script root          // or on script root
# Line 1189  function DisplayChangeLog($day) { Line 1313  function DisplayChangeLog($day) {
1313          $fsDir = $gblFsRoot . $relDir ; // current directory          $fsDir = $gblFsRoot . $relDir ; // current directory
1314          if ( !is_dir($fsDir) ) Error("Dir not found",$relDir) ;          if ( !is_dir($fsDir) ) Error("Dir not found",$relDir) ;
1315    
1316            if (isset($GLOBALS["HTTPS"]) && $GLOBALS["HTTPS"] == "on") {
1317                    $webRoot  = "https://";
1318            } else {
1319                    $webRoot  = "http://";
1320            }
1321            $webRoot .= $GLOBALS["HTTP_HOST"] . $relScriptDir;
1322    
1323          $FN=stripSlashes($FN);          $FN=stripSlashes($FN);
1324    
1325    
1326          switch ($POSTACTION) {          switch ($POSTACTION) {
1327          case "UPLOAD" :          case "UPLOAD" :
1328                  if (!is_writeable($fsDir)) Error("Write denied",$relDir) ;                  if (!is_writeable($fsDir)) Error("Write denied",$relDir) ;
# Line 1266  function DisplayChangeLog($day) { Line 1398  function DisplayChangeLog($day) {
1398  // this functionality is doubled in DetailView().  // this functionality is doubled in DetailView().
1399  // better keep it here altogether  // better keep it here altogether
1400  // chmod perms to $gblFilePerms  // chmod perms to $gblFilePerms
1401                          if ( file_exists($path) && !is_writable($path) )                          if ( file_exists($path) && !is_writeable($path) )
1402                                  Error("File not writable", $relPath) ;                                  Error("File not writable", $relPath) ;
1403                          $fh = fopen($path, "w+") ;                          $fh = fopen($path, "w+") ;
1404                          if ($fh) {                          if ($fh) {
# Line 1338  function DisplayChangeLog($day) { Line 1470  function DisplayChangeLog($day) {
1470                  if ( $CONFIRM != "on" ) break ;                  if ( $CONFIRM != "on" ) break ;
1471    
1472                  Logit("$fsDir/$FN","renamed $FN to $NEWNAME");                  Logit("$fsDir/$FN","renamed $FN to $NEWNAME");
1473                  safe_rename("$fsDir/$FN","$fsDir/$NEWNAME");                  safe_rename($fsDir,$FN,$NEWNAME);
                 safe_rename("$fsDir/.log/$FN","$fsDir/.log/$NEWNAME");  
                 safe_rename("$fsDir/.note/$FN","$fsDir/.note/$NEWNAME");  
                 safe_rename("$fsDir/.lock/$FN","$fsDir/.lock/$NEWNAME");  
                 for($i=0;$i<=$GLOBALS[gblNumBackups];$i++) {  
                         safe_rename("$fsDir/.bak/$i/$FN","$fsDir/.bak/$i/$NEWNAME");  
                 }  
   
1474                  break ;                  break ;
1475    
1476          case "NOTE" :            case "NOTE" :  
# Line 1375  function DisplayChangeLog($day) { Line 1500  function DisplayChangeLog($day) {
1500          // $A=Co : checkout file $D/$F          // $A=Co : checkout file $D/$F
1501          // $A=Ci : checkin file $D/$F          // $A=Ci : checkin file $D/$F
1502          // $A=V : view file (do nothing except log)          // $A=V : view file (do nothing except log)
1503            // $A=I : include file .$F.php from $gblFsRoot
1504          // default : display directory $D          // default : display directory $D
1505    
1506          switch ($A) {          switch ($A) {
# Line 1391  function DisplayChangeLog($day) { Line 1517  function DisplayChangeLog($day) {
1517          case "E" :          case "E" :
1518                  $F=stripSlashes($F);                  $F=stripSlashes($F);
1519                  // detail of $relDir/$F                  // detail of $relDir/$F
1520                  if (is_file("$gblFsRoot/$relDir/$F")) DetailPage($gblFsRoot, $relDir, $F) ;                  if (is_file("$gblFsRoot/$relDir/$F") || is_dir("$gblFsRoot/$relDir/$F")) DetailPage($gblFsRoot, $relDir, $F) ;
1521                  exit ;                  exit ;
1522          case "C" :          case "C" :
1523                  $F=stripSlashes($F);                  $F=stripSlashes($F);
# Line 1401  function DisplayChangeLog($day) { Line 1527  function DisplayChangeLog($day) {
1527          case "Co" :          case "Co" :
1528                  // checkout                  // checkout
1529                  Lock("$gblFsRoot/$relDir/$F");                  Lock("$gblFsRoot/$relDir/$F");
1530                  header("Content-Disposition: attachment; filename=$F" );                  Download("$gblFsRoot/$relDir/$F");
                 Header("Location: ".urlpath("$relDir/$F"));  
1531                  exit;                  exit;
1532          case "Ci" :          case "Ci" :
1533                  $F=stripSlashes($F);                  $F=stripSlashes($F);
# Line 1418  function DisplayChangeLog($day) { Line 1543  function DisplayChangeLog($day) {
1543          case "V" :          case "V" :
1544                  // view                  // view
1545                  LogIt("$gblFsRoot/$relDir/$F","viewed");                  LogIt("$gblFsRoot/$relDir/$F","viewed");
1546                  header("Content-Disposition: attachment; filename=$F" );                  if ($gblForceDownload) {
1547                  Header("Location: ".urlpath("$relDir/$F"));                          Download("$gblFsRoot/$relDir/$F");
1548                    } else {
1549                            header("Content-Disposition: attachment; filename=$F" );
1550                            Header("Location: $webRoot".urlpath("$relDir/$F"));
1551                    }
1552                  exit;                  exit;
1553          case "Ch" :          case "Ch" :
1554                  StartHTML("(File changes)","All changes chronologicaly...");                  StartHTML("(File changes)","All changes chronologicaly...");
# Line 1431  function DisplayChangeLog($day) { Line 1560  function DisplayChangeLog($day) {
1560                  DisplayChangeLog(1);                  DisplayChangeLog(1);
1561                  EndHTML() ;                  EndHTML() ;
1562                  exit;                  exit;
1563            case "I" :
1564                    $F=stripSlashes($F);
1565                    $inc_file="${gblFsRoot}/.${F}.php";
1566                    if (!isset($F) || $F == "" || !file_exists($inc_file)) Error("Fatal error $inc_file"); // can't find file to include
1567                    if (!is_readable($inc_file))
1568                            Error("Read access to include file denied",".${F}.php");
1569                    $text  = "Your include file should define \$text variable which holds this text and \$title variable which is page title";
1570                    $title = "You should define \$title variable with page title";
1571                    include($inc_file);
1572                    StartHTML($title, $text) ;
1573                    print "<p>".GifIcon(up)." Back to <a href=$GLOBALS[PHP_SELF]>front page</a>.</p>";
1574                    EndHTML() ;
1575                    exit ;
1576          }          }
1577    
1578          // default: display directory $relDir          // default: display directory $relDir

Legend:
Removed from v.1.30  
changed lines
  Added in v.1.57

  ViewVC Help
Powered by ViewVC 1.1.26