/web/htdocs/www.euroroma.net/home/zenphoto/zp-core/class-gallery.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
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
<?php

/**
 * Gallery Class
 * @package classes
 */
// force UTF-8 Ø
$_zp_gallery = new Gallery();

class 
Gallery {

    var 
$albumdir NULL;
    var 
$table 'gallery';
    protected 
$albums NULL;
    protected 
$theme;
    protected 
$themes;
    protected 
$lastalbumsort NULL;
    protected 
$data = array();
    protected 
$unprotected_pages = array();

    
/**
     * Creates an instance of a gallery
     *
     * @return Gallery
     */
    
function __construct() {
// Set our album directory
        
$this->albumdir ALBUM_FOLDER_SERVERPATH;
        
$data getOption('gallery_data');
        if (
$data) {
            
$this->data getSerializedArray($data);
        }
        if (isset(
$this->data['unprotected_pages'])) {
            
$pages getSerializedArray($this->data['unprotected_pages']);
            if (
is_array($pages))
                
$this->unprotected_pages $pages//    protect against a failure
        
}
    }

    
/**
     * Returns the gallery title
     *
     * @return string
     */
    
function getTitle($locale NULL) {
        
$text $this->get('gallery_title');
        if (
$locale !== 'all') {
            
$text get_language_string($text$locale);
        }
        
$text zpFunctions::unTagURLs($text);
        return 
$text;
    }

    
/**
     * Returns a tag stripped title
     * @param string $locale
     * @return string
     */
    
function getBareTitle($locale NULL) {
        return 
strip_tags($this->getTitle($locale));
    }

    function 
setTitle($title) {
        
$this->set('gallery_title'zpFunctions::tagURLs($title));
    }

    
/**
     * Returns the gallery description
     *
     * @return string
     */
    
function getDesc($locale NULL) {
        
$text $this->get('Gallery_description');
        if (
$locale == 'all') {
            return 
zpFunctions::unTagURLs($text);
        } else {
            return 
applyMacros(zpFunctions::unTagURLs(get_language_string($text$locale)));
        }
        return 
$text;
    }

    
/**
     * Sets the gallery description
     * @param string $desc
     */
    
function setDesc($desc) {
        
$desc zpFunctions::tagURLs($desc);
        
$this->set('Gallery_description'$desc);
    }

    
/**
     * Returns the hashed password for guest gallery access
     *
     */
    
function getPassword() {
        if (
GALLERY_SECURITY != 'public') {
            return 
NULL;
        } else {
            return 
$this->get('gallery_password');
        }
    }

    function 
setPassword($value) {
        
$this->set('gallery_password'$value);
    }

    
/**
     * Returns the hind associated with the gallery password
     *
     * @return string
     */
    
function getPasswordHint($locale NULL) {
        
$text $this->get('gallery_hint');
        if (
$locale !== 'all') {
            
$text get_language_string($text$locale);
        }
        
$text zpFunctions::unTagURLs($text);
        return 
$text;
    }

    function 
setPasswordHint($value) {
        
$this->set('gallery_hint'zpFunctions::tagURLs($value));
    }

    function 
getUser() {
        return(
$this->get('gallery_user'));
    }

    function 
setUser($value) {
        
$this->set('gallery_user'$value);
    }

    
/**
     * Returns the main albums directory
     *
     * @return string
     */
    
function getAlbumDir() {
        return 
$this->albumdir;
    }

    
/**
     * Returns the DB field corresponding to the album sort type desired
     *
     * @param string $sorttype the desired sort
     * @return string
     */
    
function getAlbumSortKey($sorttype null) {
        if (empty(
$sorttype)) {
            
$sorttype $this->getSortType();
        }
        return 
lookupSortKey($sorttype'sort_order''albums');
    }

    function 
getSortDirection() {
        return 
$this->get('sort_direction');
    }

    function 
setSortDirection($value) {
        
$this->set('sort_direction', (int) ($value && true));
    }

    function 
getSortType() {
        
$type $this->get('gallery_sorttype');
        return 
$type;
    }

    function 
setSortType($value) {
        
$this->set('gallery_sorttype'$value);
    }

    
/**
     * Get Albums will create our $albums array with a fully populated set of Album
     * names in the correct order.
     *
     * Returns an array of albums (a pages worth if $page is not zero)
     *
     * @param int $page An option parameter that can be used to return a slice of the array.
     * @param string $sorttype the kind of sort desired
     * @param string $direction set to a direction to override the default option
     * @param bool $care set to false if the order of the albums does not matter
     * @param bool $mine set true/false to override ownership
     *
     * @return  array
     */
    
function getAlbums($page 0$sorttype null$direction null$care true$mine NULL) {

// Have the albums been loaded yet?
        
if (is_null($this->albums) || $care && $sorttype $direction !== $this->lastalbumsort) {

            
$albumnames $this->loadAlbumNames();
            
$key $this->getAlbumSortKey($sorttype);
            
$albums $this->sortAlbumArray(NULL$albumnames$key$direction$mine);

// Store the values
            
$this->albums $albums;
            
$this->lastalbumsort $sorttype $direction;
        }

        if (
$page == 0) {
            return 
$this->albums;
        } else {
            return 
array_slice($this->albumsgalleryAlbumsPerPage() * ($page 1), galleryAlbumsPerPage());
        }
    }

    
/**
     * Load all of the albums names that are found in the Albums directory on disk.
     * Returns an array containing this list.
     *
     * @return array
     */
    
private function loadAlbumNames() {
        
$albumdir $this->getAlbumDir();
        
$dir opendir($albumdir);
        if (!
$dir) {
            if (!
is_dir($albumdir)) {
                
$msg .= sprintf(gettext('Error: The \'albums\' directory (%s) cannot be found.'), $this->albumdir);
            } else {
                
$msg .= sprintf(gettext('Error: The \'albums\' directory (%s) is not readable.'), $this->albumdir);
            }
            
zp_error($msg);
        }
        
$albums = array();

        while (
$dirname readdir($dir)) {
            if (
$dirname{0} != '.' && (is_dir($albumdir $dirname) || hasDynamicAlbumSuffix($dirname))) {
                
$albums[] = filesystemToInternal($dirname);
            }
        }
        
closedir($dir);
        return 
zp_apply_filter('album_filter'$albums);
    }

    
/**
     * Returns the a specific album in the array indicated by index.
     * Takes care of bounds checking, no need to check input.
     *
     * @param int $index the index of the album sought
     * @return Album
     */
    
function getAlbum($index) {
        
$this->getAlbums();
        if (
$index >= && $index $this->getNumAlbums()) {
            return 
newAlbum($this->albums[$index]);
        } else {
            return 
false;
        }
    }

    
/**
     * Returns the total number of TOPLEVEL albums in the gallery (does not include sub-albums)
     * @param bool $db whether or not to use the database (includes ALL detected albums) or the directories
     * @param bool $publishedOnly set to true to exclude un-published albums
     * @return int
     */
    
function getNumAlbums($db false$publishedOnly false) {
        
$count = -1;
        if (!
$db) {
            
$this->getAlbums(0NULLNULLfalse);
            
$count count($this->albums);
        } else {
            
$sql '';
            if (
$publishedOnly) {
                
$sql 'WHERE `show`=1';
            }
            
$count db_count('albums'$sql);
        }
        return 
$count;
    }

    
/**
     * Populates the theme array and returns it. The theme array contains information about
     * all the currently available themes.
     * @return array
     */
    
function getThemes() {
        if (empty(
$this->themes)) {
            
$themedir SERVERPATH "/themes";
            
$themes = array();
            if (
$dp = @opendir($themedir)) {
                while (
false !== ($dir readdir($dp))) {
                    if (
substr($dir01) != "." && is_dir("$themedir/$dir")) {
                        
$themefile $themedir "/$dir/theme_description.php";
                        
$dir8 filesystemToInternal($dir);
                        if (
file_exists($themefile)) {
                            
$theme_description = array();
                            require(
$themefile);
                            
$themes[$dir8] = $theme_description;
                        } else {
                            
$themes[$dir8] = array('name' => gettext('Unknown'), 'author' => gettext('Unknown'), 'version' => gettext('Unknown'), 'desc' => gettext('<strong>Missing theme info file!</strong>'), 'date' => gettext('Unknown'));
                        }
                    }
                }
                
ksort($themesSORT_LOCALE_STRING);
            }
            
$this->themes $themes;
        }
        return 
$this->themes;
    }

    
/**
     * Returns the foldername of the current theme.
     * if no theme is set, returns "default".
     * @return string
     */
    
function getCurrentTheme() {
        
$theme NULL;
        if (empty(
$this->theme)) {
            
$theme $this->get('current_theme');
            if (empty(
$theme) || !file_exists(SERVERPATH "/" THEMEFOLDER "/$theme")) {
                
$themes array_keys($this->getThemes());
                if (!empty(
$themes)) {
                    
$theme array_shift($themes);
                }
            }
            
$this->theme $theme;
        }
        return 
$this->theme;
    }

    
/**
     * Sets the current theme
     * @param string the name of the current theme
     */
    
function setCurrentTheme($theme) {
        
$this->set('current_theme'$this->theme $theme);
    }

    
/**
     * Returns the number of images in the gallery
     * @param int $what 0: all images from the database
     *                                     1: published images from the database
     *                                     2: "viewable" images via the object model
     * @return int
     */
    
function getNumImages($what 0) {
        switch ((int) 
$what) {
            case 
0:
                return 
db_count('images''');
                break;
            case 
1:
                
$rows query("SELECT `id` FROM " prefix('albums') . " WHERE `show`=0");
                
$idlist = array();
                
$exclude 'WHERE `show`=1';
                if (
$rows) {
                    while (
$row db_fetch_assoc($rows)) {
                        
$idlist[] = $row['id'];
                    }
                    if (!empty(
$idlist)) {
                        
$exclude .= ' AND `id` NOT IN (' implode(','$idlist) . ')';
                    }
                    
db_free_result($rows);
                }
                return 
db_count('images'$exclude);
                break;
            case 
2:
                
$count 0;
                
$albums $this->getAlbums(0);
                foreach (
$albums as $analbum) {
                    
$album newAlbum($analbum);
                    if (!
$album->isDynamic()) {
                        
$count $count self::getImageCount($album);
                    }
                }
                return 
$count;
                break;
        }
    }

    private function 
getImageCount($album) {
        
$count $album->getNumImages();
        
$albums $album->getAlbums(0);
        foreach (
$albums as $analbum) {
            
$album newAlbum($analbum);
            if (!
$album->isDynamic()) {
                
$count $count self::getImageCount($album);
            }
        }
        return 
$count;
    }

    
/**
     * Returns the count of comments
     *
     * @param bool $moderated set true if you want to see moderated comments
     * @return array
     */
    
function getNumComments($moderated false) {
        
$sql '';
        if (!
$moderated) {
            
$sql "WHERE `inmoderation`=0";
        }
        return 
db_count('comments'$sql);
    }

    
/** For every album in the gallery, look for its file. Delete from the database
     * if the file does not exist. Do the same for images. Clean up comments that have
     * been left orphaned.
     *
     * Returns true if the operation was interrupted because it was taking too long
     *
     * @param bool $cascade garbage collect every image and album in the gallery.
     * @param bool $complete garbage collect every image and album in the *database* - completely cleans the database.
     * @param  int $restart Image ID to restart scan from
     * @return bool
     */
    
function garbageCollect($cascade true$complete false$restart '') {
        global 
$_zp_gallery;
        if (empty(
$restart)) {
            
setOption('last_garbage_collect'time());
            
/* purge old search cache items */
            
$sql 'DELETE FROM ' prefix('search_cache');
            if (!
$complete) {
                
$sql .= ' WHERE `date`<' db_quote(date('Y-m-d H:m:s'time() - SEARCH_CACHE_DURATION 60));
            }
            
$result query($sql);

            
/* clean the comments table */
            
$this->commentClean('images');
            
$this->commentClean('albums');
            
$this->commentClean('news');
            
$this->commentClean('pages');
// clean up obj_to_tag
            
$dead = array();
            
$result query("SELECT * FROM " prefix('obj_to_tag'));
            if (
$result) {
                while (
$row db_fetch_assoc($result)) {
                    
$tbl $row['type'];
                    
$dbtag query_single_row("SELECT `id` FROM " prefix('tags') . " WHERE `id`='" $row['tagid'] . "'"false);
                    if (!
$dbtag) {
                        
$dead[] = $row['id'];
                    }
                    
$dbtag query_single_row("SELECT `id` FROM " prefix($tbl) . " WHERE `id`='" $row['objectid'] . "'"false);
                    if (!
$dbtag) {
                        
$dead[] = $row['id'];
                    }
                }
                
db_free_result($result);
            }
            if (!empty(
$dead)) {
                
$dead array_unique($dead);
                
query('DELETE FROM ' prefix('obj_to_tag') . ' WHERE `id`=' implode(' OR `id`='$dead));
            }
// clean up admin_to_object
            
$dead = array();
            
$result query("SELECT * FROM " prefix('admin_to_object'));
            if (
$result) {
                while (
$row db_fetch_assoc($result)) {
                    
$dbtag query_single_row("SELECT * FROM " prefix('administrators') . " WHERE `id`='" $row['adminid'] . "'"false);
                    if (!
$dbtag) {
                        
$dead[] = $row['id'];
                    }
                    
$tbl $row['type'];
                    
$dbtag query_single_row("SELECT `id` FROM " prefix($tbl) . " WHERE `id`='" $row['objectid'] . "'"false);
                    if (!
$dbtag) {
                        
$dead[] = $row['id'];
                    }
                }
                
db_free_result($result);
            }
            if (!empty(
$dead)) {
                
$dead array_unique($dead);
                
query('DELETE FROM ' prefix('admin_to_object') . ' WHERE `id`=' implode(' OR `id`='$dead));
            }
// clean up news2cat
            
$dead = array();
            
$result query("SELECT * FROM " prefix('news2cat'));
            if (
$result) {
                while (
$row db_fetch_assoc($result)) {
                    
$dbtag query_single_row("SELECT `id` FROM " prefix('news') . " WHERE `id`='" $row['news_id'] . "'"false);
                    if (!
$dbtag) {
                        
$dead[] = $row['id'];
                    }
                    
$dbtag query_single_row("SELECT `id` FROM " prefix('news_categories') . " WHERE `id`='" $row['cat_id'] . "'"false);
                    if (!
$dbtag) {
                        
$dead[] = $row['id'];
                    }
                }
                
db_free_result($result);
            }
            if (!empty(
$dead)) {
                
$dead array_unique($dead);
                
query('DELETE FROM ' prefix('news2cat') . ' WHERE `id`=' implode(' OR `id`='$dead));
            }

// Check for the existence albums
            
$dead = array();
            
$live = array(''); // purge the root album if it exists
            
$deadalbumthemes = array();
// Load the albums from disk
            
$result query("SELECT * FROM " prefix('albums'));
            while (
$row db_fetch_assoc($result)) {
                
$albumpath internalToFilesystem($row['folder']);
                
$albumpath_valid preg_replace('~/\.*/~''/'$albumpath);
                
$albumpath_valid ltrim(trim($albumpath_valid'/'), './');
                
$illegal $albumpath != $albumpath_valid;
                
$valid file_exists(ALBUM_FOLDER_SERVERPATH $albumpath_valid) && (hasDynamicAlbumSuffix($albumpath_valid) || is_dir(ALBUM_FOLDER_SERVERPATH $albumpath_valid));
                if (
$valid && $illegal) { // maybe there is only one record so we can fix it.
                    
$valid query('UPDATE ' prefix('albums') . ' SET `folder`=' db_quote($albumpath_valid) . ' WHERE `id`=' $row['id'], false);
                    
debugLog(sprintf(gettext('Invalid album folder: %1$s %2$s'), $albumpath$valid gettext('fixed') : gettext('discarded')));
                }
                if (!
$valid || in_array($row['folder'], $live)) {
                    
$dead[] = $row['id'];
                    if (
$row['album_theme'] !== '') { // orphaned album theme options table
                        
$deadalbumthemes[$row['id']] = $row['folder'];
                    }
                } else {
                    
$live[] = $row['folder'];
                }
            }
            
db_free_result($result);

            if (
count($dead) > 0) { /* delete the dead albums from the DB */
                
asort($dead);
                
$criteria '(' implode(','$dead) . ')';
                
$first array_pop($dead);
                
$sql1 "DELETE FROM " prefix('albums') . " WHERE `id` IN $criteria";
                
$n query($sql1);
                if (!
$complete && $n && $cascade) {
                    
$sql2 "DELETE FROM " prefix('images') . " WHERE `albumid` IN $criteria";
                    
query($sql2);
                    
$sql3 "DELETE FROM " prefix('comments') . " WHERE `type`='albums' AND `ownerid` IN $criteria";
                    
query($sql3);
                    
$sql4 "DELETE FROM " prefix('obj_to_tag') . " WHERE `type`='albums' AND `objectid` IN $criteria";
                    
query($sql4);
                }
            }
            if (
count($deadalbumthemes) > 0) { // delete the album theme options tables for dead albums
                
foreach ($deadalbumthemes as $id => $deadtable) {
                    
$sql 'DELETE FROM ' prefix('options') . ' WHERE `ownerid`=' $id;
                    
query($sqlfalse);
                }
            }
        }

        if (
$complete) {
            if (empty(
$restart)) {
                
/* check album parent linkage */
                
$albums $_zp_gallery->getAlbums();
                foreach (
$albums as $album) {
                    
checkAlbumParentid($albumNULL'debuglog');
                }

                
/* refresh 'metadata' albums */
                
$albumids query("SELECT `id`, `mtime`, `folder`, `dynamic` FROM " prefix('albums'));
                if (
$albumids) {
                    while (
$analbum db_fetch_assoc($albumids)) {
                        if ((
$mtime filemtime(ALBUM_FOLDER_SERVERPATH internalToFilesystem($analbum['folder']))) > $analbum['mtime']) {
// refresh
                            
$album newAlbum($analbum['folder']);
                            
$album->set('mtime'$mtime);
                            if (
$this->getAlbumUseImagedate()) {
                                
$album->setDateTime(NULL);
                            }
                            if (
$album->isDynamic()) {
                                
$data file_get_contents($album->localpath);
                                
$thumb getOption('AlbumThumbSelect');
                                
$words $fields '';
                                while (!empty(
$data)) {
                                    
$data1 trim(substr($data0$i strpos($data"\n")));
                                    if (
$i === false) {
                                        
$data1 $data;
                                        
$data '';
                                    } else {
                                        
$data substr($data$i 1);
                                    }
                                    if (
strpos($data1'WORDS=') !== false) {
                                        
$words "words=" urlencode(substr($data16));
                                    }
                                    if (
strpos($data1'THUMB=') !== false) {
                                        
$thumb trim(substr($data16));
                                    }
                                    if (
strpos($data1'FIELDS=') !== false) {
                                        
$fields "&searchfields=" trim(substr($data17));
                                    }
                                }
                                if (!empty(
$words)) {
                                    if (empty(
$fields)) {
                                        
$fields '&searchfields=tags';
                                    }
                                }
                                
$album->set('search_params'$words $fields);
                                
$album->set('thumb'$thumb);
                            }
                            
$album->save();
                            
zp_apply_filter('album_refresh'$album);
                        }
                    }
                    
db_free_result($albumids);
                }

                
/* Delete all image entries that don't belong to an album at all. */

                
$albumids query("SELECT `id` FROM " prefix('albums')); /* all the album IDs */
                
$idsofalbums = array();
                if (
$albumids) {
                    while (
$row db_fetch_assoc($albumids)) {
                        
$idsofalbums[] = $row['id'];
                    }
                    
db_free_result($albumids);
                }
                
$imageAlbums query("SELECT DISTINCT `albumid` FROM " prefix('images')); /* albumids of all the images */
                
$albumidsofimages = array();
                if (
$imageAlbums) {
                    while (
$row db_fetch_assoc($imageAlbums)) {
                        
$albumidsofimages[] = $row['albumid'];
                    }
                    
db_free_result($imageAlbums);
                }
                
$orphans array_diff($albumidsofimages$idsofalbums); /* albumids of images with no album */

                
if (count($orphans) > 0) { /* delete dead images from the DB */
                    
$firstrow array_pop($orphans);
                    
$sql "DELETE FROM " prefix('images') . " WHERE `albumid`='" $firstrow "'";
                    foreach (
$orphans as $id) {
                        
$sql .= " OR `albumid`='" $id "'";
                    }
                    
query($sql);

// Then go into existing albums recursively to clean them... very invasive.
                    
foreach ($this->getAlbums(0) as $folder) {
                        
$album newAlbum($folder);
                        if (!
$album->isDynamic()) {
                            if (
is_null($album->getDateTime())) { // see if we can get one from an image
                                
$images $album->getImages(00'date''DESC');
                                if (
count($images) > 0) {
                                    
$image newImage($albumarray_shift($images));
                                    
$album->setDateTime($image->getDateTime());
                                }
                            }
                            
$album->garbageCollect(true);
                            
$album->preLoad();
                        }
                        
$album->save();
                        
zp_apply_filter('album_refresh'$album);
                    }
                }
            }

            
/* Look for image records where the file no longer exists. While at it, check for images with IPTC data to update the DB */

            
$start array_sum(explode(" "microtime())); // protect against too much processing.
            
if (!empty($restart)) {
                
$restartwhere ' WHERE `id`>' $restart ' AND `mtime`=0';
            } else {
                
$restartwhere ' WHERE `mtime`=0';
            }
            
define('RECORD_LIMIT'5);
            
$sql 'SELECT * FROM ' prefix('images') . $restartwhere ' ORDER BY `id` LIMIT ' . (RECORD_LIMIT 2);
            
$images query($sql);
            if (
$images) {
                
$c 0;
                while (
$image db_fetch_assoc($images)) {
                    
$sql 'SELECT `folder` FROM ' prefix('albums') . ' WHERE `id`="' $image['albumid'] . '";';
                    
$row query_single_row($sql);
                    
$imageName internalToFilesystem(ALBUM_FOLDER_SERVERPATH $row['folder'] . '/' $image['filename']);
                    if (
file_exists($imageName)) {
                        
$mtime filemtime($imageName);
                        if (
$image['mtime'] != $mtime) { // file has changed since we last saw it
                            
$imageobj newImage(newAlbum($row['folder']), $image['filename']);
                            
$imageobj->set('mtime'$mtime);
                            
$imageobj->updateMetaData(); // prime the EXIF/IPTC fields
                            
$imageobj->updateDimensions(); // update the width/height & account for rotation
                            
$imageobj->save();
                            
zp_apply_filter('image_refresh'$imageobj);
                        }
                    } else {
                        
$sql 'DELETE FROM ' prefix('images') . ' WHERE `id`="' $image['id'] . '";';
                        
$result query($sql);
                        
$sql 'DELETE FROM ' prefix('comments') . ' WHERE `type` IN (' zp_image_types('"') . ') AND `ownerid` ="' $image['id'] . '";';
                        
$result query($sql);
                    }
                    if (++
$c >= RECORD_LIMIT) {
                        return 
$image['id']; // avoide excessive processing
                    
}
                }
                
db_free_result($images);
            }
// cleanup the tables
            
$resource db_show('tables');
            if (
$resource) {
                while (
$row db_fetch_assoc($resource)) {
                    
query('OPTIMIZE TABLE ' array_shift($row));
                }
                
db_free_result($resource);
            }
        }
        return 
false;
    }

    function 
commentClean($table) {
        
$ids query('SELECT `id` FROM ' prefix($table)); /* all the IDs */
        
$idsofitems = array();
        if (
$ids) {
            while (
$row db_fetch_assoc($ids)) {
                
$idsofitems[] = $row['id'];
            }
            
db_free_result($ids);
        }
        
$sql "SELECT DISTINCT `ownerid` FROM " prefix('comments') . ' WHERE `type` =' db_quote($table);
        
$commentOwners query($sql); /* all the comments */
        
$idsofcomments = array();
        if (
$commentOwners) {
            while (
$row db_fetch_assoc($commentOwners)) {
                
$idsofcomments [] = $row['ownerid'];
            }
            
db_free_result($commentOwners);
        }
        
$orphans array_diff($idsofcomments$idsofitems); /* owner ids of comments with no owner */

        
if (count($orphans) > 0) { /* delete dead comments from the DB */
            
$sql "DELETE FROM " prefix('comments') . " WHERE `type`=" db_quote($table) . " AND (`ownerid`=" implode(' OR `ownerid`='$orphans) . ')';
            
query($sql);
        }
    }

    
/**
     * Cleans out the cache folder
     *
     * @param string $cachefolder the sub-folder to clean
     */
    
static function clearCache($cachefolder NULL) {
        if (
is_null($cachefolder)) {
            
$cachefolder SERVERCACHE;
        }
        
zpFunctions::removeDir($cachefoldertrue);
    }

    
/**
     * Sort the album array based on either according to the sort key.
     * Default is to sort on the `sort_order` field.
     *
     * Returns an array with the albums in the desired sort order
     *
     * @param  array $albums array of album names
     * @param  string $sortkey the sorting scheme
     * @param string $sortdirection
     * @param bool $mine set true/false to override ownership
     * @return array
     *
     * @author Todd Papaioannou (lucky@luckyspin.org)
     * @since  1.0.0
     */
    
function sortAlbumArray($parentalbum$albums$sortkey '`sort_order`'$sortdirection NULL$mine NULL) {
        if (
count($albums) == 0) {
            return array();
        }
        if (
is_null($mine) && zp_loggedin(MANAGE_ALL_ALBUM_RIGHTS)) {
            
$mine true;
        }
        if (
is_null($parentalbum)) {
            
$albumid ' IS NULL';
            
$obj $this;
            
$viewUnpublished $mine;
        } else {
            
$albumid '=' $parentalbum->getID();
            
$obj $parentalbum;
            
$viewUnpublished = (zp_loggedin() && $obj->albumSubRights() & (MANAGED_OBJECT_RIGHTS_EDIT MANAGED_OBJECT_RIGHTS_VIEW));
        }

        if ((
$sortkey == '`sort_order`') || ($sortkey == 'RAND()')) { // manual sort is always ascending
            
$order false;
        } else {
            if (!
is_null($sortdirection)) {
                
$order strtoupper($sortdirection) == 'DESC';
            } else {
                
$order $obj->getSortDirection('album');
            }
        }
        
$sql 'SELECT * FROM ' prefix("albums") . ' WHERE `parentid`' $albumid ' ORDER BY ' $sortkey ' ' $sortdirection;
        
$result query($sql);
        
$results = array();
//    check database aganist file system
        
while ($row db_fetch_assoc($result)) {
            
$folder $row['folder'];
            if ((
$key array_search($folder$albums)) !== false) { // album exists in filesystem
                
$results[$row['folder']] = $row;
                unset(
$albums[$key]);
            } else { 
// album no longer exists
                
$id $row['id'];
                
query("DELETE FROM " prefix('albums') . " WHERE `id`=$id"); // delete the record
                
query("DELETE FROM " prefix('comments') . " WHERE `type` ='images' AND `ownerid`= '$id'"); // remove image comments
                
query("DELETE FROM " prefix('obj_to_tag') . "WHERE `type`='albums' AND `objectid`=" $id);
                
query("DELETE FROM " prefix('albums') . " WHERE `id` = " $id);
            }
        }
        
db_free_result($result);
        foreach (
$albums as $folder) { // these albums are not in the database
            
$albumobj newAlbum($folder);
            if (
$albumobj->exists) { // fail to instantiate?
                
$results[$folder] = $albumobj->getData();
            }
        }
//    now put the results in the right order
        
$results sortByKey($results$sortkey$order);
//    albums are now in the correct order
        
$albums_ordered = array();
        foreach (
$results as $row) { // check for visible
            
$folder $row['folder'];
            
$album newAlbum($folder);
            switch (
checkPublishDates($row)) {
                case 
1:
                    
$album->setShow(0);
                    
$album->save();
                case 
2:
                    
$row['show'] = 0;
            }

            if (
$mine || $row['show'] || (($list $album->isMyItem(LIST_RIGHTS)) && is_null($album->getParent())) || (is_null($mine) && $list && $viewUnpublished)) {
                
$albums_ordered[] = $folder;
            }
        }
        return 
$albums_ordered;
    }

    
/**
     * Returns the hitcount
     *
     * @return int
     */
    
function getHitcounter() {
        return 
$this->get('hitcounter');
    }

    
/**
     * counts visits to the object
     */
    
function countHit() {
        
$this->set('hitcounter'$this->get('hitcounter') + 1);
        
$this->save();
    }

    
/**
     * Title to be used for the home (not Zenphoto gallery) WEBsite
     */
    
function getWebsiteTitle($locale NULL) {
        
$text $this->get('website_title');
        if (
$locale !== 'all') {
            
$text get_language_string($text$locale);
        }
        
$text zpFunctions::unTagURLs($text);
        return 
$text;
    }

    function 
setWebsiteTitle($value) {
        
$this->set('website_title'zpFunctions::tagURLs($value));
    }

    
/**
     * The URL of the home (not Zenphoto gallery) WEBsite
     */
    
function getWebsiteURL() {
        return 
$this->get('website_url');
    }

    function 
setWebsiteURL($value) {
        
$this->set('website_url'$value);
    }

    
/**
     * Option to allow only registered users view the site
     */
    
function getSecurity() {
        return 
$this->get('gallery_security');
    }

    function 
setSecurity($value) {
        
$this->set('gallery_security'$value);
    }

    
/**
     * Option to expose the user field on logon forms
     */
    
function getUserLogonField() {
        return 
$this->get('login_user_field');
    }

    function 
setUserLogonField($value) {
        
$this->set('login_user_field'$value);
    }

    
/**
     * Option to update album date from date of new images
     */
    
function getAlbumUseImagedate() {
        return 
$this->get('album_use_new_image_date');
    }

    function 
setAlbumUseImagedate($value) {
        
$this->set('album_use_new_image_date'$value);
    }

    
/**
     * Option to show images in the thumbnail selector
     */
    
function getThumbSelectImages() {
        return 
$this->get('thumb_select_images');
    }

    function 
setThumbSelectImages($value) {
        
$this->set('thumb_select_images'$value);
    }

    
/**
     * Option to show subalbum images in the thumbnail selector
     */
    
function getSecondLevelThumbs() {
        return 
$this->get('multilevel_thumb_select_images');
    }

    function 
setSecondLevelThumbs($value) {
        
$this->set('multilevel_thumb_select_images'$value);
    }

    
/**
     * Option of for gallery sessions
     */
    
function getGallerySession() {
        return 
$this->get('album_session');
    }

    function 
setGallerySession($value) {
        
$this->set('album_session'$value);
    }

    
/**
     *
     * Tests if a page is excluded from password protection
     * @param $page
     */
    
function isUnprotectedPage($page) {
        return (
in_array($page$this->unprotected_pages));
    }

    function 
setUnprotectedPage($page$on) {
        if (
$on) {
            
array_unshift($this->unprotected_pages$page);
            
$this->unprotected_pages array_unique($this->unprotected_pages);
        } else {
            
$key array_search($page$this->unprotected_pages);
            if (
$key !== false) {
                unset(
$this->unprotected_pages[$key]);
            }
        }
        
$this->set('unprotected_pages'serialize($this->unprotected_pages));
    }

    function 
getAlbumPublish() {
        return 
$this->get('album_publish');
    }

    function 
setAlbumPublish($v) {
        
$this->set('album_publish'$v);
    }

    function 
getImagePublish() {
        return 
$this->get('image_publish');
    }

    function 
setImagePublish($v) {
        
$this->set('image_publish'$v);
    }

    
/**
     * Returns the codeblocks as an serialized array
     *
     * @return array
     */
    
function getCodeblock() {
        return 
zpFunctions::unTagURLs($this->get("codeblock"));
    }

    
/**
     * set the codeblocks as an serialized array
     *
     */
    
function setCodeblock($cb) {
        
$this->set('codeblock'zpFunctions::tagURLs($cb));
    }

    
/**
     * Checks if guest is loggedin for the album
     * @param unknown_type $hint
     * @param unknown_type $show
     */
    
function checkforGuest(&$hint NULL, &$show NULL) {
        if (!(
GALLERY_SECURITY != 'public')) {
            return 
false;
        }
        
$hint '';
        
$pwd $this->getPassword();
        if (!empty(
$pwd)) {
            return 
'zp_gallery_auth';
        }
        return 
'zp_public_access';
    }

    
/**
     *
     * returns true if there is any protection on the gallery
     */
    
function isProtected() {
        return 
$this->checkforGuest() != 'zp_public_access';
    }

    function 
get($field) {
        if (isset(
$this->data[$field])) {
            return 
$this->data[$field];
        }
        return 
NULL;
    }

    function 
set($field$value) {
        
$this->data[$field] = $value;
    }

    function 
save() {
        
setOption('gallery_data'serialize($this->data));
//TODO: remove on Zenphoto 1.5
        
if (!TEST_RELEASE) {
            foreach (
$this->data as $option => $value) { //    for compatibility
                
if (is_array($value))
                    
$value serialize($value);
                
setOption($option$value);
            }
        }
    }

    
/**
     *
     * "Magic" function to return a string identifying the object when it is treated as a string
     * @return string
     */
    
public function __toString() {
        return 
$this->table " (" $this->id ")";
    }

}

?>