/[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

Contents of /docman.php

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1.37 - (show annotations)
Mon Mar 12 13:30:44 2001 UTC (23 years ago) by dpavlin
Branch: MAIN
Changes since 1.36: +2 -0 lines
support quotes in directory names

1 <?php
2
3 /* Copyright 1999 by John Martin d/b/a www.ANYPORTAL.com */
4 /* All Rights Reserved. */
5 /* */
6 /* This software is freeware and is not in the public domain. */
7 /* You are hereby granted the right to freely distribute this */
8 /* software as long as this copyright notice remains in place. */
9 /* */
10 /* Comments or suggestions? email: andmore@alief.com */
11 /* */
12 /* This is the PHP port: AnyPortal(php)-0.1 */
13 /* ======================================== */
14 /* */
15 /* PHP version 2000 by Stefan@Wiesendanger.org */
16 /* No Rights Reserved. What for, anyhow ? */
17 /* */
18 /* Date Remarks */
19 /* --------- ----------------------------------------------- */
20 /* 25 MAY 99 original ASP version */
21 /* 17 SEP 99 change upload from SA-FILEUP to aspSmartUpload */
22 /* 10 APR 00 simplified PHP3 version */
23 /* 18 APR 00 most of PHP3 port working. Slight modifications */
24 /* 22 APR 00 modified syntax highlighting, no absolute paths */
25 /* revealed, PHP builtin authentication, global */
26 /* style sheet as callback, use apache default */
27 /* icons as an alternative to the wingdings font. */
28 /* 25 APR 00 catch some exceptions (not foolproof yet) */
29 /* 26 APR 00 catch some more exceptions, implicit copy */
30 /* function by saving somewhere else in the detail */
31 /* view, MD5 hashed password. */
32 /* 27 APR 00 Fixed authentication bug */
33 /* 12 MAY 00 Fixed trouble with exec() with newer versions of */
34 /* PHP3. Fixed bug which would send you to a non- */
35 /* existent address after file modifications. */
36
37 /*
38
39 This project is now called Directory Manager.
40
41 For more info, please see web pages at
42 http://www.rot13.org/~dpavlin/docman.html
43
44 It's relased under GPL by
45 Dobrica Pavlinusic <dpavlin@rot13.org>
46
47
48 IMPORTANT INSTALLATION NOTE:
49 deny serving of .* (dot-something) files in web server!
50 Otherwise, uses can access your log files, users and/or
51 deleted files!
52
53 .htusers is in form:
54 login:Real Name:[md5(loginpassword)|auth_*]:email@host.dom
55
56
57 TODO:
58 mixed file/directory output (add type to each entry,
59 real support for links)
60 access controll
61
62 */
63
64 //////////////////////////////////////////////////////////////////
65
66 // TODO : Don't let the file be modified itself. Create a hash of
67 // it (kinda hard since it's self-referential ;-). Make better use
68 // of session management. Escapeshellcmd for all user input.
69
70 //////////////////////////////////////////////////////////////////
71
72 // GLOBAL PARAMETERS
73 // =================
74 // Make modifications here to suit docman to your needs
75
76 // error_reporting(4) ; // how verbose ?
77
78 // from where to include auth_*.php modules?
79 $gblIncDir = "/home/httpd/docman";
80
81 // username/password should not be system
82 // usernames/passwords !!
83
84 $gblPw = "";
85
86 // date format
87 // $gblDateFmt="D, F d, Y";
88 $gblDateFmt="Y-m-d";
89
90 // time format
91 // $gblTimeFmt="g:i:sA";
92 $gblTimeFmt="H:i:s";
93
94 // Number of backup files to keep
95 $gblNumBackups=3;
96
97 // show red star if newer than ... days
98 $gblModDays=1;
99
100 // choose GifIcon below unless you have the M$
101 // WingDings font installed on your system
102
103 $gblIcon="GifIcon"; // MockIcon or GifIcon
104
105 // the directory below should be /icons/ or /icons/small/
106 // on Apache; a set of icons is included in the distribution
107
108 $gblIconLocation="/icons/";
109
110 // files you want to be able to edit in text mode
111 // and view with (primitive) syntax highlighting
112
113 $gblEditable = array( ".txt",".asa",".asp",".htm",".html",
114 ".cfm",".php3",".php",".phtml",
115 ".shtml",".css" ) ;
116
117 // files that will display as images on the detail page
118 // (useless if your browser doesn't support them)
119
120 $gblImages = array( ".jpg",".jpeg",".gif",".png",".ico",
121 ".bmp",".xbm") ;
122
123 //////////////////////////////////////////////////////////////////
124
125 function StartHTML($title,$text="") {
126
127 $title = "Document Manager " . $title ;
128 $host = $GLOBALS["HTTP_HOST"] ;
129 $self = $GLOBALS["PHP_SELF"] ;
130 ?>
131
132 <HTML>
133 <HEAD>
134 <TITLE><?= $host . " " . $title ?></TITLE>
135 <META NAME="description" CONTENT="PHP port of AnyPortal Site Manager">
136 <META NAME="keywords" CONTENT="site manager, web site maintenance">
137 <META NAME="robots" CONTENT="noindex">
138 <META HTTP-EQUIV="expires" CONTENT="0">
139 <LINK REL="stylesheet" TYPE="text/css"
140 HREF="<?= $self ?>?STYLE=get">
141 </HEAD>
142 <BODY BGCOLOR="#FFFFFF">
143 <H3 ALIGN="RIGHT"><?= $host ?></H3>
144 <TABLE BORDER=0 WIDTH="100%"><TR>
145 <TD CLASS=INV><?= $title ?></TD></TR></TABLE>
146 <P><?= $text ?></P>
147
148 <?php
149 } // end function StartHTML
150
151 //////////////////////////////////////////////////////////////////
152
153 function EndHTML() {
154 ?>
155
156 <HR>
157 <P CLASS=FTR>
158 <B><?= date($GLOBALS[gblDateFmt]) ?> -
159 <?= date($GLOBALS[gblTimeFmt]) ?> -
160 <?= $GLOBALS[gblUserName] ?>
161 <small> [<a href="<?= $GLOBALS["PHP_SELF"] ?>?relogin=<?= $GLOBALS[gblPw] ?>">logout</a>]</small>
162 </B>
163 <BR>ANYPORTAL(php) Site Manager
164 <br><small>
165 &copy; 1999 by <A HREF="http://www.anyportal.com">ANYPORTAL</A>,
166 &copy; 2000 by <A HREF="http://da.nger.org">d@nger.org</A>,
167 &copy; 2000 by <A HREF="http://www.rot13.org/~dpavlin/">DbP</A>
168 </small>
169 </P>
170 <BR>
171 <? //include(".debug.inc") ?>
172 <BR><BR></BODY></HTML>
173
174 <?php
175 } // end function EndHTML
176
177 //////////////////////////////////////////////////////////////////
178
179 function CSS() {
180 ?>
181
182 BODY,TD,P,H1,H2,H3 { font-family:Verdana,Helvetica,Arial,sans-serif; }
183 .BLK { color:black; }
184 .RED { color:red; }
185 .TOP { color:red; font-size:70%; } /* table headings */
186 .INV { color:white; background-color:navy;
187 font-weight:bold; font-size:120%; } /* title */
188 .FTR { } /* footer */
189 .LST { background-color:#E0E0E0; } /* table cells */
190 .BAR { background-color:#E0E0E0; } /* action bar */
191 PRE { color:blue; font-family:Lucida Console,Courier New,
192 Courier,sans-serif; } /* source code */
193 EM { color:green; font-style:normal; } /* line numbers */
194 .REM { color:silver; }
195 .XML { color:navy; background-color:yellow; }
196 .MCK { color:red; font-family:WingDings; } /* Mock Icons */
197 A:HOVER { color:red; }
198
199 <?php
200 } // end function CSS
201
202 //////////////////////////////////////////////////////////////////
203
204 function DetailPage($fsRoot,$relDir,$fn) {
205
206 global $gblEditable, $gblImages, $webRoot ;
207 $self = $GLOBALS["PHP_SELF"] ;
208
209 $relPath = $relDir . "/" . $fn ;
210 $fsPath = $fsRoot . $relPath ;
211 $fsDir = $fsRoot . $relDir ;
212
213 $exists = file_exists($fsPath) ;
214 $ext = strtolower(strrchr($relPath,".")) ;
215 $editable = ( $ext=="" || strstr(join(" ",$gblEditable),$ext)) ;
216 $writable = is_writeable($fsPath) ;
217 $file_lock = CheckLock($fsPath);
218
219 if (!$editable && !$exists)
220 Error("Creation unsupported for type",$relPath) ;
221 if (!exists && !is_writeable($fsDir) )
222 Error("Creation denied",$relDir) ;
223
224 $text = "Use this page to view, modify or " ;
225 if (is_dir($fsPath)) {
226 $text .="delete a directory on this " ;
227 } else {
228 $text .= "delete a single document on this " ;
229 };
230 $text .= "web site." ;
231 $title = "(Detail Page)" ;
232 StartHTML($title, $text) ;
233
234 echo "<H3>" . $relDir . "/" . $fn . "</H3>" ;
235 if ($exists) { // get file info
236 $fsize = filesize($fsPath) ;
237 $fmodified = date("$GLOBALS[gblDateFmt] $GLOBALS[gblTimeFmt]", filemtime($fsPath)) ;
238 $faccessed = date("$GLOBALS[gblDateFmt] $GLOBALS[gblTimeFmt]", fileatime($fsPath)) ;
239 $fuid=fileowner($fsPath);
240 $fgid=filegroup($fsPath);
241 $userinfo = posix_getpwuid($fuid);
242 $grpinfo = posix_getgrgid($fgid);
243 echo "<PRE>";
244 if (!is_dir($fsPath)) echo " file size: " . $fsize . " Bytes<BR>" ;
245 echo "last modified: <B>" . $fmodified . "</B><BR>" ;
246 echo "last accessed: <B>" . $faccessed . "</B><BR>" ;
247 echo " owner: <B>" . $userinfo["name"] . " [$fuid]</B><BR>" ;
248 echo " group: <B>" . $grpinfo["name"] . " [$fgid]</B><BR>" ;
249 echo " permissions: <B>" ;
250 echo printf( "%o", fileperms($fsPath) ) . "</B>" ;
251 echo "</PRE>" ;
252
253 }
254
255 if ( !is_dir($fsPath) && $editable && ($writable || !$exists) && !$file_lock ) {
256 $fh = fopen($fsPath,"a+") ;
257 rewind($fh) ;
258 $fstr = fread($fh,filesize($fsPath)) ;
259 fclose($fh) ;
260 $fstr = htmlentities( $fstr ) ;
261 ?>
262
263 <FORM ACTION="<?= $self ; ?>" METHOD="POST">
264 <SPAN TITLE="Click [SAVE] to store updated contents.">
265 <B>DOCUMENT CONTENTS</B>
266 </SPAN><BR>
267 <TEXTAREA NAME="FILEDATA" ROWS=18 COLS=70 WRAP="OFF"><?php
268 echo($fstr) ; ?></TEXTAREA>
269 <INPUT TYPE="HIDDEN" NAME="DIR" VALUE="<?= $relDir ; ?>">
270 <INPUT TYPE="HIDDEN" NAME="FN" VALUE="<?= $fn ; ?>">
271 <INPUT TYPE="HIDDEN" NAME="POSTACTION" VALUE="SAVE">
272 <INPUT TYPE="HIDDEN" SIZE=48 MAXLENGTH=255 NAME="RELPATH"
273 VALUE="<?= $relPath ; ?>">
274 <br>
275 <INPUT TYPE="RESET" VALUE="UNDO ALL CHANGES">
276 <INPUT TYPE="SUBMIT" VALUE="SAVE">
277 </FORM>
278
279 <?php
280 }
281 if ( !$file_lock && $ext!="" && strstr(join(' ',$gblImages),$ext) ) {
282 $info = getimagesize($fsPath) ;
283 $tstr = "<IMG SRC=\"$webRoot".urlpath($relPath)."\" BORDER=0 " ;
284 $tstr .= $info[3] . " ALT=\"" . $fn . " - " ;
285 $tstr .= (int)(($fsize+1023)/1024) . "Kb\">" ;
286 // echo htmlentities($tstr) . "<BR><BR>" . $tstr ;
287 echo $tstr ;
288 }
289
290 ?>
291
292 <FORM ACTION="<?= $self ; ?>" METHOD="POST">
293 <INPUT TYPE="HIDDEN" NAME="DIR" VALUE="<?= $relDir ; ?>">
294 <INPUT TYPE="HIDDEN" NAME="FN" VALUE="<?= $fn ; ?>">
295 <INPUT TYPE="SUBMIT" NAME="POSTACTION" VALUE="CANCEL"><BR>
296
297 <?php
298
299 if ($file_lock) {
300 ?>
301 <hr>
302 <SPAN TITLE="Check OK and click UNLOCK to remove lock on file.">
303 <B>OK TO FORCE LOCK REMOVAL ON "<?= $fn ; ?>" HELD BY <?= $file_lock ?>? </B></SPAN>
304 <INPUT TYPE="CHECKBOX" NAME="CONFIRM">
305 <INPUT TYPE="SUBMIT" NAME="POSTACTION" VALUE="UNLOCK">
306 <?
307 } // file_lock
308
309 if (substr($fn,0,4) == ".del") {
310 $action="UNDELETE";
311 $desc="undelete previously deleted file";
312 } else {
313 $action="DELETE";
314 $desc="delete";
315 }
316
317 if ($exists && $writable) {
318 ?>
319
320 <HR>
321 <a name="undelete">
322 <SPAN TITLE="Check OK and click [<?= $action ?>] to <?= $desc ?>.">
323 <B>OK TO <?= $action ?> "<?= $fn ; ?>"? </B></SPAN>
324 <INPUT TYPE="CHECKBOX" NAME="CONFIRM">
325 <INPUT TYPE="SUBMIT" NAME="POSTACTION" VALUE="<?= $action ?>">
326
327 <HR>
328 <a name="rename">
329 <SPAN TITLE="Check OK and click [RENAME] to rename.">
330 <B>OK TO RENAME "<?= $fn ; ?>" TO
331 <INPUT TYPE="TEXT" SIZE=24 MAXLENGTH=255 NAME="NEWNAME" VALUE="<?= $fn ?>">
332 ? </B></SPAN>
333 <INPUT TYPE="CHECKBOX" NAME="CONFIRM">
334 <INPUT TYPE="SUBMIT" NAME="POSTACTION" VALUE="RENAME">
335
336 <?php
337 } // exists && writable
338 ?>
339 <HR>
340 <a name="note">
341 <B>NOTE FOR "<?= $fn ; ?>":
342 <INPUT TYPE="TEXT" SIZE=50 MAXLENGTH=255 NAME="NOTE" VALUE="<?= ReadNote($fsPath) ?>">
343 </B></SPAN>
344 <INPUT TYPE="SUBMIT" NAME="POSTACTION" VALUE="NOTE">
345
346 </FORM>
347
348 <?php
349
350 $name=basename("$fsDir/$fn");
351 $logname=dirname("$fsDir/$fn")."/.log/$name";
352 $bakdir=dirname("$fsDir/$fn")."/.bak";
353 if (file_exists($logname)) {
354 $log=fopen($logname,"r");
355 $cl1=" class=LST"; $cl2="";
356 $logarr = array();
357 while($line = fgetcsv($log,255,"\t")) {
358 $cl=$cl1; $cl1=$cl2; $cl2=$cl;
359 array_unshift($logarr,array($cl,$line[0],$line[1],$line[2],$line[3]));
360 }
361 fclose($log);
362 if (is_dir("$fsDir/$fn")) {
363 $whatis="DIRECTORY";
364 } else {
365 $whatis="FILE";
366 }
367 print "<hr><br><b>CHANGES TO THIS $whatis</b><br><table border=0 width=100%>\n";
368 $bakcount = 0; // start from 0, skip fist backup (it's current)
369 while ($e = array_shift($logarr)) {
370 if (strstr($e[4],"upload")) {
371 if (file_exists("$bakdir/$bakcount/$name")) {
372 $e[4]="<a href=\"$webRoot".urlpath(dirname($relPath)."/.bak/$bakcount/$name")."\">$e[4]</a>";
373 }
374 $bakcount++;
375 }
376 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";
377 }
378 print "</table>";
379 }
380
381 EndHTML() ;
382
383 } // end function DetailPage
384
385 //////////////////////////////////////////////////////////////////
386
387 function DisplayCode($fsRoot,$relDir,$fn) {
388
389 $path = $fsRoot . $relDir . "/" . $fn ;
390
391 if (!file_exists($path)) Error("File not found",$path) ;
392
393 StartHTML("(".$relDir."/".$fn.")","");
394
395 $tstr = join("",file($path)) ;
396 $tstr = htmlentities($tstr) ;
397
398 // Tabs
399 $tstr = str_replace(chr(9)," ",$tstr) ;
400
401 // ASP tags & XML/PHP tags
402 $aspbeg = "<SPAN CLASS=XML>&lt;%</SPAN><SPAN CLASS=BLK>" ;
403 $aspend = "</SPAN><SPAN CLASS=XML>%&gt;</SPAN>" ;
404 $tstr = str_replace("&lt;%",$aspbeg,$tstr) ;
405 $tstr = str_replace("%&gt;",$aspend,$tstr) ;
406
407 $xmlbeg = "<SPAN CLASS=XML>&lt;?</SPAN><SPAN CLASS=BLK>" ;
408 $xmlend = "</SPAN><SPAN CLASS=XML>?&gt;</SPAN>" ;
409 $tstr = str_replace("&lt;?",$xmlbeg,$tstr) ;
410 $tstr = str_replace("?&gt;",$xmlend,$tstr) ;
411
412 // C style comment
413 $tstr = str_replace("/*","<SPAN CLASS=REM>/*",$tstr) ;
414 $tstr = str_replace("*/","*/</SPAN>",$tstr) ;
415
416 // HTML comments
417 $tstr = str_replace("&lt;!--","<I CLASS=RED>&lt;!--",$tstr) ;
418 $tstr = str_replace("--&gt;","--&gt;</I>",$tstr) ;
419
420 echo "<PRE>" ;
421
422 $tstr = split("\n",$tstr) ;
423 for ($i = 0 ; $i < sizeof($tstr) ; ++$i) {
424 // add line numbers
425 echo "<BR><EM>" ;
426 echo substr(("000" . ($i+1)), -4) . ":</EM> " ;
427 $line = $tstr[$i] ;
428 // C++ style comments
429 $pos = strpos($line,"//") ;
430 // exceptions: two slashes aren't a script comment
431 if (strstr($line,"//") &&
432 ! ($pos>0 && substr($line,$pos-1,1)==":") &&
433 ! (substr($line,$pos,8) == "//--&gt;") &&
434 ! (substr($line,$pos,9) == "// --&gt;")) {
435 $beg = substr($line,0,strpos($line,"//")) ;
436 $end = strstr($line,"//") ;
437 $line = $beg."<SPAN CLASS=REM>".$end."</SPAN>";
438 }
439 // shell & asp style comments
440 $first = substr(ltrim($line),0,1) ;
441 if ($first == "#" || $first == "'") {
442 $line = "<SPAN CLASS=REM>".$line."</SPAN>";
443 }
444 print($line) ;
445 } // next i
446
447 echo "</PRE>" ;
448
449 EndHTML() ;
450
451 } // end function DisplayCode
452
453 //////////////////////////////////////////////////////////////////
454
455 function MockIcon($txt) {
456 $tstr = "<SPAN CLASS=MCK>" ;
457
458 switch (strtolower($txt)) {
459 case ".bmp" :
460 case ".gif" :
461 case ".jpg" :
462 case ".jpeg":
463 case ".tif" :
464 case ".tiff":
465 $d = 176 ;
466 break ;
467 case ".doc" :
468 $d = 50 ;
469 break ;
470 case ".exe" :
471 case ".bat" :
472 $d = 255 ;
473 break ;
474 case ".bas" :
475 case ".c" :
476 case ".cc" :
477 case ".src" :
478 $d = 255 ;
479 break ;
480 case "file" :
481 $d = 51 ;
482 break ;
483 case "fldr" :
484 $d = 48 ;
485 break ;
486 case ".htm" :
487 case ".html":
488 case ".asa" :
489 case ".asp" :
490 case ".cfm" :
491 case ".php3":
492 case ".php" :
493 case ".phtml" :
494 case ".shtml" :
495 $d = 182 ;
496 break ;
497 case ".pdf" :
498 $d = 38 ;
499 break;
500 case ".txt" :
501 case ".ini" :
502 $d = 52 ;
503 break ;
504 case ".xls" :
505 $d = 252 ;
506 break ;
507 case ".zip" :
508 case ".arc" :
509 case ".sit" :
510 case ".tar" :
511 case ".gz" :
512 case ".tgz" :
513 case ".Z" :
514 $d = 59 ;
515 break ;
516 case "view" :
517 $d = 52 ;
518 break ;
519 case "up" :
520 $d = 199 ;
521 break ;
522 case "blank" :
523 return "&nbsp;&nbsp;</SPAN>" ;
524 break ;
525 default :
526 $d = 51 ;
527 }
528
529 return $tstr . chr($d) . "</SPAN>" ;
530 } // end function MockIcon
531
532 //////////////////////////////////////////////////////////////////
533
534 function GifIcon($txt) {
535 global $gblIconLocation ;
536
537 switch (strtolower($txt)) {
538 case ".bmp" :
539 case ".gif" :
540 case ".jpg" :
541 case ".jpeg":
542 case ".tif" :
543 case ".tiff":
544 $d = "image2.gif" ;
545 break ;
546 case ".doc" :
547 $d = "layout.gif" ;
548 break ;
549 case ".exe" :
550 case ".bat" :
551 $d = "screw2.gif" ;
552 break ;
553 case ".bas" :
554 case ".c" :
555 case ".cc" :
556 case ".src" :
557 $d = "c.gif" ;
558 break ;
559 case "file" :
560 $d = "generic.gif" ;
561 break ;
562 case "fldr" :
563 $d = "dir.gif" ;
564 break ;
565 case ".phps" :
566 $d = "phps.gif" ;
567 break ;
568 case ".php3" :
569 $d = "php3.gif" ;
570 break ;
571 case ".htm" :
572 case ".html":
573 case ".asa" :
574 case ".asp" :
575 case ".cfm" :
576 case ".php3":
577 case ".php" :
578 case ".phtml" :
579 case ".shtml" :
580 $d = "world1.gif" ;
581 break ;
582 case ".pdf" :
583 $d = "pdf.gif" ;
584 break;
585 case ".txt" :
586 case ".ini" :
587 $d = "text.gif" ;
588 break ;
589 case ".xls" :
590 $d = "box2.gif" ;
591 break ;
592 case ".zip" :
593 case ".arc" :
594 case ".sit" :
595 case ".tar" :
596 case ".gz" :
597 case ".tgz" :
598 case ".Z" :
599 $d = "compressed.gif" ;
600 break ;
601 case "view" :
602 $d = "index.gif" ;
603 break ;
604 case "up" :
605 $d = "back.gif" ;
606 break ;
607 case "blank" :
608 $d = "blank.gif" ;
609 break ;
610 case "checkout":
611 $d = "box2.gif";
612 break;
613 case "checkin":
614 $d = "hand.up.gif";
615 break;
616 case "locked":
617 $d = "screw2.gif";
618 break;
619 case "note":
620 $d = "quill.gif";
621 break;
622 default :
623 $d = "generic.gif" ;
624 }
625
626 return "<IMG SRC=\"$gblIconLocation" . $d . "\" BORDER=0>" ;
627 } // end function GifIcon
628
629 //////////////////////////////////////////////////////////////////
630
631 function Navigate($fsRoot,$relDir) {
632
633 global $gblEditable, $gblIcon, $gblModDays, $webRoot ;
634
635 $self = $GLOBALS["PHP_SELF"] ;
636
637 $fsDir = $fsRoot . $relDir . "/" ; // current directory
638
639 if (!is_dir($fsDir)) Error("Dir not found",$relDir) ;
640
641 // read directory contents
642 if ( !($dir = @opendir($fsDir)) )
643 Error("Read Access denied",$relDir) ;
644 while ($item = readdir($dir)) {
645 if ( $item == ".." || $item == "." || substr($item,0,1) == "." ) continue ;
646 if ( is_dir($fsDir . $item) ) {
647 $dirList[] = $item ;
648 } else if ( is_file($fsDir . $item) ) {
649 $fileList[] = $item ;
650 } else if ( is_link($fsDir . $item) ) {
651 $dirList[] = $item ;
652 } else {
653 // unknown file type
654 // $text = "Could not determine file type of " ;
655 // Error("File Error", $text.$relDir."/".$item) ;
656 // exit ;
657 }
658 }
659 closedir($dir) ;
660
661 // scan deleted files
662 if ( $GLOBALS[show_deleted] == 1 && ($dir = @opendir("$fsDir/.del")) ) {
663 while ($item = readdir($dir)) {
664 if ( substr($item,0,1) == "." ) continue ;
665 $fileList[] = ".del/$item" ;
666 }
667 closedir($dir) ;
668 }
669
670 $emptyDir = ! (sizeof($dirList) || sizeof($fileList)) ;
671
672 // start navigation page
673 $text = "Use this page to add, delete";
674 if (! isset($show_deleted)) {
675 $text .= ", <a href=$self?D=".urlencode($relDir)."&show_deleted=1>undelete</a>";
676 }
677 $text .= " or revise files on this web site." ;
678 $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>.";
679 StartHTML("(Navigate)",$text) ;
680
681 echo "<TABLE BORDER=0 CELLPADDING=2
682 CELLSPACING=3 WIDTH=\"100%\">" ;
683
684 // updir bar
685 if ($fsDir != $fsRoot) {
686 $parent = dirname($relDir) ;
687 if ($parent == "") $parent = "/" ;
688 ?>
689
690 <TR><TD><?= $gblIcon("up") ?></TD><TD COLSPAN=5 CLASS=LST>
691 <A HREF="<?= $self ?>?D=<?= urlencode($parent) ?>">
692 <B><?= $parent ?></B></A></TD></TR>
693
694 <?php
695 }
696
697 // output subdirs
698 if (sizeof($dirList) > 0) {
699 sort($dirList) ;
700 ?>
701
702 <TR><TD></TD><TD COLSPAN=2 CLASS=TOP>DIRECTORY NAME</TD><TD COLSPAN=3 CLASS=TOP>DIRECTORY NOTE</TR>
703
704 <?php
705 while (list($key,$dir) = each($dirList)) {
706
707 $info_url=$self."?A=E&F=".urlencode($dir)."&D=".urlencode($relDir);
708 $tstr = "<A HREF=\"" . $self . "?D=" ;
709 $tstr .= urlencode($relDir."/".$dir) ;
710 $tstr .= "\">" . $dir . "/</A>" ;
711 $note_html="<a href=\"$info_url#note\">".$gblIcon("note")."</a>".ReadNote($fsDir.$dir);
712 ?>
713
714 <TR><TD>
715 <A HREF="<?= $info_url ?>" TITLE="View/Edit">
716 <?= $gblIcon("fldr") ?></A></TD>
717 <TD COLSPAN=2 CLASS=LST><?= $tstr ?></TD>
718 <TD COLSPAN=3 CLASS=LST><?= $note_html ?></TD></TR>
719
720 <?php
721 } // iterate over dirs
722 } // end if no dirs
723 ?>
724
725 <TR><TD></TD><TD COLSPAN=5><HR><B><?= $webRoot . $relDir ?>
726 </B></TD></TR>
727 <TR><TD></TD><TD CLASS=TOP>DOCUMENT NAME</TD>
728 <TD><?= $gblIcon("blank").$gblIcon("blank") ?></TD>
729 <TD CLASS=TOP>NOTE</TD>
730 <TD CLASS=TOP>LAST UPDATE</TD><TD CLASS=TOP>FILE SIZE</TD></TR>
731
732 <?php
733 if (sizeof($fileList) > 0) {
734 sort($fileList) ;
735 while (list($key,$file) = each($fileList)) {
736 $path = $fsDir."/".$file ;
737 $mod = filemtime($path) ;
738 $sz = filesize($path) ;
739
740 if ($sz >= 10240) {
741 $sz = (int)(($sz+1023)/1024) . " k" ;
742 } else {
743 $sz .= " " ;
744 } // end size
745
746 $a = $b = "" ;
747
748 $info_url=$self."?A=E&F=".urlencode($file)."&D=".urlencode($relDir);
749
750 if ( ($mod + $gblModDays*86400) > time() ) {
751 $a = "<SPAN CLASS=RED TITLE=\"Newer" ;
752 $a .= " than $gblModDays days\"> * </SPAN>" ;
753 }
754
755 $file_lock=CheckLock($path);
756
757 $file_url_html="<A HREF=\"$self?A=V&F=".urlencode($file);
758 $file_url_html.="&D=".urlencode($relDir);
759 $file_url_html.="\" TITLE=\"View file\">" ;
760
761 if (substr($file,0,5) != ".del/") {
762 $file_url_html .= $file . "</A>" . $a ;
763 } else {
764 $file_url_html .= substr($file,5,strlen($file)-5) . "</a> <SPAN CLASS=RED TITLE=\"deleted\"> <a href=\"$info_url#undelete\">deleted</a> </span>";
765 }
766
767 $note_html="<a href=\"$info_url#note\">".$gblIcon("note")."</a>".ReadNote($path);
768
769 $ext = strtolower(strrchr($file,".")) ;
770
771 if ($file_lock) {
772 if ($file_lock == $GLOBALS[gblUserName]) {
773 $b.="<A HREF=\"$self?A=Ci&F=".urlencode($file);
774 $b.="&D=".urlencode($relDir);
775 $b.="\" TITLE=\"Checkin (update) file on server\">" ;
776 $file_url_html=$b;
777 $b.=$gblIcon("checkin")."</A>" ;
778 $b.= $gblIcon("blank");
779 $file_url_html.="$file</a> $a";
780 $note_html = $gblIcon("blank")."<b>Please check-in (update) this file</b>";
781 } else {
782 $b = $gblIcon("locked");
783 $b.= $gblIcon("blank");
784 $note_html = $gblIcon("blank")."<b>File locked by $file_lock</b>";
785 $file_url_html = "$file $a";
786 }
787 } else {
788 $b.="<A HREF=\"$self?A=Co&F=".urlencode($file);
789 $b.="&D=".urlencode($relDir);
790 $b.="\" TITLE=\"Checkout file for edit\">" ;
791 $b.=$gblIcon("checkout")."</A>" ;
792
793 if ( $ext=="" || strstr(join(" ",$gblEditable),$ext) ) {
794 $b.="<A HREF=\"$self?A=C&F=".urlencode($file);
795 $b.="&D=".urlencode($relDir);
796 $b.="\" TITLE=\"List contents\">" ;
797 $b.=$gblIcon("view")."</A>" ;
798 } else {
799 $b.= $gblIcon("blank");
800 }
801 }
802
803
804 ?>
805
806 <TR><TD>
807 <A HREF="<?= $info_url ?>" TITLE="View/Edit">
808 <?= $gblIcon($ext) ?></A></TD>
809 <TD CLASS=LST><?= $file_url_html ?></TD>
810 <TD CLASS=LST ALIGN=center><?= $b ?></TD>
811 <TD CLASS=LST ALIGN=left><?= $note_html ?></TD>
812 <TD CLASS=LST><?= date("$GLOBALS[gblDateFmt] $GLOBALS[gblTimeFmt]",$mod) ?></TD>
813 <TD CLASS=LST><?= $sz ?>Bytes</TD></TR>
814
815 <?php
816 } // iterate over files
817 } else { // end if no files
818 ?>
819 <TR><TD></TD><TD COLSPAN=5 CLASS=LST>
820 No files in this directory
821 </TD></TR>
822 <?
823 }
824
825 if ($emptyDir) {
826 ?>
827
828 <FORM METHOD="POST" ACTION="<?= $self ?>">
829 <TR><TD></TD><TD COLSPAN=5 CLASS=BAR>
830 <INPUT TYPE="HIDDEN" NAME="DIR" VALUE="<?= $relDir ?>">
831 OK TO DELETE THIS EMPTY FOLDER?
832 <INPUT TYPE="CHECKBOX" NAME="CONFIRM">
833 <INPUT TYPE="SUBMIT" NAME="POSTACTION" VALUE="DELETE">
834 </TD></TR>
835 </FORM>
836
837 <?php
838 } // end if emptyDir
839 ?>
840
841 <TR><TD></TD><TD COLSPAN=5><HR></TD></TR>
842
843 <?
844 if (file_exists(".info.inc")) {
845 print "<TR><TD></TD><TD COLSPAN=5>";
846 include(".info.inc");
847 print "</TD></TR>
848 <TR><TD></TD><TD COLSPAN=5><HR></TD></TR>";
849 }
850 ?>
851
852 <FORM METHOD="POST" ACTION="<?= $self ?>">
853 <TR><TD></TD><TD COLSPAN=5 CLASS=BAR>CREATE NEW
854 <INPUT TYPE="RADIO" NAME="T" VALUE="D" CHECKED>DIRECTORY -OR-
855 <INPUT TYPE="RADIO" NAME="T" VALUE="F">FILE : &nbsp;&nbsp;
856 <NOBR>NAME <INPUT TYPE="TEXT" NAME="FN" SIZE=14>
857 <INPUT TYPE="HIDDEN" NAME="POSTACTION" VALUE="CREATE">
858 <INPUT TYPE="HIDDEN" NAME="DIR" VALUE="<?= $relDir ?>">
859 <INPUT TYPE="SUBMIT" VALUE="CREATE"></NOBR>
860 <NOBR>OR <A HREF="<?= $self ?>?A=U&D=<?= urlencode($relDir) ?>">UPLOAD</A> A FILE
861 </NOBR>
862 </TD></TR>
863 </FORM>
864 </TABLE>
865
866 <?php
867 EndHTML() ;
868 } // end function Navigate
869
870 //////////////////////////////////////////////////////////////////
871
872 function UploadPage($fsRoot, $relDir, $filename="") {
873
874 $self = $GLOBALS["PHP_SELF"] ;
875 if ($relDir == "") $relDir = "/" ;
876 ?>
877
878 <P><TABLE BORDER=0 CELLPADDING=5><TR><TD WIDTH=5></TD><TD CLASS=BAR>
879 <FORM ENCTYPE="multipart/form-data" METHOD="POST"
880 ACTION="<?= $self ?>">
881 DESTINATION DIRECTORY:<B><?= " " . $relDir ?></B>
882 <? if (isset($filename) && $filename!="") { ?>
883 <br>DESTINATION FILE:<B><?= " " . $filename ?></B>
884 <INPUT TYPE="HIDDEN" NAME="FILENAME" VALUE="<?= $filename ?>">
885 <? } ?>
886 <P>PATHNAME OF LOCAL FILE<BR>
887 <INPUT TYPE="HIDDEN" NAME="DIR" VALUE="<?= $relDir ?>">
888 <INPUT TYPE="HIDDEN" NAME="POSTACTION" VALUE="UPLOAD">
889 <INPUT SIZE=30 TYPE="FILE" NAME="FN"></P>
890 <P><INPUT TYPE="SUBMIT" VALUE="UPLOAD"></P>
891 <P>If the <B>[BROWSE...]</B> button is not displayed,<BR>
892 you must upgrade to an RFC1867-compliant browser.</P>
893 <P>Your browser:<BR><?= $GLOBALS["HTTP_USER_AGENT"] ?></P>
894 </FORM>
895 </TD></TR>
896 <TR><TD></TD><TD>
897 <FORM METHOD="POST" ACTION="<?= $self ?>">
898 <INPUT TYPE="HIDDEN" NAME="DIR" VALUE="<?= $relDir ?>"><BR>
899 <INPUT TYPE="SUBMIT" NAME="POSTACTION" VALUE="CANCEL">
900 </FORM>
901 </TD></TR></TABLE></P>
902
903 <?php
904 } // end function UploadPage
905
906 //////////////////////////////////////////////////////////////////
907
908 function Error($title,$text="") {
909 StartHTML("(".$title.")",$text) ;
910 echo "<P ALIGN=center>Hit your Browser's Back Button.</P>" ;
911 EndHTML() ;
912 exit ;
913 } // end function Error
914
915 //////////////////////////////////////////////////////////////////
916
917 function NoEntry() {
918
919 $user = $GLOBALS["PHP_AUTH_USER"] ;
920 $pw = $GLOBALS["PHP_AUTH_PW"] ;
921 $self = $GLOBALS["PHP_SELF"] ;
922
923 $title = "(401 Unauthorized)" ;
924 $text = "No trespassing !" ;
925 StartHTML($title,$text) ;
926
927 EndHTML() ;
928 exit ;
929 }
930
931 //////////////////////////////////////////////////////////////////
932
933 function LogIt($target,$msg) {
934
935 $dir=dirname($target);
936 if (! file_exists($dir."/.log")) {
937 mkdir($dir."/.log",0700);
938 }
939 $file=basename($target);
940
941 $log=fopen("$dir/.log/$file","a+");
942 fputs($log,date("$GLOBALS[gblDateFmt]\t$GLOBALS[gblTimeFmt]").
943 "\t$GLOBALS[gblUserName]\t$msg\n");
944 fclose($log);
945
946 }
947
948
949 //////////////////////////////////////////////////////////////////
950
951 function WriteNote($target,$msg) {
952
953 $target=stripSlashes($target);
954 $dir=dirname($target);
955 if (! file_exists($dir."/.note")) {
956 mkdir($dir."/.note",0700);
957 }
958 $file=basename($target);
959
960 $note=fopen("$dir/.note/$file","w");
961 fputs($note,"$msg\n");
962 fclose($note);
963
964 Logit($target,"added note $msg");
965
966 }
967
968 function ReadNote($target) {
969
970 $target=stripSlashes($target);
971 $dir=dirname($target);
972 $file=basename($target);
973 $msg="";
974 if (file_exists($dir."/.note/$file")) {
975 $note=fopen("$dir/.note/$file","r");
976 $msg=fgets($note,4096);
977 fclose($note);
978 }
979 return StripSlashes($msg);
980
981 }
982
983 //////////////////////////////////////////////////////////////////
984
985 function MoveTo($source,$folder) {
986
987 $source=stripSlashes($source);
988 $file=basename($source);
989 if (! file_exists($folder)) {
990 mkdir($folder,0700);
991 }
992 if (file_exists($source)) {
993 rename($source,"$folder/$file");
994 }
995 }
996
997 //////////////////////////////////////////////////////////////////
998
999 function Lock($target) {
1000
1001 $target=stripSlashes($target);
1002 $dir=dirname($target);
1003 if (! file_exists($dir."/.lock")) {
1004 mkdir($dir."/.lock",0700);
1005 }
1006 $file=basename($target);
1007
1008 if (file_exists("$dir/.lock/$file")) {
1009 Logit($target,"attempt to locked allready locked file!");
1010 } else {
1011 $lock=fopen("$dir/.lock/$file","w");
1012 fputs($lock,"$GLOBALS[gblUserName]\n");
1013 fclose($lock);
1014
1015 Logit($target,"file locked");
1016 }
1017
1018 }
1019
1020 function CheckLock($target) {
1021
1022 $target=stripSlashes($target);
1023 $dir=dirname($target);
1024 $file=basename($target);
1025 $msg=0;
1026 if (file_exists($dir."/.lock/$file")) {
1027 $lock=fopen("$dir/.lock/$file","r");
1028 $msg=fgets($lock,4096);
1029 fclose($lock);
1030 }
1031 return chop($msg);
1032
1033 }
1034
1035 function Unlock($target) {
1036
1037 $target=stripSlashes($target);
1038 $dir=dirname($target);
1039 $file=basename($target);
1040 if (file_exists($dir."/.lock/$file")) {
1041 unlink("$dir/.lock/$file");
1042 Logit($target,"file unlocked");
1043 } else {
1044 Logit($target,"attempt to unlocked non-locked file!");
1045 }
1046
1047 }
1048
1049 //////////////////////////////////////////////////////////////////
1050
1051 function urlpath($url) {
1052 $url=urlencode(StripSlashes("$url"));
1053 $url=str_replace("%2F","/",$url);
1054 $url=str_replace("+","%20",$url);
1055 return($url);
1056 }
1057
1058 //////////////////////////////////////////////////////////////////
1059
1060 function safe_rename($fromdir,$fromfile,$tofile) {
1061 function try_rename($from,$to) {
1062 print "$from -> $to\n";
1063 if (file_exists($from) && is_writeable(dirname($to))) {
1064 rename($from,$to);
1065 }
1066 }
1067
1068 function try_dir($todir) {
1069 if (! file_exists($todir)) {
1070 mkdir($todir,0700);
1071 }
1072 }
1073
1074 $to="$fromdir/$tofile";
1075 $todir=dirname($to);
1076 $tofile=basename($to);
1077
1078 print "<pre>$fromdir / $fromfile -> $todir / $tofile\n\n";
1079
1080 try_rename("$fromdir/$fromfile","$todir/$tofile");
1081 try_dir("$todir/.log");
1082 try_rename("$fromdir/.log/$fromfile","$todir/.log/$tofile");
1083 try_dir("$todir/.note");
1084 try_rename("$fromdir/.note/$fromfile","$todir/.note/$tofile");
1085 try_dir("$todir/.lock");
1086 try_rename("$fromdir/.lock/$fromfile","$todir/.lock/$tofile");
1087 try_dir("$todir/.bak");
1088 for($i=0;$i<=$GLOBALS[gblNumBackups];$i++) {
1089 try_rename("$fromdir/.bak/$i/$fromfile","$todir/.bak/$i/$tofile");
1090 }
1091 }
1092
1093
1094 //////////////////////////////////////////////////////////////////
1095
1096 // recursivly delete directory
1097
1098 function rrmdir($dir) {
1099 $handle=opendir($dir);
1100 while ($file = readdir($handle)) {
1101 if ($file != "." && $file != "..") {
1102 if (is_dir("$dir/$file"))
1103 rrmdir("$dir/$file");
1104 else
1105 if (! @unlink("$dir/$file")) return(0);
1106 }
1107 }
1108 closedir($handle);
1109 return @rmdir($dir);
1110 }
1111
1112 //////////////////////////////////////////////////////////////////
1113
1114 function ChangeLog($target,$msg) {
1115
1116 global $gblFsRoot;
1117 $log=fopen("$gblFsRoot/.changelog","a+");
1118 if (substr($target,0,strlen($gblFsRoot)) == $gblFsRoot)
1119 $target=substr($target,strlen($gblFsRoot),strlen($target)-strlen($gblFsRoot));
1120 fputs($log,time()."\t$target\t$GLOBALS[gblUserName]\t$msg\n");
1121 fclose($log);
1122
1123 }
1124
1125 function DisplayChangeLog($day) {
1126
1127 global $gblFsRoot;
1128 if (!file_exists("$gblFsRoot/.changelog")) return;
1129 $log=fopen("$gblFsRoot/.changelog","r");
1130 $logarr = array();
1131 while($line = fgetcsv($log,255,"\t")) {
1132 if ($day!=1 || ($day==1 && (time()-$line[0] < 24*60*60))) {
1133 array_unshift($logarr,array($line[0],$line[1],$line[2],$line[3]));
1134 }
1135 }
1136 fclose($log);
1137 $cl1=" class=LST"; $cl2="";
1138 print "<table border=0 width=100%>\n";
1139 while ($e = array_shift($logarr)) {
1140 $cl=$cl1; $cl1=$cl2; $cl2=$cl;
1141 $date = date("$GLOBALS[gblDateFmt]", $e[0]);
1142 $time = date("$GLOBALS[gblTimeFmt]", $e[0]);
1143 $dir = dirname($e[1]);
1144 $file = basename($e[1]);
1145 print "<tr><td$cl>$date</td><td$cl>$time</td><td$cl><a href=\"$GLOBALS[PHP_SELF]?D=".urlencode($dir)."\">$dir</a>/$file</td><td$cl>$e[2]</td><td$cl>$e[3]</td></tr>\n";
1146 }
1147 print "</table>";
1148 print "<p>".GifIcon(up)." Back to <a href=$GLOBALS[PHP_SELF]>front page</a>.</p>";
1149 }
1150
1151 //////////////////////////////////////////////////////////////////
1152
1153 // MAIN PROGRAM
1154 // ============
1155 // query parameters: capital letters
1156 // local functions : begin with capital letters
1157 // global constants: begin with gbl
1158
1159 $gblFilePerms = 0640 ; // default for new files
1160 $gblDirPerms = 0750 ; // default for new dirs
1161
1162 // phpinfo() ;
1163 // exit ;
1164
1165 // forks before authentication: style sheet and hash
1166 // creation if password not yet set.
1167 if ($STYLE == "get") { CSS() ; exit ; }
1168
1169 $htusers_file=dirname($SCRIPT_FILENAME)."/.htusers";
1170 if (! file_exists($htusers_file)) {
1171 if (is_writeable(dirname($SCRIPT_FILENAME))) {
1172 $htusers=fopen($htusers_file,"a+");
1173 fputs($htusers,"# Change owner of $htusers_file to root !!\n");
1174 fputs($htusers,"demo:full name:[md5_hash|auth_*]:e-mail\n");
1175 fclose($htusers);
1176 Error("Proto user file created!","Please edit <tt>$htusers_file</tt> and set it correct permissions (<B>not writable by web server as it is now!</b>). You can add users using <tt>adduser.pl</tt> script!");
1177 exit;
1178 } else {
1179 Error("Can't create proto user file!","Please make directory <tt>".dirname($htusers_file)."</tt> writable or create <tt>.htusers</tt> file by hand using <tt>adduser.pl</tt> script!");
1180 exit;
1181 }
1182 }
1183 $htusers=fopen($htusers_file,"r");
1184 while($user = fgetcsv($htusers,255,":")) {
1185 if ($user[0] == $GLOBALS["PHP_AUTH_USER"]) {
1186 $gblUserName=$user[1];
1187 $gblPw=$user[2];
1188 if (substr($gblPw,0,5) == "auth_" && file_exists("$gblIncDir/$gblPw.php")) {
1189 require("$gblIncDir/$gblPw.php");
1190 if ($gblPw($user)) {
1191 $gblPw=md5($PHP_AUTH_USER.$PHP_AUTH_PW);
1192 } else {
1193 $gblPw="error".md5($PHP_AUTH_USER.$PHP_AUTH_PW);
1194 }
1195 }
1196 $gblEmail=$user[3];
1197 continue ;
1198 }
1199 }
1200 fclose($htusers);
1201
1202 // authentication failure
1203 if ( md5($PHP_AUTH_USER.$PHP_AUTH_PW) != $gblPw ||
1204 isset($relogin) && $gblPw == $relogin ) {
1205 header("WWW-authenticate: basic realm=\"$HTTP_HOST\"") ;
1206 header("HTTP/1.0 401 Unauthorized") ;
1207 NoEntry() ;
1208 exit ;
1209 }
1210
1211 // get current directory relative to $gblFsRoot
1212 $relDir = $DIR ; // from POST
1213 if ($relDir == "") { // not defined in POST ?
1214 $relDir = urldecode($D) ; // then use GET
1215 }
1216
1217 $relDir=stripSlashes($relDir);
1218
1219 if ($relDir == "/") $relDir = "" ;
1220 // default : website root = ""
1221
1222 if (strstr($relDir,"..")) Error("No updirs allowed");
1223
1224 // full paths contain "fs" or "Fs". Paths realitve to root of
1225 // website contain "rel" or "Rel". The script won't let you
1226 // edit anything above directory equal to http://server.com
1227 // i.e. below $gblFsRoot.
1228
1229 $relScriptDir = dirname($SCRIPT_NAME) ;
1230 // i.e. /docman
1231
1232 $fsScriptDir = dirname($SCRIPT_FILENAME) ;
1233 // i.e. /home/httpd/html/docman
1234
1235 // start on server root
1236 // $gblFsRoot = substr($fsScriptDir,0, strlen($fsScriptDir)-strlen($relScriptDir)) ;
1237 // or on script root
1238 $gblFsRoot = $fsScriptDir;
1239 // i.e. /home/httpd/html
1240
1241 $fsDir = $gblFsRoot . $relDir ; // current directory
1242 if ( !is_dir($fsDir) ) Error("Dir not found",$relDir) ;
1243
1244 if (isset($GLOBALS["HTTPS"]) && $GLOBALS["HTTPS"] == "on") {
1245 $webRoot = "https://";
1246 } else {
1247 $webRoot = "http://";
1248 }
1249 $webRoot .= $GLOBALS["HTTP_HOST"] . $relScriptDir;
1250
1251 $FN=stripSlashes($FN);
1252
1253 switch ($POSTACTION) {
1254 case "UPLOAD" :
1255 if (!is_writeable($fsDir)) Error("Write denied",$relDir) ;
1256 if (strstr($FN_name,"/"))
1257 Error("Non-conforming filename") ;
1258 // TODO : should rather check for escapeshellcmds
1259 // but maybe RFC 18xx asserts safe filenames ....
1260 $source = $FN ;
1261 if (! file_exists($source)) {
1262 Error("You must select file with browse to upload it!");
1263 }
1264 if (! isset($FILENAME)) { // from update file
1265 $target = "$fsDir/$FN_name" ;
1266 } else {
1267 $target = "$fsDir/$FILENAME";
1268 }
1269
1270 // backup old files first
1271 $dir=dirname($target);
1272 if (! file_exists($dir."/.bak")) {
1273 mkdir($dir."/.bak",0700);
1274 }
1275 if (! file_exists($dir."/.bak/$GLOBALS[gblNumBackups]")) {
1276 mkdir($dir."/.bak/$GLOBALS[gblNumBackups]",0700);
1277 }
1278 $file=basename($target);
1279 for($i=$GLOBALS[gblNumBackups]-1;$i>0;$i--) {
1280 MoveTo("$dir/.bak/$i/$file","$dir/.bak/".($i+1)."/");
1281 }
1282 MoveTo($target,$dir."/.bak/1/");
1283
1284 copy($source,$target) ;
1285 chmod($target,$gblFilePerms) ;
1286 clearstatcache() ;
1287 Logit($target,"uploaded");
1288 if (isset($FILENAME)) {
1289 Unlock($target);
1290 }
1291 ChangeLog($target,"updated");
1292 break ;
1293
1294 case "SAVE" :
1295 $path = $gblFsRoot . $RELPATH ;
1296 $path=stripSlashes($path);
1297 $writable = is_writeable($path) ;
1298 $legaldir = is_writeable(dirname($path)) ;
1299 $exists = (file_exists($path)) ? 1 : 0 ;
1300 // check for legal extension here as well
1301 if (!($writable || (!$exists && $legaldir)))
1302 Error("Write denied",$RELPATH) ;
1303 $fh = fopen($path, "w") ;
1304 $FILEDATA=stripSlashes($FILEDATA);
1305 fwrite($fh,$FILEDATA) ;
1306 fclose($fh) ;
1307 clearstatcache() ;
1308 Logit($path,"saved changes");
1309 ChangeLog($path,"saved changes");
1310 break ;
1311
1312 case "CREATE" :
1313 // we know $fsDir exists
1314 if ($FN == "") break; // no filename!
1315 if (!is_writeable($fsDir)) Error("Write denied",$relDir) ;
1316 $path = $fsDir . "/" . $FN ; // file or dir to create
1317 $relPath = $relDir . "/" . $FN ;
1318 switch ( $T ) {
1319 case "D" : // create a directory
1320 if ( ! @mkdir($path,$gblDirPerms) )
1321 Error("Mkdir failed",$relPath) ; // eg. if it exists
1322 clearstatcache() ;
1323 break ;
1324 case "F" : // create a new file
1325 // this functionality is doubled in DetailView().
1326 // better keep it here altogether
1327 // chmod perms to $gblFilePerms
1328 if ( file_exists($path) && !is_writeable($path) )
1329 Error("File not writable", $relPath) ;
1330 $fh = fopen($path, "w+") ;
1331 if ($fh) {
1332 fputs($fh,"\n");
1333 fclose($fh) ;
1334 LogIt($path,"file created");
1335 } else {
1336 Error("Creation of file $relPath failed -- $path");
1337 }
1338 $tstr = "$PHP_SELF?A=E&D=".urlencode($relDir)."&F=".urlencode($FN) ;
1339 header("Location: " . $tstr) ;
1340 ChangeLog($target,"created");
1341 exit ;
1342 }
1343 break ;
1344
1345 case "DELETE" :
1346 if ( $CONFIRM != "on" ) break ;
1347
1348 $tstr = "Attempt to delete non-existing object or " ;
1349 $tstr .= "insufficient privileges: " ;
1350
1351 if ( $FN != "") { // delete file
1352 $path = $fsDir . "/" . $FN ;
1353
1354 $dir=dirname($path);
1355 $file=basename($path);
1356 if (! file_exists("$dir/.del")) {
1357 mkdir("$dir/.del",0700);
1358 }
1359
1360 // if ( ! @unlink($path) ) {
1361 if ( ! rename($path,"$dir/.del/$file") ) {
1362 Error("File delete failed", $tstr . $path) ;
1363 Logit($path,"file delete failed");
1364 exit ;
1365 } else {
1366 Logit($path,"file deleted");
1367 MoveTo("$dir/.log/$file","$dir/.del/.log/");
1368 MoveTo("$dir/.note/$file","$dir/.del/.note/");
1369 MoveTo("$dir/.lock/$file","$dir/.del/.lock/");
1370 }
1371 }
1372 else { // delete directory
1373 if ( ! @rrmdir($fsDir) ) {
1374 Error("Rmdir failed", $tstr . $fsDir) ;
1375 }
1376 else {
1377 $relDir = dirname($relDir) ; // move up
1378 }
1379 }
1380 break ;
1381
1382 case "UNDELETE" :
1383 if ( $CONFIRM != "on" ) break ;
1384
1385 if (substr($FN,0,4) != ".del") break ;
1386 $file=substr($FN,4,strlen($FN)-4);
1387
1388 Logit("$fsDir/.del/$file","undeleted");
1389 MoveTo("$fsDir/.del/$file","$fsDir/");
1390 MoveTo("$fsDir/.del/.log/$file","$fsDir/.log/");
1391 MoveTo("$fsDir/.del/.note/$file","$fsDir/.note/");
1392 MoveTo("$fsDir/.del/.lock/$file","$fsDir/.lock/");
1393
1394 break ;
1395
1396 case "RENAME" :
1397 if ( $CONFIRM != "on" ) break ;
1398
1399 Logit("$fsDir/$FN","renamed $FN to $NEWNAME");
1400 safe_rename($fsDir,$FN,$NEWNAME);
1401 break ;
1402
1403 case "NOTE" :
1404 WriteNote("$fsDir/$FN","$NOTE");
1405 break ;
1406
1407 case "UNLOCK" :
1408 if ( $CONFIRM != "on" ) break ;
1409 Unlock("$fsDir/$FN");
1410 break ;
1411
1412 default :
1413 // user hit "CANCEL" or undefined action
1414 }
1415
1416 // common to all POSTs : redirect to directory view ($relDir)
1417 if ( $POSTACTION != "" ) {
1418 $tstr = $PHP_SELF . "?D=" . urlencode($relDir) ;
1419 header("Location: " . $tstr) ;
1420 exit ;
1421 }
1422
1423 // check for mode.. navigate, code display, upload, or detail?
1424 // $A=U : upload to path given in $D
1425 // $A=E : display detail of file $D/$F and edit
1426 // $A=C : display code in file $D/$F
1427 // $A=Co : checkout file $D/$F
1428 // $A=Ci : checkin file $D/$F
1429 // $A=V : view file (do nothing except log)
1430 // default : display directory $D
1431
1432 switch ($A) {
1433 case "U" :
1434 // upload to $relDir
1435 if (!is_writeable($gblFsRoot . $relDir))
1436 Error("Write access denied",$relDir) ;
1437 $text = "Use this page to upload a single " ;
1438 $text .= "file to <B>$HTTP_HOST</B>." ;
1439 StartHTML("(Upload Page)", $text) ;
1440 UploadPage($gblFsRoot, $relDir) ;
1441 EndHTML() ;
1442 exit ;
1443 case "E" :
1444 $F=stripSlashes($F);
1445 // detail of $relDir/$F
1446 if (is_file("$gblFsRoot/$relDir/$F") || is_dir("$gblFsRoot/$relDir/$F")) DetailPage($gblFsRoot, $relDir, $F) ;
1447 exit ;
1448 case "C" :
1449 $F=stripSlashes($F);
1450 // listing of $relDir/$F
1451 DisplayCode($gblFsRoot, $relDir, $F) ;
1452 exit ;
1453 case "Co" :
1454 // checkout
1455 Lock("$gblFsRoot/$relDir/$F");
1456 header("Content-Disposition: attachment; filename=$F" );
1457 Header("Location: $webRoot".urlpath("$relDir/$F"));
1458 exit;
1459 case "Ci" :
1460 $F=stripSlashes($F);
1461 // upload && update to $relDir
1462 if (!is_writeable($gblFsRoot . $relDir))
1463 Error("Write access denied",$relDir) ;
1464 $text = "Use this page to update a single " ;
1465 $text .= "file to <B>$HTTP_HOST</B>." ;
1466 StartHTML("(Update file Page)", $text) ;
1467 UploadPage($gblFsRoot, $relDir, $F) ;
1468 EndHTML() ;
1469 exit ;
1470 case "V" :
1471 // view
1472 LogIt("$gblFsRoot/$relDir/$F","viewed");
1473 header("Content-Disposition: attachment; filename=$F" );
1474 Header("Location: $webRoot".urlpath("$relDir/$F"));
1475 exit;
1476 case "Ch" :
1477 StartHTML("(File changes)","All changes chronologicaly...");
1478 DisplayChangeLog(0); // all
1479 EndHTML() ;
1480 exit;
1481 case "Ch1" :
1482 StartHTML("(File changes)","Changes to files in last day...");
1483 DisplayChangeLog(1);
1484 EndHTML() ;
1485 exit;
1486 }
1487
1488 // default: display directory $relDir
1489 Navigate($gblFsRoot,$relDir) ;
1490 exit ;
1491
1492 Error("Whooah!","By cartesian logic, this never happens") ;
1493 ?>

  ViewVC Help
Powered by ViewVC 1.1.26