This repository has been archived by the owner on Jun 14, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbackend.functions.php
415 lines (373 loc) · 13.5 KB
/
backend.functions.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
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
<?php
/**
* @module foldergallery
* @version see info.php of this module
* @author cms-lab (initiated by Jürg Rast)
* @copyright 2010-2018 cms-lab
* @license GNU General Public License
* @license terms see info.php of this module
* @platform see info.php of this module
*
*/
// include class.secure.php to protect this file and the whole CMS!
if (defined('LEPTON_PATH')) {
include(LEPTON_PATH.'/framework/class.secure.php');
} else {
$oneback = "../";
$root = $oneback;
$level = 1;
while (($level < 10) && (!file_exists($root.'/framework/class.secure.php'))) {
$root .= $oneback;
$level += 1;
}
if (file_exists($root.'/framework/class.secure.php')) {
include($root.'/framework/class.secure.php');
} else {
trigger_error(sprintf("[ <b>%s</b> ] Can't include class.secure.php!", $_SERVER['SCRIPT_NAME']), E_USER_ERROR);
}
}
// end include class.secure.php
require_once (LEPTON_PATH.'/modules/foldergallery/functions.php');
/**
* Scans one directory rekursive with options
* @return array
* @param string $rootDir
* @param array $allowedExtensions[optional]
* @param array $invisibleFileNames[optional
* @param integer $modus[option] 0 = Files, 1 = Files/Folders, 2 = Folders
* @param bool $rekursiv[option] default = true
* @param array $allData[option]
*/
function scanDirectories($rootDir, $allowedExtensions = array (), $invisibleFileNames = array (),
$modus = 1, $rekursiv = true, $allData = array ()) {
// run through content of root directory
$dirContent = scandir($rootDir);
foreach ($dirContent as $content) {
// filter all files not accessible
$path = $rootDir.'/'.$content;
if (!in_array($content, $invisibleFileNames)) {
// if content is file & readable, add to array
if (is_file($path) && is_readable($path)) {
$content_chunks = explode(".", $content);
$ext = $content_chunks[count($content_chunks)-1];
$ext = strtolower($ext);
// only include files with desired extensions
if (in_array($ext, $allowedExtensions)) {
// save file name with path
if ($modus < 2) {
$allData[] = $path;
}
}
// if content is a directory and readable, add path and name
}
elseif (is_dir($path) && is_readable($path)) {
if ($modus > 0) {
$allData[] = $path;
}
// recursive callback to open new directory
if ($rekursiv) {
$allData = scanDirectories($path, $allowedExtensions, $invisibleFileNames, $modus, $rekursiv, $allData);
}
}
}
}
return $allData;
}
/**
*
* @return
* @param string $rootDir
* @param array $allowedExtensions
* @param array $invisibleFileNames
* @param integer $modus[optional]
* @param bool $rekursiv[optional]
*/
function getFolderData($rootDir, $allowedExtensions, $invisibleFileNames, $modus = 1, $rekursiv = true) {
$daten = array ();
$daten = scanDirectories($rootDir, $allowedExtensions, $invisibleFileNames, $modus, $rekursiv);
foreach ($daten as & $value) {
$value = str_replace($rootDir, '', $value);
}
return $daten;
}
/**
* Löscht das angegeben Verzeichnis und alle darin enthaltenen Unterverzeichnisse,
* sowie die darin enthaltenen Files
* @return int Fehlernummer
* @param string $path Pfad zum Ornder
*/
function deleteFolder($path) {
// schau' nach, ob das ueberhaupt ein Verzeichnis ist
if (!is_dir($path)) {
return -1;
}
// oeffne das Verzeichnis
$dir = opendir($path);
// Fehler?
if (!$dir) {
return -2;
}
// gehe durch das Verzeichnis
while (($entry = @readdir($dir)) !== false) {
// wenn der Eintrag das aktuelle Verzeichnis oder das Elternverzeichnis
// ist, ignoriere es
if ($entry == '.' || $entry == '..')
continue ;
// wenn der Eintrag ein Verzeichnis ist, dann
if (is_dir($path.'/'.$entry)) {
// rufe mich selbst auf
// $res = deleteFolder($path.'/'.$entry);
// wenn ein Fehler aufgetreten ist
if ($res == -1) { // dies duerfte gar nicht passieren
closedir($dir); // Verzeichnis schliessen
return -2; // normalen Fehler melden
}
else if ($res == -2) { // Fehler?
closedir($dir); // Verzeichnis schliessen
return -2; // Fehler weitergeben
}
else if ($res == -3) { // nicht unterstuetzer Dateityp?
closedir($dir); // Verzeichnis schliessen
return -3; // Fehler weitergeben
}
else if ($res != 0) { // das duerfe auch nicht passieren...
closedir($dir); // Verzeichnis schliessen
return -2; // Fehler zurueck
}
}
else if (is_file($path.'/'.$entry) || is_link($path.'/'.$entry)) {
// ansonsten loesche diese Datei / diesen Link
$res = unlink($path.'/'.$entry);
// Fehler?
if (!$res) {
closedir($dir); // Verzeichnis schliessen
return -2; // melde ihn
}
}
else {
// ein nicht unterstuetzer Dateityp
closedir($dir); // Verzeichnis schliessen
return -3; // tut mir schrecklich leid...
}
}
// schliesse nun das Verzeichnis
closedir($dir);
// versuche nun, das Verzeichnis zu loeschen
$res = rmdir($path);
// gab's einen Fehler?
if (!$res) {
return -2; // melde ihn
}
// alles ok
return 0;
}
/**
* Syncronisiert eine gesamte Bildergalerie, löscht alte Einträge oder erstellt neu in der DB
* Dabei wird das Dateisystem als Grundlage genommen.
* @return bool true = sucsess
* @param array $galerie Einstellungen dieser Galerie
* @param string $categorie ab welchem ordner gescannt werden soll, relativ zum Stammordner
* @param integer $modus[optional] 0,1,2 Modus
* @param bool $rekursiv[optional] soll rekursiv gesucht werden
*
* @see scanDirectories()
* @see deleteFolder()
*/
function syncDB($galerie, $searchCategorie = '', $modus = 1, $rekursiv = true) {
// Auf diese Variablen muss zugegriffen werden
global $database;
global $invisibleFileNames;
global $url;
global $path;
global $thumbdir;
// Daten Vorbereiten
$rootDir = foldergallery::FG_PATH.$galerie['root_dir'];
$searchFolder = $rootDir.$searchCategorie;
$extensions = explode(',', $galerie['extensions']);
$invisible = array_merge( foldergallery::INVISIBLE_FILE_NAMES, explode(',', $galerie['invisible']));
//Alle Angaben aus dem Filesystem holen
$allData = getFolderData($searchFolder, $extensions, $invisible);
//natsort($allData); # ! Bringt es das?
//Angaben auswerten
$categories = array ();
$files = array ();
foreach ($allData as $data) {
$einzelteile = explode('/', $data);
$letztesElement = count($einzelteile)-1;
if (substr_count($einzelteile[$letztesElement], '.') == 0) {
//Hier werden alle Kategorien angelegt
$catName = $einzelteile[$letztesElement];
unset ($einzelteile[$letztesElement]);
$catParents = implode('/', $einzelteile);
$catParents = $searchCategorie.$catParents;
$categories[] = array (
'categorie'=>$catName,
'parent'=>$catParents,
'is_empty'=>1
);
} else {
//Hier gehts um die Files
$fileName = $einzelteile[$letztesElement];
//if ($fileName == 'folderpreview.jpg') continue;
unset ($einzelteile[$letztesElement]);
$parent = implode('/', $einzelteile);
$parent = $searchCategorie.$parent;
$fileLink = foldergallery::FG_URL.$galerie['root_dir'].$parent."/".$fileName;
$fileLink = str_replace(LEPTON_URL, '', $fileLink);
$files[] = array (
'file_name'=>$fileName,
'file_link'=>$fileLink,
'parent'=>$parent
);
}
}
// Kategorien mit Bildern finden
foreach ($categories as & $nameCat) {
$catString = $nameCat['parent']."/".$nameCat['categorie'];
foreach ($files as $file) {
if ($file['parent'] == $catString) {
$nameCat['is_empty'] = 0;
break;
}
}
}
// Falls Parents, diese finden
foreach ($categories as & $nameCat) {
$catName = $nameCat['categorie'];
foreach ($categories as $searchCat) {
if ((strpos($searchCat['parent'], $catName) !== false)AND(!$searchCat['is_empty'])) {
$nameCat['is_empty'] = 0;
break;
}
}
}
// Kategorien mit DB synchronisieren
// Neuer SQL vorbereiten
$notDeleteArray = array();
$insertSQL = "INSERT INTO ".TABLE_PREFIX."mod_foldergallery_categories (section_id, categorie, parent, cat_name, is_empty) VALUES";
$deleteSQL = "DELETE FROM ".TABLE_PREFIX."mod_foldergallery_categories WHERE parent_id > '0' AND section_id=".$galerie['section_id'] ;
$deleteLaenge = strlen($deleteSQL);
$insertLaenge = strlen($insertSQL);
foreach ($categories as $cat) {
$sql = 'SELECT * FROM '.TABLE_PREFIX.'mod_foldergallery_categories'
.' WHERE section_id='.$galerie['section_id'].' AND'
.' categorie="'.$cat['categorie'].'" AND'
.' parent="'.$cat['parent'].'"'
.' LIMIT 1;';
$query = $database->query($sql);
if($result = $query->fetchRow()) {
if($result['is_empty'] == $cat['is_empty']){
$notDeleteArray[] = $result['id'];
} else {
// Falls die Kategorie schon existierte nehmen wir für die neuen Einträge diejenigen von der DB
$insertSQL .= " (".$result['section_id'].", '".$result['categorie']."', '".$result['parent']."', '".$result['cat_name']."', ".$cat['is_empty']."),";
// Diese Datensätze müssen aber zuerst gelöscht werden, da sie sonst doppelt vorkommen würden!
}
} else {
// Sonst erstellen wir einfach einen neuen Standarddatensatz
$cat_name = str_replace('_', ' ',$cat['categorie']);
$cat_name = str_replace('-', ' ',$cat_name);
$insertSQL .= " (".$galerie['section_id'].", '".$cat['categorie']."', '".$cat['parent']."', '".$cat_name."', ".$cat['is_empty']."),";
}
}
// SQL zum löschen der alten Einträge
if(!empty($notDeleteArray)) {
$deleteSQL .= ' AND (id NOT IN( '.implode(',',$notDeleteArray).'))';
}
if($searchCategorie != ''){
$deleteSQL.= ' AND (parent REGEXP("'.$searchCategorie.'"))';
}
if(strlen($deleteSQL) != $deleteLaenge){
$deleteSQL .= ';';
$database->query($deleteSQL);
}
if(strlen($insertSQL) != $insertLaenge){
// Jetzt fügen wir die neuen Einträge hinzu
$insertSQL = substr($insertSQL, 0, -1).";";
$database->query($insertSQL);
}
// So, dass waren die Kategorien, nun sind die Bilder an der Reihe
//Die Felder "file_link" und "thumb_link" sind obsolet
//Jetzt noch die Parents zu Ziffern umwandeln:
//Wieder aus der Datenbank laden:
$catpathArray = array();
$sql = 'SELECT id, categorie, parent FROM '.TABLE_PREFIX.'mod_foldergallery_categories WHERE section_id='.$galerie['section_id'];
$query = $database->query($sql);
while($result = $query->fetchRow()) {
$p = $result['parent'].'/'.$result['categorie'] ;
if ( $result['parent'] == -1) {$p = '';}
$catpathArray[$p] = $result['id'];
}
$notDeleteArray = array();
$insertSQL = "INSERT INTO ".TABLE_PREFIX."mod_foldergallery_files (file_name, parent_id, caption) VALUES";
//-------------------------------------------------------------------------------------------------------
//Das Macht ein Problem, sobald es mehrere Seiten mit FG gibt.
//Das es keine Section_id mehr gibt, werden alle Einträge von anderen Sections ebenfalls gelöscht.
//Das muss anders gelöst werden, ich weiß aber nicht wie.
$deleteSQL = "DELETE FROM ".TABLE_PREFIX."mod_foldergallery_files WHERE (id NOT IN";
//Siehe unten, wird derzeit nicht ausgeführt
//-------------------------------------------------------------------------------------------------------
$laenge = strlen($insertSQL);
$count = 0;
foreach($files as $file) {
if (!isset($catpathArray[$file['parent']])) {
$parent_id = 0;
}else{
$parent_id = $catpathArray[$file['parent']];
//echo '|'.$file['parent'].'|';
//var_dump($file);
//die();
}
$sql = 'SELECT * FROM '.TABLE_PREFIX.'mod_foldergallery_files WHERE parent_id ="'.$parent_id.'" AND file_name="'.$file['file_name'].'" LIMIT 1;';
$query = $database->query($sql);
if($result = $query->fetchRow()){
//$notDeleteArray[] = $result['id'];
} else {
$count ++;
$insertSQL .= " ('".$file['file_name']."', '".$parent_id."', ''),";
//if ($count == 2) echo $insertSQL;
}
}
// SQL für neue Einträge
$insertSQL = substr($insertSQL, 0, -1).";";
if($laenge != strlen($insertSQL)) {
echo "added ".$count." files";
$database->query($insertSQL);
}
delete_files_with_no_cat();
return true;
}
function delete_files_with_no_cat() {
global $database;
$sql = 'SELECT id FROM '.TABLE_PREFIX.'mod_foldergallery_categories';
$query = $database->query($sql);
$notDeleteArray = array();
while($result = $query->fetchRow()) {
$notDeleteArray[] = $result['id'];
}
if(!empty($notDeleteArray)) {
$deleteSQL = "DELETE FROM ".TABLE_PREFIX."mod_foldergallery_files WHERE (parent_id NOT IN";
$deleteSQL .= '(0,'.implode(',',$notDeleteArray).'));';
$database->query($deleteSQL);
}
}
function rek_db_delete($cat_id) {
global $database;
$sql = 'SELECT section_id, categorie, parent, has_child FROM '.TABLE_PREFIX.'mod_foldergallery_categories WHERE id='.$cat_id.';';
$query = $database->query($sql);
if($result = $query->fetchRow()) {
$parent = $result['parent'].'/'.$result['categorie'];
$delete_file_sql = 'DELETE FROM '.TABLE_PREFIX.'mod_foldergallery_files WHERE parent_id="'.$cat_id.'";';
$database->query($delete_file_sql);
if($result['has_child']){
$select_sql = 'SELECT id FROM '.TABLE_PREFIX.'mod_foldergallery_categories WHERE parent_id='.$cat_id.';';
$query = $database->query($select_sql);
while($select_result = $query->fetchRow()) {
rek_db_delete($select_result['id']);
}
}
}
$deletesql = 'DELETE FROM '.TABLE_PREFIX.'mod_foldergallery_categories WHERE id='.$cat_id;
$database->query($deletesql);
}
?>