-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathfb.php
More file actions
1431 lines (1295 loc) · 58.3 KB
/
fb.php
File metadata and controls
1431 lines (1295 loc) · 58.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?
/*
* Copyright 2003 - 2005 Mark O'Sullivan
* This file is part of the Lussumo Filebrowser.
* The Lussumo Filebrowser is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version.
* The Lussumo Filebrowser is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
* You should have received a copy of the GNU General Public License along with the Lussumo Filebrowser; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
* The latest source code is available at www.lussumo.com
* Contact Mark O'Sullivan at mark [at] lussumo [dot] com
*
* Description: The main application file that draws the filebrowser.
*/
error_reporting(E_ALL);
// Global Constants
define("sgLIBRARY", "c:/applications/lussumo/GlobalLibrary/");
// Define XML Node Types
define("XmlNodeTypeContainer", 1);
define("XmlNodeTypeContent", 2);
// Force a boolean value
// Accept a default value if the input value does not represent a boolean value
function ForceBool($InValue, $DefaultBool) {
// If the invalue doesn't exist (ie an array element that doesn't exist) use the default
if (!$InValue) $InValue = $DefaultBool;
$InValue = strtoupper($InValue);
$bReturn = $DefaultBool;
if ($InValue == "TRUE" || $InValue == "FALSE" || $InValue == 1 || $InValue == 0 || $InValue == "Y" || $InValue == "N") {
if ($InValue == "TRUE" || $InValue == 1 || $InValue == "Y") {
$bReturn = 1;
} else {
$bReturn = 0;
}
}
return $bReturn;
}
// Check both the get and post incoming data for a variable
function ForceIncomingBool($VariableName, $DefaultBool) {
// First check the querystring
$bReturn = ForceSet(@$_GET[$VariableName], $DefaultBool);
$bReturn = ForceBool($bReturn, $DefaultBool);
// If the default value was defined, then check the post variables
if ($bReturn == $DefaultBool) {
$bReturn = ForceSet(@$_POST[$VariableName], $DefaultBool);
$bReturn = ForceBool($bReturn, $DefaultBool);
}
return $bReturn;
}
// Check both the get and post incoming data for a variable
// Does not allow integers to be less than 0
function ForceIncomingInt($VariableName, $DefaultValue) {
// First check the querystring
$iReturn = ForceSet(@$_GET[$VariableName], $DefaultValue);
$iReturn = ForceInt($iReturn, $DefaultValue);
// If the default value was defined, then check the form variables
if ($iReturn == $DefaultValue) {
$iReturn = ForceSet(@$_POST[$VariableName], $DefaultValue);
$iReturn = ForceInt($iReturn, $DefaultValue);
}
// If the value found was less than 0, set it to the default value
if($iReturn < 0) $iReturn == $DefaultValue;
return $iReturn;
}
// Check both the get and post incoming data for a variable
function ForceIncomingString($VariableName, $DefaultValue) {
// First check the querystring
$sReturn = ForceSet(@$_GET[$VariableName], $DefaultValue);
$sReturn = ForceString($sReturn, $DefaultValue);
// If the default value was defined, then check the post variables
if ($sReturn == $DefaultValue) {
$sReturn = ForceSet(@$_POST[$VariableName], $DefaultValue);
$sReturn = ForceString($sReturn, $DefaultValue);
}
// And strip slashes from the string
$sReturn = stripslashes($sReturn);
return $sReturn;
}
// Take a value and force it to be an integer.
function ForceInt($InValue, $DefaultValue) {
$iReturn = intval($InValue);
if ($iReturn == 0) $iReturn = $DefaultValue;
return $iReturn;
}
// Takes a variable and checks to see if it's set.
// Returns the value if set, or the default value if not set.
function ForceSet($InValue, $DefaultValue) {
if(isset($InValue)) {
$sReturn = $InValue;
} else {
$sReturn = $DefaultValue;
}
return $sReturn;
}
// Take a value and force it to be a string.
function ForceString($InValue, $DefaultValue) {
if (is_string($InValue)) {
$sReturn = trim($InValue);
$length = strlen($sReturn);
if($length == 0) $sReturn = $DefaultValue;
} else {
$sReturn = $DefaultValue;
}
return $sReturn;
}
function SaveAsDialogue($FolderPath, $FileName, $DeleteFile = "0") {
$DeleteFile = ForceBool($DeleteFile, 0);
$FolderPath = ($FolderPath != "")?$FolderPath."/".$FileName:$FileName;
header("Pragma: public");
header("Expires: 0");
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
header("Content-Type: application/force-download");
header("Content-Type: application/octet-stream");
header("Content-Type: application/download");
header("Content-Disposition: attachment; filename=$FileName");
header("Content-Transfer-Encoding: binary");
readfile($FolderPath);
if ($DeleteFile) unlink($FolderPath);
die();
}
class Error {
var $AffectedElement; // The element (class) that has encountered the error
var $AffectedFunction; // The function or method that has encountered the error
var $Message; // Actual error message
var $Code; // Any related code to help identify the error
}
class ErrorManager {
// Public Variables
var $StyleSheet; // A custom stylesheet may be supplied for the error display
// Public, Read Only Variables
var $ErrorCount; // Number of errors encountered
// Private Variables
var $Errors; // Collection of error objects
function AddError(&$Context, $AffectedElement, $AffectedFunction, $Message, $Code = "", $WriteAndKill = 1) {
if ($Context) {
$Error = $Context->ObjectFactory->NewObject($Context, "Error");
} else {
$Error = new Error();
}
$Error->AffectedElement = $AffectedElement;
$Error->AffectedFunction = $AffectedFunction;
$Error->Message = $Message;
$Error->Code = $Code;
$this->Errors[] = $Error;
$this->ErrorCount += 1;
if ($WriteAndKill == 1) $this->Write($Context);
}
function Clear() {
$this->ErrorCount = 0;
$this->Errors = array();
}
function ErrorManager() {
$this->Clear();
}
function Iif($True = "1", $False = "0") {
if ($this->ErrorCount == 0) {
return $True;
} else {
return $False;
}
}
function Write(&$Context) {
echo("<html>
<head>
<title>The page could not be displayed</title>
");
if ($this->StyleSheet == "") {
echo("<style>
body { background: #ffffff; padding: 20px; }
body, div, h1, h2, h3, h4, p { font-family: Trebuchet MS, tahoma, arial, verdana; color: #000; line-height: 160%; }
h1 { font-size: 22px; }
h2 { color: #c00; font-size: 14px; margin-bottom: 10px; }
h3, h4, p, .Foot { font-size: 12px; font-weight: normal; margin: 0px; padding: 0px; }
p { padding-top: 20px; }
code { display: block; font-size: 11px; padding-left: 10px; padding-right: 10px; background: #f5f5f5; font-family:'courier new',courier,serif; }
a, a:link, a:visited { color: #36f; background: #ffc; text-decoration: none; }
a:hover { color: #36F; background: #ffa; text-decoration: none; }
.Foot { padding-top: 20px; }
.Sql { font-size: 11px; padding: 8px; background: #f0f0f0; margin-bottom: 6px; }
</style>
");
} else {
echo("<link rel=\"stylesheet\" href=\"".$this->StyleSheet."\" />\r\n");
}
echo("</head>
<body>
<h1>A fatal, non-recoverable error has occurred</h1>
<h2>Technical information (for support personel):</h2>
");
for ($i = 0; $i < count($this->Errors); $i++) {
echo("<h3>Error Message: ".ForceString($this->Errors[$i]->Message, "No error message supplied")."</h3>
<h4>Affected Elements: ".ForceString($this->Errors[$i]->AffectedElement, "undefined").".".ForceString($this->Errors[$i]->AffectedFunction, "undefined")."();</h4>
");
$Code = ForceString($this->Errors[$i]->Code, "");
if ($Code != "") {
echo("<p>The error occurred on or near:</p>
<code>".$Code."</code>
");
}
}
if ($Context) {
if ($Context->Mode == agMODE_DEBUG && $Context->SqlCollector) {
echo("<h2>Database queries run prior to error</h2>");
$Context->SqlCollector->Write();
}
}
echo("<div class=\"Foot\">For additional support documentation, visit the Lussumo Software support website at: <a href=\"http://lussumo.com/support\">lussumo.com/support</a></div>
</body>
</html>");
// Cleanup
if ($Context) $Context->Unload();
die();
}
function GetSimple() {
$sReturn = "";
for ($i = 0; $i < count($this->Errors); $i++) {
$sReturn .= ForceString($this->Errors[$i]->Message, "No error message supplied\r\n");
}
return $sReturn;
}
}
class Parameters {
var $aParameters = array();
// Add an element to the collection
function Add($Name, $Value, $EncodeValue = 1) {
if ($EncodeValue && !is_array($Value)) $Value = urlencode($Value);
$this->aParameters[$Name] = $Value;
}
// Completely clear the collection
function Clear() {
$this->aParameters = array();
}
// Return a count of how many elements are in the collection
function Count() {
return count($this->aParameters);
}
// Retrieves all get and post variables
function DefineCollection($Collection, $ParameterPrefix = "", $IncludeByPrefix = "0", $ExcludeByPrefix = "0") {
$ParameterPrefix = ForceString($ParameterPrefix, "");
$IncludeByPrefix = ForceBool($IncludeByPrefix, 0);
$ExcludeByPrefix = ForceBool($ExcludeByPrefix, 0);
$Add = 1;
while (list($key, $value) = each($Collection)) {
$Add = 1;
if ($ParameterPrefix != "") {
$PrefixMatchLocation = strstr($key, $ParameterPrefix);
// If the prefix isn't found or the location is anywhere other than 0 (the start of the variable name)
if ($PrefixMatchLocation === false || $PrefixMatchLocation != 0) {
if ($IncludeByPrefix) $Add = 0;
} else {
if ($ExcludeByPrefix) $Add = 0;
}
}
if ($Add) $this->Add($key, $value);
}
}
function GetHiddenInputs() {
$sReturn = "";
while (list($key, $val) = each($this->aParameters)) {
if(is_array($val)) {
$nmrows = count($val);
for ($i = 0; $i < $nmrows; ++$i) {
$sReturn .= "<input type=\"hidden\" name=\"".$key."[]\" value=\"".$val[$i]."\" />\r\n";
}
} else {
$sReturn .= "<input type=\"hidden\" name=\"".$key."\" value=\"".$val."\" />\r\n";
}
}
reset($this->aParameters);
return $sReturn;
}
// Return the collection as a string in querystring name/value pair format
function GetQueryString() {
$sReturn = "";
while (list($key, $val) = each($this->aParameters)) {
if(is_array($val)) {
$nmrows = count($val);
for ($i = 0; $i < $nmrows; ++$i) {
$sReturn .= $key ."[]=" . $val[$i] . "&";
}
} else {
$sReturn .= $key . "=" . $val . "&";
}
}
// remove trailing ampersand
$sReturn = substr($sReturn,0,strlen($sReturn) - 5);
if ($sReturn != "") $sReturn = "?".$sReturn;
reset($this->aParameters);
return $sReturn;
}
// Remove an element from the collection
function Remove($Name) {
$key_index = array_keys(array_keys($this->aParameters), $Name);
if (count($key_index) > 0) array_splice($this->aParameters, $key_index[0], 1);
}
// Set a value. If it already exists, overwrite it.
function Set($Name, $Value, $EncodeValue = 1) {
$this->Remove($Name);
$this->Add($Name, $Value, $EncodeValue);
}
}
class XmlNode {
var $Name; // The name of this element as defined by it's xml tag
var $Type; // Type of node (1. contains other nodes, 2. contains data)
var $Attributes; // Attributes in the current tag element
var $Value; // value of the current element
var $Child; // Array of child elements
}
class XmlManager {
var $ErrorManager; // Error message collector
var $Name; // The name of this class
// Searches through the given node to search for a child node with the supplied name
// returns the node if found, returns false otherwise
function GetNodeByName($NodeToSearch, $NodeName) {
$Node = false;
for ($i = 0; $i < count($NodeToSearch->Child); $i++) {
if ($NodeToSearch->Child[$i]->Name == $NodeName) $Node = $NodeToSearch->Child[$i];
}
return $Node;
}
function GetNodeValueByName($NodeToSearch, $NodeName) {
$Node = $this->GetNodeByName($NodeToSearch, $NodeName);
if ($Node) {
return $Node->Value;
} else {
false;
}
}
// Takes a string of xml and parses it recursively returning a fully descript root node
function ParseNode($XmlString) {
// Retrieve the first xml tag in the file
$XmlString = trim($XmlString);
$RootNodeStartTag = strpos($XmlString, "<");
$RootNodeEndTag = strpos($XmlString, ">");
$RootNodeName = "";
$RootNodeAttributes = array();
$FauxContext = "0";
// If the opening tag exists, parse it out
if ($RootNodeStartTag === false || $RootNodeEndTag === false) {
$this->ErrorManager->AddError($FauxContext,$this->Name, "ParseNode", "A fatal error occurred while attempting to parse xml nodes. Syntax Error: xml not properly defined.");
} else {
$RootNodeName = trim(substr($XmlString, $RootNodeStartTag+1, $RootNodeEndTag-1));
// Evaluate the tag for attributes
$SpacePosition = strpos($RootNodeName, " ");
if ($SpacePosition !== false) {
$sAttributes = trim(substr($RootNodeName,$SpacePosition,strlen($RootNodeName)-$SpacePosition));
$RootNodeName = trim(substr($RootNodeName,0,$SpacePosition));
$tmpArray = explode("=",$sAttributes);
$i = 0;
$ArrayKeys = count($tmpArray)-1;
$Name = "";
while($i < $ArrayKeys) {
if ($i+1 <= $ArrayKeys) {
if ($Name == "") $Name = ForceString($tmpArray[$i],"");
$Value = ForceString($tmpArray[$i+1],"");
if (strpos($Value,"\"") === 0) $Value = substr($Value,1);
$NextQuotePosition = strpos($Value,"\"");
$NextName = "";
if ($NextQuotePosition !== false) {
$NextName = trim(substr($Value,$NextQuotePosition));
$Value = substr($Value,0,$NextQuotePosition);
}
$RootNodeAttributes[$Name] = $Value;
$Name = $NextName;
}
$i += 2;
}
}
}
// Double check to see that the root tag name has been properly defined
if ($RootNodeName == "") $this->ErrorManager->AddError($FauxContext,$this->Name, "ParseNode", "Node name not defined.");
$Node = new XmlNode();
$Node->Name = $RootNodeName;
$Node->Attributes = $RootNodeAttributes;
// Get content from within the root tag
$RootNodeStartCloseTag = strpos($XmlString,"</".$RootNodeName.">");
$XmlString = substr($XmlString, $RootNodeEndTag+1, $RootNodeStartCloseTag-$RootNodeEndTag-1);
// Check the inner content to define the current node type
if (strpos($XmlString, "<") !== false && strpos($XmlString, ">") !== false) {
$Node->Type = XmlNodeTypeContainer;
} else {
$Node->Type = XmlNodeTypeContent;
}
if ($Node->Type == XmlNodeTypeContent) {
// If the current node holds content, return it
$Node->Value = $XmlString;
} else {
// If the current node contains more nodes, parse it
// Define nodes until entire xmlstring has been handled at this level
$HandlerComplete = false;
while(!$HandlerComplete) {
// Defind the node name
$NodeStartOpenTag = strpos($XmlString, "<");
$NodeEndOpenTag = strpos($XmlString, ">");
$NodeName = trim(substr($XmlString, $NodeStartOpenTag+1, $NodeEndOpenTag-1-$NodeStartOpenTag));
// Check the Node Name for any spaces and remove anything if it exists
$SpacePosition = strpos($NodeName," ");
if ($SpacePosition !== false) $NodeName = substr($NodeName, 0, $SpacePosition);
// Find the position of the closing tag for this node
$NodeStartCloseTag = strpos($XmlString,"</".$NodeName.">");
$NodeEndCloseTag = $NodeStartCloseTag+strlen($NodeName)+3;
// If it wasn't found, throw an error and break the loop
if ($NodeStartCloseTag === false) {
$this->ErrorManager->AddError($FauxContext,$this->Name, "ParseNode", "Closing tag for \"$NodeName\" node not defined.");
break;
// If the tag was found, return everything from the beginning to the end and parse it into a child
} else {
$NewXmlNodeString = substr($XmlString,$NodeStartOpenTag,$NodeEndCloseTag);
$Node->Child[] = $this->ParseNode($NewXmlNodeString);
}
if (strlen($XmlString) > $NodeEndCloseTag) {
$XmlString = trim(substr($XmlString, $NodeEndCloseTag, strlen($XmlString)));
} else {
$XmlString = "";
}
if ($XmlString == "") $HandlerComplete = true;
}
}
return $Node;
}
function XmlManager() {
$this->Name = "XmlManager";
}
}
class File {
var $Name;
var $Extension;
var $Path; // Directory path to the file
var $Body;
var $Size;
}
class FileManager {
var $ErrorManager;
var $Name;
function FileExtension($File) {
if (strstr($File->Name, '.')) {
return substr(strrchr($File->Name, '.'), 1, strlen($File->Name));
} else {
return "";
}
}
function FileManager() {
$this->Name = "FileManager";
}
function FilePath($File) {
if (substr($File->Path, strlen($File->Path) - 1, strlen($File->Path)) != "/") $File->Path .= "/";
return $File->Path.$File->Name;
}
function Get($File) {
// Ensure required properties are set
$FauxContext = 0;
if ($File->Name == "") $this->ErrorManager->AddError($FauxContext, $this->Name, "Get", "You must supply a file name.", "", 0);
if ($File->Path == "") $this->ErrorManager->AddError($FauxContext, $this->Name, "Get", "You must supply a file path.", "", 0);
if ($this->ErrorManager->ErrorCount == 0) {
$File->Extension = $this->FileExtension($File);
$FilePath = $this->FilePath($File);
$FileHandle = @fopen($FilePath, "r");
if (!$FileHandle) {
$this->ErrorManager->AddError($FauxContext, $this->Name, "Get", "The file could not be opened.", $FilePath, 0);
} else {
$File->Size = filesize($FilePath);
$File->Body = @fread($FileHandle, $File->Size);
if (!$File->Body) $this->ErrorManager->AddError($FauxContext, $this->Name, "Get", "The file could not be read.", "", 0);
@fclose($FileHandle);
}
}
return $this->ErrorManager->Iif($File, false);
}
}
function CurrentUrl() {
return basename(ForceString(@$_SERVER["PHP_SELF"], ""));
}
function CurrentWebPath() {
$SelfWebPath = ForceString(@$_SERVER["HTTP_HOST"], "").ForceString(@$_SERVER["PHP_SELF"], "");
// Strip filename from webpath if exists
if (strpos($SelfWebPath, CurrentUrl()) !== false) $SelfWebPath = substr($SelfWebPath,0,strpos($SelfWebPath, CurrentUrl()));
if ($SelfWebPath != "") $SelfWebPath = "http://".$SelfWebPath;
return $SelfWebPath;
}
function FilePath($Path, $File) {
if (substr($Path, strlen($Path) - 1, strlen($Path)) != "/") $Path .= "/";
return $Path.$File;
}
function FormatDisplayedItem($ItemID, $FileName, $FileSize, $HandlerMethod, &$Params, $Config) {
$FolderPath = substr($Config->CurrentBrowsingDirectory, strlen($Config->CurrentWorkingDirectory)+1,(strlen($Config->CurrentBrowsingDirectory)-strlen($Config->CurrentWorkingDirectory)+1));
$FolderPath = ($FolderPath != "")?$FolderPath."/".$FileName:$FileName;
$EncodedPath = EncodeLinkUrl(FilePath(CurrentWebPath(),$FolderPath));
$Params->Add("gid", $ItemID);
$Return = "<input type=\"hidden\" name=\"Item$ItemID\" value=\"".$EncodedPath."\" />
<div class=\"DisplayItem\">
<h2><a href=\"".CurrentWebPath().$FolderPath."\">$FileName</a></h2>
<ul class=\"Options\">
<li class=\"Save\"><a href=\"".CurrentUrl().$Params->GetQueryString()."\">Save</a></li>
<li class=\"Copy\"><a href=\"Javascript:copy(document.frmLinkContainer.Item$ItemID);\">Copy url</a></li>\r\n";
$Handled = false;
$Params->Remove("gid");
switch ($HandlerMethod) {
case "Image":
$Handled = true;
$Return .= "<input type=\"hidden\" name=\"ImgTag$ItemID\" value='<img src=\"".$EncodedPath."\" />' />
<li class=\"CopyImg\"><a href=\"Javascript:copy(document.frmLinkContainer.ImgTag$ItemID);\">Copy img tag</a></li>
</ul>
<div class=\"DisplayItemImage\">";
if ($Config->FitImagesToPage) {
$ImageSize = @getimagesize($FolderPath);
if ($ImageSize) {
$Return .= "<script>writeImage('$EncodedPath', ".$ImageSize[0].", ".$ImageSize[1].", '".$ItemID."');</script>";
} else {
$Return .= "<img src=\"$EncodedPath\" alt=\"\" />";
}
} else {
$Return .= "<img src=\"$EncodedPath\" alt=\"\" />";
}
$Return .= "</div>\r\n";
break;
case "IFrame":
$Handled = true;
$Return .= "<li class=\"CopyImg\"><a href=\"Javascript:copy(document.frmLinkContainer.AnchorTag$ItemID);\">Copy anchor tag</a></li>
<input type=\"hidden\" name=\"AnchorTag$ItemID\" value=\"<a href='".$EncodedPath."'>".CurrentWebPath().$FolderPath."</a>\" />
<li class=\"View\"><a href=\"".CurrentWebPath().$FolderPath."\" target=\"_blank\">View</a></li>
</ul>
<div class=\"DisplayItemIFrame\"><iframe src=\"$FolderPath\"></iframe></div>\r\n";
break;
case "TextArea":
$Handled = true;
// Retrieve the file contents
$File = new File();
$File->Name = $FolderPath;
$File->Path = "./";
$FileManager = new FileManager();
$FileManager->ErrorManager = &$Config->ErrorManager;
$File = $FileManager->Get($File);
if (!$File) {
$FauxContext = "0";
$Config->ErrorManager->AddError($FauxContext,"Filebrowser", "FormatDisplayedItem", "An error occurred while retrieving the file contents.", "", 0);
$FileContents = $Config->ErrorManager->GetSimple();
} else {
// Make sure that a "</textarea>" tag doesn't kill my textarea
$FileContents = str_replace("<", "<", $File->Body);
}
$Return .= "<li class=\"CopyImg\"><a href=\"Javascript:copy(document.frmLinkContainer.AnchorTag$ItemID);\">Copy anchor tag</a></li>
<input type=\"hidden\" name=\"AnchorTag$ItemID\" value='<a href=\"".$EncodedPath."\">".CurrentWebPath().$FolderPath."</a>' />
<li class=\"View\"><a href=\"".CurrentWebPath().$FolderPath."\" target=\"_blank\">View</a></li>
</ul>
<div class=\"DisplayItemTextArea\"><textarea>$FileContents</textarea></div>\r\n";
break;
case "EmbedFlash":
$Handled = true;
$EmbedString = "<object type=\"application/x-shockwave-flash\" data=\"".$EncodedPath."\"";
if ($Config->PluginHeight > 0 && $Config->PluginWidth > 0) $EmbedString .= " height=\"".$Config->PluginHeight."\" width=\"".$Config->PluginWidth."\"";
$EmbedString .= "><param name=\"movie\" value=\"".$EncodedPath."\" />You do not appear to have the latest flash plugin installed</object>";
$Return .= "<li class=\"CopyImg\"><a href=\"Javascript:copy(document.frmLinkContainer.EmbedTag$ItemID);\">Copy embed tag</a></li>
<input type=\"hidden\" name=\"EmbedTag$ItemID\" value='".$EmbedString."' />
</ul>
<div class=\"DisplayItemFlash\">".$EmbedString."</div>\r\n";
break;
case "Embed":
$Handled = true;
$EmbedString = "<embed src='".CurrentWebPath().$FolderPath."'></embed>";
$Return .= "<li class=\"CopyImg\"><a href=\"Javascript:copy(document.frmLinkContainer.EmbedTag$ItemID);\">Copy embed tag</a></li>
<input type=\"hidden\" name=\"EmbedTag$ItemID\" value=\"".$EmbedString."\" />
</ul>
<div class=\"DisplayItemEmbed\">".$EmbedString."</div>\r\n";
break;
case "EmbedQuicktime":
$Handled = true;
$EmbedString = "<embed src='".$EncodedPath."'";
if ($Config->PluginHeight > 0 && $Config->PluginWidth > 0) $EmbedString .= " height='".$Config->PluginHeight."' width='".$Config->PluginWidth."'";
$EmbedString .= "></embed>";
$Return .= "<li class=\"CopyImg\"><a href=\"Javascript:copy(document.frmLinkContainer.EmbedTag$ItemID);\">Copy embed tag</a></li>
<input type=\"hidden\" name=\"EmbedTag$ItemID\" value=\"".$EmbedString."\" />
</ul>
<div class=\"DisplayItemEmbed\">".$EmbedString."</div>\r\n";
break;
default:
// HyperLink handler method
$Return .= "</ul>
<div class=\"DisplayItemBlank\"></div>\r\n";
$Handled = true;
break;
}
if (!$Handled) {
$Return = "";
} else {
$Return .= "</div>\r\n";
}
return $Return;
}
function FormatListItem($ID, $Name, $Path, $Size, $Date, $Highlighted, &$Params, $CurrentFileHasThumbnail, $Config) {
$Return = "<li class=\"ListItem".($Config->UseThumbnails?" Thumbed":"")."\">
<ul>";
$Params->Set("fid",$ID);
if ($Config->UseThumbnails) {
if ($CurrentFileHasThumbnail) {
$ThumbPath = EncodeLinkUrl(FilePath($Path, "_thumb.".$Name));
$Return .= "<li class=\"ItemThumb\">"
."<a href=\"".CurrentUrl().$Params->GetQueryString()."\" style=\"background:url('".$ThumbPath."') center center no-repeat;\">"
."<img src=\"".$ThumbPath."\" border=\"0\" alt=\"\" />"
."</a>"
."</li>\r\n";
} else {
$Return .= "<li class=\"ItemThumb NoPreview\">"
."<a href=\"".CurrentUrl().$Params->GetQueryString()."\">"
."Preview Unavailable"
."</a>"
."</li>";
}
}
$Return .= "<li class=\"ItemName\">\r\n";
if (!$Highlighted) {
$Return .= "<a href=\"".CurrentUrl().$Params->GetQueryString()."\">$Name</a>";
} else {
$Return .= $Name;
}
$Return .= "</li>
<li class=\"ItemSize\">$Size</li>
<li class=\"ItemDateModified\">".date($Config->DateFormat, $Date)."</li>
</ul>
</li>\r\n";
return $Return;
}
function FormatMenuItem($CssClass, $Params, $Link, $Alt, $Active) {
$Return = "<li class=\"".$CssClass."\">";
if ($Active !== false) $Return .= "<a href=\"".CurrentUrl().$Params->GetQueryString()."\" title=\"$Alt\">";
$Return .= $Link;
if ($Active !== false) $Return .= "</a>";
$Return .= "</li>\r\n";
return $Return;
}
// Append a folder name to the current browsing directory
function AppendFolder($RootPath, $FolderToAppend) {
if (substr($RootPath, strlen($RootPath)-1, strlen($RootPath)) == "/") $RootPath = substr($RootPath, 0, strlen($RootPath) - 1);
if (substr($FolderToAppend,0,1) == "/") $FolderToAppend = substr($FolderToAppend,1,strlen($FolderToAppend));
return $RootPath."/".$FolderToAppend;
}
// Build the navigation path to the current browsing directory
function BuildPath($FolderNavigator, $FilesPerPage = "10") {
$s = "";
for ($i = 0; $i < count($FolderNavigator); $i++) {
$s .= "/<a href=\"".CurrentUrl()."?fpp=".$FilesPerPage."&did=".$FolderNavigator[$i][1]."\">".$FolderNavigator[$i][0]."</a>";
}
return $s;
}
function BuildLiteralPath($FolderNavigator) {
$s = "";
for ($i = 0; $i < count($FolderNavigator); $i++) {
$s .= "/".$FolderNavigator[$i][0];
}
return $s;
}
// returns the complete path to the folder or false if not found
function CheckForFolder($Path, $FolderKey, &$Config) {
$FolderHandle = opendir($Path);
$aCurrentSubFolders = array();
// Only look at folders
while (false !== ($Item = readdir($FolderHandle))) {
if ($Item != '.'
&& $Item != '..'
&& is_dir($Path."/".$Item)
&& !in_array($Path."/".$Item, $Config->FullyQualifiedHideFiles)) $aCurrentSubFolders[] = $Item;
}
closedir($FolderHandle);
// Sort the folders according to the config setting
usort($aCurrentSubFolders, "strcasecmp");
reset($aCurrentSubFolders);
if ($Config->SortDirection == "desc") $aCurrentSubFolders = array_reverse($aCurrentSubFolders);
// If the key supplied is less than the total count of folders found, append the folder name to the path
if ($FolderKey < count($aCurrentSubFolders)) {
$Config->FolderNavigatorLocation = FormatDelimitedString($Config->FolderNavigatorLocation, $FolderKey, $Config->FolderDelimiter);
$Config->FolderNavigator[] = array($aCurrentSubFolders[$FolderKey], $Config->FolderNavigatorLocation);
return AppendFolder($Path, $aCurrentSubFolders[$FolderKey]);
} else {
return false;
}
}
function EncodeLinkUrl($Url) {
return str_replace("'", "%27", $Url);
}
function FormatDelimitedString($String, $Addition, $Delimiter) {
$String = $String."";
$Addition = $Addition."";
$String = trim($String);
$StringLength = strlen($String);
if ($String != "") {
if (substr($String,0,1) == $Delimiter) $String = substr($String, 1, $StringLength-1);
if (substr($String,$StringLength-1,$StringLength) == $Delimiter) $String = substr($String, 0, $StringLength-1);
}
$Addition = ForceString($Addition, "");
$AdditionLength = strlen($Addition);
if ($Addition != "") {
if (substr($Addition,0,1) == $Delimiter) $Addition = substr($Addition, 1, $AdditionLength-1);
if (substr($Addition,$AdditionLength-1,$AdditionLength) == $Delimiter) $Addition = substr($Addition, 0, $AdditionLength-1);
}
$sReturn = "";
if ($String != "" && $Addition != "") {
$sReturn = $String.$Delimiter.$Addition;
} elseif ($String != "" && $Addition == "") {
$sReturn = $String;
} elseif ($String == "" && $Addition != "") {
$sReturn = $Addition;
}
return $sReturn;
}
function FormatFileSize($FileSize) {
if ($FileSize > 1048576) {
return intval((($FileSize / 1048576) * 100) + 0.5) / 100 ."mb";
} elseif ($FileSize > 1024) {
return ceil($FileSize / 1024)."kb";
} else {
return $FileSize."b";
}
}
// strip the file extension from a file name
function GetExtension($FileName) {
if (strstr($FileName, '.')) {
return strtolower(substr(strrchr($FileName, '.'), 1, strlen($FileName)));
} else {
return "";
}
}
class FileCollection {
var $Name; // Name of the current collection
var $FileNames; // Array of file names
var $LowerFileNames;// Array of file names in lowercase (for sorting)
var $FileSizes; // Array of file sizes
var $FileDates; // Array of file dates
var $HandlerMethods;// Array of handler methods
function AddFile($Name, $Size, $Date, $HandlerMethod) {
$this->FileNames[] = $Name;
$this->LowerFileNames[] = strtolower($Name);
$this->FileSizes[] = $Size;
$this->FileDates[] = $Date;
$this->HandlerMethods[] = $HandlerMethod;
}
function BuildAssociativeFileArray($OrderedArray, $ThumbnailArray) {
reset($OrderedArray);
$AssociativeArray = array();
while (list($key, $val) = each($OrderedArray)) {
$AssociativeArray[] = array("Name" => $this->FileNames[$key], "Size" => FormatFileSize($this->FileSizes[$key]), "Date" => $this->FileDates[$key], "HandlerMethod" => $this->HandlerMethods[$key], "ThumbnailPresent" => $this->FindThumbnail($this->FileNames[$key], $ThumbnailArray));
}
return $AssociativeArray;
}
function FileCollection($Name = "") {
$this->Name = $Name;
$this->FileNames = array();
$this->LowerFileNames = array();
$this->FileDates = array();
$this->FileSizes = array();
$this->HandlerMethods = array();
}
function FindThumbnail($FileName, $ThumbnailArray) {
// Take the given filename and look for a thumbnail (thumbnails are prefixed with ".thumb.")
return in_array("_thumb.".$FileName, $ThumbnailArray);
}
// Get all items in this file collection as an associative array in the specified order & direction
function GetFiles($OrderBy = "Size", $Direction = "asc", $ThumbnailArray = "") {
if (!is_array($ThumbnailArray)) $ThumbnailArray = array();
if ($Direction != "asc") $Direction = "desc";
if ($OrderBy != "Size" && $OrderBy != "Name" && $OrderBy != "Date") $OrderBy = "Size";
$SortFunction = "asort";
if ($Direction == "desc") $SortFunction = "arsort";
$ReturnArray = false;
if ($OrderBy == "Date") {
$SortFunction($this->FileDates);
$ReturnArray = $this->BuildAssociativeFileArray($this->FileDates, $ThumbnailArray);
} elseif ($OrderBy == "Name") {
$SortFunction($this->LowerFileNames);
$ReturnArray = $this->BuildAssociativeFileArray($this->LowerFileNames, $ThumbnailArray);
} else {
$SortFunction($this->FileSizes);
$ReturnArray = $this->BuildAssociativeFileArray($this->FileSizes, $ThumbnailArray);
}
return $ReturnArray;
}
}
class Configuration {
// Configuration Settings
var $ConfigFile; // Location of the configuration file
var $FileTypesFile; // Location of the filetypes file
var $ErrorManager; // Handles error messages
var $Version; // FB Version
var $Developer; // FB Developer's name
var $DeveloperEmail; // FB Developer's email address
var $Date; // Date of FB development completion
var $StyleUrl; // URL to the stylesheet
var $PageTitle; // To appear on the page
var $PageIntroduction; // To appear before any images are viewed
var $UsePageIntroductionInSubFolders;
var $DisplayHiddenFiles; // Boolean value indicating if files beginning with underscore should be visible
var $BrowseSubFolders; // Boolean value indicating if subfolders should be browsable/visible
var $SortBy; // Value to sort the files by
var $SortDirection; // Direction to sort the files
var $DateFormat; // The format string that will be used to configure the display format of the date for a file
var $PluginHeight;
var $PluginWidth;
var $DefaultFilesPerPage; // The default number of files to show when someone clicks the >> or << buttons
var $FitImagesToPage; // Boolean value indicating if large images should be shrunk to fit on the page
var $UseThumbnails; // Use thumbnails (if they exist)
// Browsing Properties
var $FileID; // ID of file currently being viewed
var $FolderIDs; // String of comma delimited folder ids
var $aFolderID; // Array of folder id's currently being viewed
var $FilesPerPage; // Number of files to display per page (as defined by the querystring)
var $CurrentWorkingDirectory;
var $CurrentBrowsingDirectory;
var $SelfUrl; // Name of this file
var $SelfWebPath; // path to the filebrowser execution file (ie. http://mydomain.com/images/)
var $FolderDelimiter; // Querystring delimiter to be used between folder ids
var $FolderNavigator; // A holder variable containing a folder navigation array
var $FolderNavigatorLocation; // Another holder variable containing the querystring values for the folder navigator
var $ShowMultipleFiles; // Boolean value indicating if multiple file should be displayed or not
var $GetFileID; // ID of a file to "save as"
var $HideFiles; // An array of files that should remain hidden
var $FullyQualifiedHideFiles; // Same as above, but fully qualified to root
var $Name; // The name of this class
// Default constructor - define default values for class properties
function Configuration() {
// Configuration Settings
$this->ConfigFile = "_config.xml";
$this->FileTypesFile = "_filetypes.xml";
$this->CurrentWorkingDirectory = getcwd();
// Configuration Properties
$this->Version = "1.3.3";
$this->Developer = "Mark O'Sullivan";
$this->Date = "2002-2005";
$this->StyleUrl = "_default.css";
$this->PageTitle = "Lussumo Filebrowser";
$this->PageIntroduction = "";
$this->UsePageIntroductionInSubFolders = false;
$this->DisplayHiddenFiles = false;
$this->BrowseSubFolders = true;
$this->SortBy = "Name";
$this->SortDirection = "asc";
$this->DateFormat = "m-d-y";
$this->PluginHeight = 400;
$this->PluginWidth = 400;
$this->DefaultFilesPerPage = 5;
$this->MaxFilesPerPage = 50;
$this->FitImagesToPage = 1;
$this->UseThumbnails = 0;
$this->HideFiles = array();
$this->FullyQualifiedHideFiles = array();
// Browsing Properties
$this->FolderDelimiter = "-";
$this->FileID = ForceIncomingInt("fid", 0);
$this->FolderIDs = ForceIncomingString("did", "");
if ($this->FolderIDs == "") {
$this->aFolderID = array();
} else {
$this->aFolderID = explode($this->FolderDelimiter, $this->FolderIDs);
}
$this->CurrentBrowsingDirectory = $this->CurrentWorkingDirectory;
$this->FolderNavigator = array();
$this->FolderNavigatorLocation = "";
$this->ShowMultipleFiles = ForceIncomingBool("smf", false);
$this->GetFileID = ForceIncomingInt("gid", 0);
$this->Name = "FileBrowser";
}
function RetrieveConfigurationPropertiesFromXml($Path) {
$FauxContext = "0";
if ($this->ConfigFile == "") $this->ErrorManager->AddError($FauxContext,$this->Name, "RetrieveConfigurationPropertiesFromXml", "You must supply a path to the configuration file");
// Retrieve config file contents
$File = new File();
$File->Name = $this->ConfigFile;
$File->Path = $Path;
$FileManager = new FileManager();
$FileManager->ErrorManager = &$this->ErrorManager;
$File = $FileManager->Get($File);
// If there were errors retrieving the config file and we're in the CWD, report an error
if ($this->ErrorManager->ErrorCount > 0 && $Path == $this->CurrentWorkingDirectory) {
$this->ErrorManager->Clear();
$this->ErrorManager->AddError($FauxContext,$this->Name, "RetrieveConfigurationPropertiesFromXml", "The root configuration file could not be found/read (_config.xml).");
// If failed to retrieve the file from a non-root directory,
// just accept the root file
} elseif ($this->ErrorManager->ErrorCount > 0) {
$this->ErrorManager->Clear();
// If no errors occurred, continue to retrieve new configuration settings
} else {
// Create an XML Parser to retrieve configuration settings
$XMan = new XmlManager();
$XMan->ErrorManager = &$this->ErrorManager;
$MyConfig = $XMan->ParseNode($File->Body);
if ($MyConfig && $this->ErrorManager->ErrorCount == 0) {
$this->StyleUrl = $XMan->GetNodeValueByName($MyConfig, "StyleUrl");
$this->PageTitle = $XMan->GetNodeValueByName($MyConfig, "PageTitle");
$this->PageIntroduction = $XMan->GetNodeValueByName($MyConfig, "PageIntroduction");
$this->PageIntroduction = str_replace("[","<", $this->PageIntroduction);
$this->PageIntroduction = str_replace("]",">", $this->PageIntroduction);
$this->PageIntroduction = str_replace("\n","<br />", $this->PageIntroduction);
$this->DisplayHiddenFiles = $XMan->GetNodeValueByName($MyConfig, "DisplayHiddenFiles");
$this->BrowseSubFolders = $XMan->GetNodeValueByName($MyConfig, "BrowseSubFolders");
$this->SortBy = $XMan->GetNodeValueByName($MyConfig, "SortBy");
$this->SortDirection = $XMan->GetNodeValueByName($MyConfig, "SortDirection");
$this->DateFormat = $XMan->GetNodeValueByName($MyConfig, "DateFormat");
$this->UsePageIntroductionInSubFolders = ForceBool($XMan->GetNodeValueByName($MyConfig, "UsePageIntroductionInSubFolders"), false);
$this->PluginHeight = ForceInt($XMan->GetNodeValueByName($MyConfig, "PluginHeight"), $this->PluginHeight);
$this->PluginWidth = ForceInt($XMan->GetNodeValueByName($MyConfig, "PluginWidth"), $this->PluginWidth);
$this->FilesPerPage = ForceIncomingInt("fpp", ForceInt($XMan->GetNodeValueByName($MyConfig, "FilesPerPage"), $this->FilesPerPage));
$this->MaxFilesPerPage = ForceInt($XMan->GetNodeValueByName($MyConfig, "MaxFilesPerPage"), $this->MaxFilesPerPage);
$this->FitImagesToPage = ForceBool($XMan->GetNodeValueByName($MyConfig, "FitImagesToPage"), $this->FitImagesToPage);
$this->UseThumbnails = ForceBool($XMan->GetNodeValueByName($MyConfig, "UseThumbnails"), $this->UseThumbnails);
$this->HideFiles = explode(",", $XMan->GetNodeValueByName($MyConfig, "HideFiles"));
for ($i = 0; $i < count($this->HideFiles); $i++) {
$this->FullyQualifiedHideFiles[] = $this->CurrentBrowsingDirectory."/".$this->HideFiles[$i];
}
}
}
return $this->ErrorManager->Iif();
}
}
// Define required variables for the application
$ErrorManager = new ErrorManager();
$Config = new Configuration();
$Config->ErrorManager = &$ErrorManager;