Succes!.class.php
Gesponsorde koppelingen
PHP script bestanden
Code (php)
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
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
<?PHP
// Abstracte klasse voor een file of een map
abstract class FileNode{
protected $name;
protected $parentDir = null;
public function __construct($name){
$this->name = $name;
}
public function getName(){
return $this->name;
}
public function getPath(){
$path = '';
// Als er een map boven zit, stop deze dan voor het pad
if(!is_null($this->parentDir))
$path .= $this->parentDir->getPath().'/';
$path .= $this->name;
}
public function setParentDir(Dir $dir){
$this->parentDir = $dir;
}
}
class File extends FileNode{
protected $ext;
public function __construct($name){
$this->ext = substr($name, strrpos($name, '.'));
parent::__construct($name);
}
public function getExtension(){
return $this->ext;
}
}
class Dir extends FileNode implements IteratorAggregate{
protected $dirchilds = array();
protected $filechilds = array();
protected $name;
public function __construct($name){
if(strrpos($name,'/')!==false){
$this->name=substr($name,strrpos($name,'/')+1);
}else{
$this->name=$name;
}
}
public function addChild(FileNode $node){
$node->setParentDir($this);
if($node instanceof Dir){
$this->dirchilds[] = $node;
}elseif($node instanceof File){
$this->filechilds[] = $node;
}else{
throw new Exception('Wrong instance given to Dir::addChild()');
}
}
public function getChilds(){
return $this->childs;
}
public function getIterator(){
return new ArrayIterator($this->childs);
}
public function getName(){
return $this->name;
}
public function buildArray($asc=1){
$array = array();
if(count($this->dirchilds)==0&&count($this->filechilds)==0){
return 'No files found';
}else{
if($asc==1){
sort($this->dirchilds);
sort($this->filechilds);
foreach($this->dirchilds as $child)
$array[$child->getName()] = $child->buildArray();
foreach($this->filechilds as $child)
$array[] = $child->getName();
}else{
rsort($this->dirchilds);
rsort($this->filechilds);
foreach($this->filechilds as $child)
$array[] = $child->getName();
foreach($this->dirchilds as $child)
$array[$child->getName()] = $child->buildArray();
}
return $array;
}
}
}
class FileNodeBuilder{
private $_dir;
public function build($path,$recursive=true){
if(!is_dir($path))
throw new Exception($path.' is no directory');
if(!is_readable($path))
throw new Exception($path.' is not readable');
$dir = new Dir($path);
foreach(scandir($path,1) as $file){
$newPath = $path.'/'.$file;
if(!($file==='.'||$file==='..')){
if(is_dir($newPath)&&$recursive)
$dir->addChild($this->build($newPath));
if(is_dir($newPath)&&(!$recursive))
$dir->addChild(new Dir($file));
if(is_file($newPath))
$dir->addChild(new File($file));
}
}
return $dir;
}
}
?>
// Abstracte klasse voor een file of een map
abstract class FileNode{
protected $name;
protected $parentDir = null;
public function __construct($name){
$this->name = $name;
}
public function getName(){
return $this->name;
}
public function getPath(){
$path = '';
// Als er een map boven zit, stop deze dan voor het pad
if(!is_null($this->parentDir))
$path .= $this->parentDir->getPath().'/';
$path .= $this->name;
}
public function setParentDir(Dir $dir){
$this->parentDir = $dir;
}
}
class File extends FileNode{
protected $ext;
public function __construct($name){
$this->ext = substr($name, strrpos($name, '.'));
parent::__construct($name);
}
public function getExtension(){
return $this->ext;
}
}
class Dir extends FileNode implements IteratorAggregate{
protected $dirchilds = array();
protected $filechilds = array();
protected $name;
public function __construct($name){
if(strrpos($name,'/')!==false){
$this->name=substr($name,strrpos($name,'/')+1);
}else{
$this->name=$name;
}
}
public function addChild(FileNode $node){
$node->setParentDir($this);
if($node instanceof Dir){
$this->dirchilds[] = $node;
}elseif($node instanceof File){
$this->filechilds[] = $node;
}else{
throw new Exception('Wrong instance given to Dir::addChild()');
}
}
public function getChilds(){
return $this->childs;
}
public function getIterator(){
return new ArrayIterator($this->childs);
}
public function getName(){
return $this->name;
}
public function buildArray($asc=1){
$array = array();
if(count($this->dirchilds)==0&&count($this->filechilds)==0){
return 'No files found';
}else{
if($asc==1){
sort($this->dirchilds);
sort($this->filechilds);
foreach($this->dirchilds as $child)
$array[$child->getName()] = $child->buildArray();
foreach($this->filechilds as $child)
$array[] = $child->getName();
}else{
rsort($this->dirchilds);
rsort($this->filechilds);
foreach($this->filechilds as $child)
$array[] = $child->getName();
foreach($this->dirchilds as $child)
$array[$child->getName()] = $child->buildArray();
}
return $array;
}
}
}
class FileNodeBuilder{
private $_dir;
public function build($path,$recursive=true){
if(!is_dir($path))
throw new Exception($path.' is no directory');
if(!is_readable($path))
throw new Exception($path.' is not readable');
$dir = new Dir($path);
foreach(scandir($path,1) as $file){
$newPath = $path.'/'.$file;
if(!($file==='.'||$file==='..')){
if(is_dir($newPath)&&$recursive)
$dir->addChild($this->build($newPath));
if(is_dir($newPath)&&(!$recursive))
$dir->addChild(new Dir($file));
if(is_file($newPath))
$dir->addChild(new File($file));
}
}
return $dir;
}
}
?>