f71a0db1d3418cd74a5cae20699b9a9bd5762d2f
[phpfspot.git] / phpfspot.class.php
1 <?php
2
3 /***************************************************************************
4  *
5  * Copyright (c) by Andreas Unterkircher, unki@netshadow.at
6  * All rights reserved
7  *
8  *  This program is free software; you can redistribute it and/or modify
9  *  it under the terms of the GNU General Public License as published by
10  *  the Free Software Foundation; either version 2 of the License, or
11  *  any later version.
12  *
13  *  This program is distributed in the hope that it will be useful,
14  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
15  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  *  GNU General Public License for more details.
17  *
18  *  You should have received a copy of the GNU General Public License
19  *  along with this program; if not, write to the Free Software
20  *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21  *
22  ***************************************************************************/
23
24 require_once "phpfspot_cfg.php";
25 require_once "phpfspot_db.php";
26 require_once "phpfspot_tmpl.php";
27
28 class PHPFSPOT {
29
30    var $cfg;
31    var $db;
32    var $cfg_db;
33    var $tmpl;
34    var $tags;
35    var $avail_tags;
36
37    /**
38     * class constructor
39     *
40     * this function will be called on class construct
41     * and will check requirements, loads configuration,
42     * open databases and start the user session
43     */
44    public function __construct()
45    {
46       /* Check necessary requirements */
47       if(!$this->checkRequirements()) {
48          exit(1);
49       }
50
51       $this->cfg = new PHPFSPOT_CFG;
52
53       $this->db  = new PHPFSPOT_DB(&$this, $this->cfg->fspot_db);
54       
55       if(!is_writeable(dirname($this->cfg->phpfspot_db))) {
56          print dirname($this->cfg->phpfspot_db) .": directory is not writeable!";
57          exit(1);
58       }
59          
60       $this->cfg_db = new PHPFSPOT_DB(&$this, $this->cfg->phpfspot_db);
61       $this->check_config_table();
62
63       $this->tmpl = new PHPFSPOT_TMPL($this);
64
65       $this->get_tags();
66
67       session_start();
68
69       if(!isset($_SESSION['tag_condition']))
70          $_SESSION['tag_condition'] = 'or';
71
72       if(!isset($_SESSION['searchfor']))
73          $_SESSION['searchfor'] = '';
74
75       // if begin_with is still set but rows_per_page is now 0, unset it
76       if(isset($_SESSION['begin_with']) && $this->cfg->rows_per_page == 0)
77          unset($_SESSION['begin_with']);
78
79    } // __construct()
80
81    public function __destruct()
82    {
83
84    } // __destruct()
85
86    /**
87     * show - generate html output
88     *
89     * this function can be called after the constructor has
90     * prepared everyhing. it will load the index.tpl smarty
91     * template. if necessary it will registere pre-selects
92     * (photo index, photo, tag search, date search) into
93     * users session.
94     */
95    public function show()
96    {
97       $this->tmpl->assign('searchfor', $_SESSION['searchfor']);
98       $this->tmpl->assign('page_title', $this->cfg->page_title);
99       $this->tmpl->assign('current_condition', $_SESSION['tag_condition']);
100
101       $_SESSION['start_action'] = $_GET['mode'];
102
103       switch($_GET['mode']) {
104          case 'showpi':
105             if(isset($_GET['tags'])) {
106                $_SESSION['selected_tags'] = split(',', $_GET['tags']);
107             }
108             if(isset($_GET['from_date'])) {
109                $_SESSION['from_date'] = $_GET['from_date'];
110             }
111             if(isset($_GET['to_date'])) {
112                $_SESSION['to_date'] = $_GET['to_date'];
113             }
114             break;
115          case 'showp':
116             if(isset($_GET['tags'])) {
117                $_SESSION['selected_tags'] = split(',', $_GET['tags']);
118                $_SESSION['start_action'] = 'showp';
119             }
120             if(isset($_GET['id'])) {
121                $_SESSION['current_photo'] = $_GET['id'];
122                $_SESSION['start_action'] = 'showp';
123             }
124             if(isset($_GET['from_date'])) {
125                $_SESSION['from_date'] = $_GET['from_date'];
126             }
127             if(isset($_GET['to_date'])) {
128                $_SESSION['to_date'] = $_GET['to_date'];
129             }
130             break;
131          case 'export':
132             $this->tmpl->show("export.tpl");
133             return;
134             break;
135       }
136
137       $this->tmpl->assign('from_date', $this->get_calendar('from'));
138       $this->tmpl->assign('to_date', $this->get_calendar('to'));
139       $this->tmpl->assign('content_page', 'welcome.tpl');
140       $this->tmpl->show("index.tpl");
141
142
143    } // show()
144
145    /**
146     * get_tags - grab all tags of f-spot's database
147     *
148     * this function will get all available tags from
149     * the f-spot database and store them within two
150     * arrays within this clase for later usage. in
151     * fact, if the user requests (hide_tags) it will
152     * opt-out some of them.
153     *
154     * this function is getting called once by show()
155     */
156    private function get_tags()
157    {
158       $this->avail_tags = Array();
159       $count = 0;
160    
161       $result = $this->db->db_query("
162          SELECT id,name
163          FROM tags
164          ORDER BY sort_priority ASC
165       ");
166       
167       while($row = $this->db->db_fetch_object($result)) {
168
169          $tag_id = $row['id'];
170          $tag_name = $row['name'];
171
172          /* check if config requests to ignore this tag */
173          if(in_array($row['name'], $this->cfg->hide_tags))
174             continue;
175
176          $this->tags[$tag_id] = $tag_name; 
177          $this->avail_tags[$count] = $tag_id;
178
179          $count++;
180
181       }
182
183    } // get_tags()
184
185    /** 
186     * extract all photo details
187     * 
188     * retrieve all available details from f-spot's
189     * database and return them as object
190     */
191    public function get_photo_details($idx)
192    {
193       $result = $this->db->db_query("
194          SELECT *
195          FROM photos
196          WHERE id='". $idx ."'
197       ");
198       
199       return $this->db->db_fetch_object($result);
200
201    } // get_photo_details
202
203    /**
204     * returns aligned photo names 
205     *
206     * this function returns aligned (length) names for
207     * an specific photo. If the length of the name exceeds
208     * $limit the name will be shrinked (...)
209     */
210    public function getPhotoName($idx, $limit = 0)
211    {
212       if($details = $this->get_photo_details($idx)) {
213          $name = $details['name'];
214          if($limit != 0 && strlen($name) > $limit) {
215             $name = substr($name, 0, $limit-5) ."...". substr($name, -($limit-5));
216          }
217          return $name;
218       }
219
220    } // getPhotoName()
221
222    /**
223     * translate f-spoth photo path
224     * 
225     * as the full-qualified path recorded in the f-spot database
226     * is usally not the same as on the webserver, this function
227     * will replace the path with that one specified in the cfg
228     */
229    public function translate_path($path, $width = 0)
230    {  
231       return str_replace($this->cfg->path_replace_from, $this->cfg->path_replace_to, $path);
232
233    } // translate_path
234
235    /**
236     * control HTML ouput for a single photo
237     *
238     * this function provides all the necessary information
239     * for the single photo template.
240     */
241    public function showPhoto($photo)
242    {
243       /* get all photos from the current photo selection */
244       $all_photos = $this->getPhotoSelection();
245       $count = count($all_photos);
246
247       for($i = 0; $i < $count; $i++) {
248          
249          // $get_next will be set, when the photo which has to
250          // be displayed has been found - this means that the
251          // next available is in fact the NEXT image (for the
252          // navigation icons) 
253          if(isset($get_next)) {
254             $next_img = $all_photos[$i];
255             break;
256          }
257
258          /* the next photo is our NEXT photo */
259          if($all_photos[$i] == $photo) {
260             $get_next = 1;
261          }
262          else {
263             $previous_img = $all_photos[$i];
264          }
265
266          if($photo == $all_photos[$i]) {
267                $current = $i;
268          }
269       }
270
271       $details = $this->get_photo_details($photo);
272
273       if(!$details) {
274          print "error";
275          return;
276       }
277
278       $orig_path = $this->translate_path($details['directory_path']) ."/". $details['name'];
279       $thumb_path = $this->cfg->base_path ."/thumbs/". $this->cfg->photo_width ."_". $this->getMD5($photo);
280
281       if(!file_exists($orig_path)) {
282          $this->_warning("Photo ". $orig_path ." does not exist!<br />\n");
283       }
284
285       if(!is_readable($orig_path)) {
286          $this->_warning("Photo ". $orig_path ." is not readable for user ". $this->getuid() ."<br />\n");
287       }
288
289       /* If the thumbnail doesn't exist yet, try to create it */
290       if(!file_exists($thumb_path)) {
291          $this->gen_thumb($photo, true);
292          $thumb_path = $this->cfg->base_path ."/thumbs/". $this->cfg->photo_width ."_". $this->getMD5($photo);
293       }
294
295       /* get f-spot database meta information */
296       $meta = $this->get_meta_informations($orig_path);
297
298       /* If EXIF data are available, use them */
299       if(isset($meta['ExifImageWidth'])) {
300          $meta_res = $meta['ExifImageWidth'] ."x". $meta['ExifImageLength'];
301       } else {
302          $info = getimagesize($orig_path);
303          $meta_res = $info[0] ."x". $info[1]; 
304       }
305
306       $meta_date = isset($meta['FileDateTime']) ? strftime("%a %x %X", $meta['FileDateTime']) : "n/a";
307       $meta_make = isset($meta['Make']) ? $meta['Make'] ." / ". $meta['Model'] : "n/a";
308       $meta_size = isset($meta['FileSize']) ? round($meta['FileSize']/1024, 1) ."kbyte" : "n/a";
309
310       $extern_link = "index.php?mode=showp&id=". $photo;
311       $current_tags = $this->getCurrentTags();
312       if($current_tags != "") {
313          $extern_link.= "&tags=". $current_tags;
314       }
315       if(isset($_SESSION['from_date']) && isset($_SESSION['to_date'])) {
316          $extern_link.= "&from_date=". $_SESSION['from_date'] ."&to_date=". $_SESSION['to_date'];
317       }
318
319       $this->tmpl->assign('extern_link', $extern_link);
320
321       if(file_exists($thumb_path)) {
322
323          $info = getimagesize($thumb_path);
324
325          $this->tmpl->assign('description', $details['description']);
326          $this->tmpl->assign('image_name', $details['name']);
327
328          $this->tmpl->assign('width', $info[0]);
329          $this->tmpl->assign('height', $info[1]);
330          $this->tmpl->assign('ExifMadeOn', $meta_date);
331          $this->tmpl->assign('ExifMadeWith', $meta_make);
332          $this->tmpl->assign('ExifOrigResolution', $meta_res);
333          $this->tmpl->assign('ExifFileSize', $meta_size);
334     
335          $this->tmpl->assign('image_url', 'phpfspot_img.php?idx='. $photo ."&amp;width=". $this->cfg->photo_width);
336          $this->tmpl->assign('image_url_full', 'phpfspot_img.php?idx='. $photo);
337
338          $this->tmpl->assign('tags', $this->get_photo_tags($photo));
339          $this->tmpl->assign('current', $current);
340       }
341       else {
342          $this->_warning("Can't open file ". $thumb_path ."\n");
343          return;
344       }
345
346       if($previous_img) {
347          $this->tmpl->assign('previous_url', "javascript:showImage(". $previous_img .");");
348          $this->tmpl->assign('prev_img', $previous_img);
349       }
350
351       if($next_img) {
352          $this->tmpl->assign('next_url', "javascript:showImage(". $next_img .");");
353          $this->tmpl->assign('next_img', $next_img);
354       }
355       $this->tmpl->assign('mini_width', $this->cfg->mini_width);
356
357       $this->tmpl->show("single_photo.tpl");
358
359    } // showPhoto()
360
361    /**
362     * all available tags and tag cloud
363     *
364     * this function outputs all available tags (time ordered)
365     * and in addition output them as tag cloud (tags which have
366     * many photos will appears more then others)
367     */
368    public function getAvailableTags()
369    {
370       $output = "";
371
372       $result = $this->db->db_query("
373          SELECT tag_id as id, count(tag_id) as quantity
374          FROM photo_tags
375          INNER JOIN tags t
376             ON t.id = tag_id
377          GROUP BY tag_id
378          ORDER BY t.name ASC
379       ");
380
381       $tags = Array();
382
383       while($row = $this->db->db_fetch_object($result)) {
384          $tags[$row['id']] = $row['quantity'];
385       }
386
387       // change these font sizes if you will
388       $max_size = 125; // max font size in %
389       $min_size = 75; // min font size in %
390
391       // get the largest and smallest array values
392       $max_qty = max(array_values($tags));
393       $min_qty = min(array_values($tags));
394
395       // find the range of values
396       $spread = $max_qty - $min_qty;
397       if (0 == $spread) { // we don't want to divide by zero
398          $spread = 1;
399       }
400
401       // determine the font-size increment
402       // this is the increase per tag quantity (times used)
403       $step = ($max_size - $min_size)/($spread);
404
405       // loop through our tag array
406       foreach ($tags as $key => $value) {
407
408          if(isset($_SESSION['selected_tags']) && in_array($key, $_SESSION['selected_tags']))
409             continue;
410
411           // calculate CSS font-size
412           // find the $value in excess of $min_qty
413           // multiply by the font-size increment ($size)
414           // and add the $min_size set above
415          $size = $min_size + (($value - $min_qty) * $step);
416           // uncomment if you want sizes in whole %:
417          $size = ceil($size);
418
419          $output.= "<a href=\"javascript:Tags('add', ". $key .");\" class=\"tag\" style=\"font-size: ". $size ."%;\">". $this->tags[$key] ."</a>, ";
420
421       }
422
423       $output = substr($output, 0, strlen($output)-2);
424       print $output;
425
426    } // getAvailableTags()
427
428    /**
429     * output all selected tags
430     *
431     * this function output all tags which have been selected
432     * by the user. the selected tags are stored in the 
433     * session-variable $_SESSION['selected_tags']
434     */
435    public function getSelectedTags()
436    {
437       $output = "";
438       foreach($this->avail_tags as $tag)
439       {
440          // return all selected tags
441          if(isset($_SESSION['selected_tags']) && in_array($tag, $_SESSION['selected_tags'])) {
442             $output.= "<a href=\"javascript:Tags('del', ". $tag .");\" class=\"tag\">". $this->tags[$tag] ."</a>, ";
443          }
444       }
445
446       $output = substr($output, 0, strlen($output)-2);
447       print $output;
448
449    } // getSelectedTags()
450
451    /**
452     * add tag to users session variable
453     *
454     * this function will add the specified to users current
455     * tag selection. if a date search has been made before
456     * it will be now cleared
457     */
458    public function addTag($tag)
459    {
460       if(!isset($_SESSION['selected_tags']))
461          $_SESSION['selected_tags'] = Array();
462
463       if(!in_array($tag, $_SESSION['selected_tags']))
464          array_push($_SESSION['selected_tags'], $tag);
465    
466    } // addTag()
467
468    /**
469     * remove tag to users session variable
470     *
471     * this function removes the specified tag from
472     * users current tag selection
473     */
474    public function delTag($tag)
475    {
476       if(isset($_SESSION['selected_tags'])) {
477          $key = array_search($tag, $_SESSION['selected_tags']);
478          unset($_SESSION['selected_tags'][$key]);
479          sort($_SESSION['selected_tags']);
480       }
481
482    } // delTag()
483
484    /**
485     * reset tag selection
486     *
487     * if there is any tag selection, it will be
488     * deleted now
489     */
490    public function resetTags()
491    {
492       if(isset($_SESSION['selected_tags']))
493          unset($_SESSION['selected_tags']);
494
495    } // resetTags()
496
497    /**
498     * reset single photo
499     *
500     * if a specific photo was requested (external link)
501     * unset the session variable now
502     */
503    public function resetPhotoView()
504    {
505       if(isset($_SESSION['current_photo']))
506          unset($_SESSION['current_photo']);
507
508    } // resetPhotoView();
509
510    /**
511     * reset tag search
512     *
513     * if any tag search has taken place, reset
514     * it now
515     */
516    public function resetTagSearch()
517    {
518       if(isset($_SESSION['searchfor']))
519          unset($_SESSION['searchfor']);
520
521    } // resetTagSearch()
522
523     /**
524     * reset date search
525     *
526     * if any date search has taken place, reset
527     * it now
528     */
529    public function resetDateSearch()
530    {
531       if(isset($_SESSION['from_date']))
532          unset($_SESSION['from_date']);
533       if(isset($_SESSION['to_date']))
534          unset($_SESSION['to_date']);
535
536    } // resetDateSearch();
537
538    /**
539     * return all photo according selection
540     *
541     * this function returns all photos based on
542     * the tag-selection, tag- or date-search.
543     * the tag-search also has to take care of AND
544     * and OR conjunctions
545     */
546    public function getPhotoSelection()
547    {  
548       $matched_photos = Array();
549
550       if(isset($_SESSION['from_date']) && isset($_SESSION['to_date'])) {
551          $from_date = strtotime($_SESSION['from_date']);
552          $to_date = strtotime($_SESSION['to_date']);
553          $additional_where_cond = "
554                p.time>='". $from_date ."'
555             AND
556                p.time<='". $to_date ."'
557          ";
558       } 
559
560       /* return a search result */
561       if(isset($_SESSION['searchfor']) && $_SESSION['searchfor'] != '') {
562          $query_str = "
563             SELECT DISTINCT photo_id
564                FROM photo_tags pt
565             INNER JOIN photos p
566                ON p.id=pt.photo_id
567             INNER JOIN tags t
568                ON pt.tag_id=t.id
569             WHERE t.name LIKE '%". $_SESSION['searchfor'] ."%'";
570
571          if(isset($additional_where_cond))
572             $query_str.= "AND ". $additional_where_cond ." ";
573          $query_str.= "
574             ORDER BY p.time ASC
575          ";
576          $result = $this->db->db_query($query_str);
577          while($row = $this->db->db_fetch_object($result)) {
578             array_push($matched_photos, $row['photo_id']);
579          }
580          return $matched_photos;
581       }
582
583       /* return according the selected tags */
584       if(isset($_SESSION['selected_tags']) && !empty($_SESSION['selected_tags'])) {
585          $selected = "";
586          foreach($_SESSION['selected_tags'] as $tag)
587             $selected.= $tag .",";
588          $selected = substr($selected, 0, strlen($selected)-1);
589
590          if($_SESSION['tag_condition'] == 'or') {
591             $query_str = "
592                SELECT DISTINCT photo_id
593                   FROM photo_tags pt
594                INNER JOIN photos p
595                   ON p.id=pt.photo_id
596                WHERE pt.tag_id IN (". $selected .")
597             ";
598             if(isset($additional_where_cond)) 
599                $query_str.= "AND ". $additional_where_cond ." ";
600
601             $query_str.= "
602                ORDER BY p.time ASC
603             ";
604          }
605          elseif($_SESSION['tag_condition'] == 'and') {
606
607             if(count($_SESSION['selected_tags']) >= 32) {
608                print "A SQLite limit of 32 tables within a JOIN SELECT avoids to<br />\n";
609                print "evaluate your tag selection. Please remove some tags from your selection.\n";
610                return Array();
611             } 
612
613             /* Join together a table looking like
614
615                pt1.photo_id pt1.tag_id pt2.photo_id pt2.tag_id ...
616
617                so the query can quickly return all images matching the
618                selected tags in an AND condition
619
620             */
621
622             $query_str = "
623                SELECT DISTINCT pt1.photo_id
624                   FROM photo_tags pt1
625             ";
626
627             for($i = 0; $i < count($_SESSION['selected_tags']); $i++) {
628                $query_str.= "
629                   INNER JOIN photo_tags pt". ($i+2) ."
630                      ON pt1.photo_id=pt". ($i+2) .".photo_id
631                ";
632             }
633             $query_str.= "WHERE pt1.tag_id=". $_SESSION['selected_tags'][0];
634             for($i = 1; $i < count($_SESSION['selected_tags']); $i++) {
635                $query_str.= "
636                   AND pt". ($i+1) .".tag_id=". $_SESSION['selected_tags'][$i] ."
637                "; 
638             }
639             if(isset($additional_where_cond)) 
640                $query_str.= "AND ". $additional_where_cond;
641          }
642
643          $result = $this->db->db_query($query_str);
644          while($row = $this->db->db_fetch_object($result)) {
645             array_push($matched_photos, $row['photo_id']);
646          }
647          return $matched_photos;
648       }
649
650       /* return all available photos */
651       $query_str = "
652          SELECT DISTINCT photo_id
653             FROM photo_tags pt
654          INNER JOIN photos p
655             ON p.id=pt.photo_id
656       ";
657       if(isset($additional_where_cond)) 
658          $query_str.= "WHERE ". $additional_where_cond ." ";
659       $query_str.= "
660          ORDER BY p.time ASC
661       ";
662       $result = $this->db->db_query($query_str);
663       while($row = $this->db->db_fetch_object($result)) {
664          array_push($matched_photos, $row['photo_id']);
665       }
666       return $matched_photos;
667
668    } // getPhotoSelection()
669
670     /**
671     * control HTML ouput for photo index
672     *
673     * this function provides all the necessary information
674     * for the photo index template.
675     */
676    public function showPhotoIndex()
677    {
678       $photos = $this->getPhotoSelection();
679
680       $count = count($photos);
681
682       if(isset($_SESSION['begin_with']) && $_SESSION['begin_with'] != "")
683          $anchor = $_SESSION['begin_with'];
684
685       if(!isset($this->cfg->rows_per_page) || $this->cfg->rows_per_page == 0) {
686
687          $begin_with = 0;
688          $end_with = $count;
689
690       }
691       elseif($this->cfg->rows_per_page > 0) {
692
693          if(!$_SESSION['begin_with'] || $_SESSION['begin_with'] == 0)
694             $begin_with = 0;
695          else {
696
697             $begin_with = $_SESSION['begin_with'];
698
699             // verify $begin_with - perhaps the thumbs-per-rows or
700             // rows-per-page variables have changed or the jump back
701             // from a photo wasn't exact - so calculate the real new
702             // starting point
703             $multiplicator = $this->cfg->rows_per_page * $this->cfg->thumbs_per_row;
704             for($i = 0; $i <= $count; $i+=$multiplicator) {
705                if($begin_with >= $i && $begin_with < $i+$multiplicator) {
706                   $begin_with = $i;
707                   break;
708                }
709             }
710          }
711
712          $end_with = $begin_with + ($this->cfg->rows_per_page * $this->cfg->thumbs_per_row);
713       }
714
715    
716       $rows = 0;
717       $cols = 0;
718       $images[$rows] = Array();
719       $img_height[$rows] = Array();
720       $img_width[$rows] = Array();
721       $img_id[$rows] = Array();
722       $img_name[$rows] = Array();
723       $img_title = Array();
724
725       for($i = $begin_with; $i < $end_with; $i++) {
726
727          $images[$rows][$cols] = $photos[$i];
728          $img_id[$rows][$cols] = $i;
729          $img_name[$rows][$cols] = htmlspecialchars($this->getPhotoName($photos[$i], 15));
730          $img_title[$rows][$cols] = "Click to view photo ". htmlspecialchars($this->getPhotoName($photos[$i], 0));
731
732          $thumb_path = $this->cfg->base_path ."/thumbs/". $this->cfg->thumb_width ."_". $this->getMD5($photos[$i]);
733
734          if(file_exists($thumb_path)) {
735             $info = getimagesize($thumb_path); 
736             $img_width[$rows][$cols] = $info[0];
737             $img_height[$rows][$cols] = $info[1];
738          }
739
740          if($cols == $this->cfg->thumbs_per_row-1) {
741             $cols = 0;
742             $rows++;
743             $images[$rows] = Array();
744             $img_width[$rows] = Array();
745             $img_height[$rows] = Array();
746          }
747          else {
748             $cols++;
749          }
750       } 
751
752       // +1 for for smarty's selection iteration
753       $rows++;
754
755       if(isset($_SESSION['searchfor']) && $_SESSION['searchfor'] != '')
756          $this->tmpl->assign('searchfor', $_SESSION['searchfor']);
757
758       if(isset($_SESSION['from_date']) && isset($_SESSION['to_date'])) {
759          $this->tmpl->assign('from_date', $_SESSION['from_date']);
760          $this->tmpl->assign('to_date', $_SESSION['to_date']);
761       }
762
763       if(isset($_SESSION['selected_tags']) && !empty($_SESSION['selected_tags'])) {
764          $this->tmpl->assign('tag_result', 1);
765       }
766
767       /* do we have to display the page selector ? */
768       if($this->cfg->rows_per_page != 0) {
769       
770          /* calculate the page switchers */
771          $previous_start = $begin_with - ($this->cfg->rows_per_page * $this->cfg->thumbs_per_row);
772          $next_start = $begin_with + ($this->cfg->rows_per_page * $this->cfg->thumbs_per_row);
773
774          if($begin_with != 0) 
775             $this->tmpl->assign("previous_url", "javascript:showPhotoIndex(". $previous_start .");"); 
776          if($end_with < $count)
777             $this->tmpl->assign("next_url", "javascript:showPhotoIndex(". $next_start .");"); 
778
779          $photo_per_page  = $this->cfg->rows_per_page * $this->cfg->thumbs_per_row;
780          $last_page = ceil($count / $photo_per_page);
781
782          /* get the current selected page */
783          if($begin_with == 0) {
784             $current_page = 1;
785          } else {
786             $current_page = 0;
787             for($i = $begin_with; $i >= 0; $i-=$photo_per_page) {
788                $current_page++;
789             }
790          } 
791
792          $dotdot_made = 0;
793
794          for($i = 1; $i <= $last_page; $i++) {
795
796             if($current_page == $i)
797                $style = "style=\"font-size: 125%;\"";
798             elseif($current_page-1 == $i || $current_page+1 == $i)
799                $style = "style=\"font-size: 105%;\"";
800             elseif(($current_page-5 >= $i) && ($i != 1) ||
801                ($current_page+5 <= $i) && ($i != $last_page))
802                $style = "style=\"font-size: 75%;\"";
803             else
804                $style = "";
805
806             $select = "<a href=\"javascript:showPhotoIndex(". (($i*$photo_per_page)-$photo_per_page) .");\"";
807                if($style != "")
808                   $select.= $style;
809             $select.= ">". $i ."</a>&nbsp;";
810
811             // until 9 pages we show the selector from 1-9
812             if($last_page <= 9) {
813                $page_select.= $select;
814                continue;
815             } else {
816                if($i == 1 /* first page */ || 
817                   $i == $last_page /* last page */ ||
818                   $i == $current_page /* current page */ ||
819                   $i == ceil($last_page * 0.25) /* first quater */ ||
820                   $i == ceil($last_page * 0.5) /* half */ ||
821                   $i == ceil($last_page * 0.75) /* third quater */ ||
822                   (in_array($i, array(1,2,3,4,5,6)) && $current_page <= 4) /* the first 6 */ ||
823                   (in_array($i, array($last_page, $last_page-1, $last_page-2, $last_page-3, $last_page-4, $last_page-5)) && $current_page >= $last_page-4) /* the last 6 */ ||
824                   $i == $current_page-3 || $i == $current_page-2 || $i == $current_page-1 /* three before */ ||
825                   $i == $current_page+3 || $i == $current_page+2 || $i == $current_page+1 /* three after */) {
826
827                   $page_select.= $select;
828                   $dotdot_made = 0;
829                   continue;
830
831                }
832             }
833
834             if(!$dotdot_made) {
835                $page_select.= ".........&nbsp;";
836                $dotdot_made = 1;
837             }
838          }
839
840          /* only show the page selector if we have more then one page */
841          if($last_page > 1)
842             $this->tmpl->assign('page_selector', $page_select);
843       }
844
845       
846       $current_tags = $this->getCurrentTags();
847       $extern_link = "index.php?mode=showpi";
848       if($current_tags != "") {
849          $extern_link.= "&tags=". $current_tags;
850       }
851       if(isset($_SESSION['from_date']) && isset($_SESSION['to_date'])) {
852          $extern_link.= "&from_date=". $_SESSION['from_date'] ."&to_date=". $_SESSION['to_date'];
853       }
854
855       $export_link = "index.php?mode=export";
856
857       $this->tmpl->assign('extern_link', $extern_link);
858       $this->tmpl->assign('export_link', $export_link);
859       $this->tmpl->assign('count', $count);
860       $this->tmpl->assign('width', $this->cfg->thumb_width);
861       $this->tmpl->assign('images', $images);
862       $this->tmpl->assign('img_width', $img_width);
863       $this->tmpl->assign('img_height', $img_height);
864       $this->tmpl->assign('img_id', $img_id);
865       $this->tmpl->assign('img_name', $img_name);
866       $this->tmpl->assign('img_title', $img_title);
867       $this->tmpl->assign('rows', $rows);
868       $this->tmpl->assign('columns', $this->cfg->thumbs_per_row);
869
870       $this->tmpl->show("photo_index.tpl");
871
872       if(isset($anchor))
873          print "<script language=\"JavaScript\">self.location.hash = '#image". $anchor ."';</script>\n";
874
875    } // showPhotoIndex()
876
877    /**
878     * show credit template
879     */
880    public function showCredits()
881    {
882       $this->tmpl->assign('version', $this->cfg->version);
883       $this->tmpl->assign('product', $this->cfg->product);
884       $this->tmpl->show("credits.tpl");
885
886    } // showCredits()
887
888    /**
889     * create_thumbnails for the requested width
890     *
891     * this function creates image thumbnails of $orig_image
892     * stored as $thumb_image. It will check if the image is
893     * in a supported format, if necessary rotate the image
894     * (based on EXIF orientation meta headers) and re-sizing.
895     */
896    public function create_thumbnail($orig_image, $thumb_image, $width)
897    {  
898       if(!file_exists($orig_image)) {
899          return false;
900       }
901
902       $details = getimagesize($orig_image);
903       
904       /* check if original photo is a support image type */
905       if(!$this->checkifImageSupported($details['mime']))
906          return false;
907
908       $meta = $this->get_meta_informations($orig_image);
909
910       $rotate = 0;
911       $flip = false;
912
913       switch($meta['Orientation']) {
914
915          case 1: /* top, left */
916             $rotate = 0; $flip = false; break;
917          case 2: /* top, right */
918             $rotate = 0; $flip = true; break;
919          case 3: /* bottom, left */
920             $rotate = 180; $flip = false; break;
921          case 4: /* bottom, right */
922             $rotate = 180; $flip = true; break;
923          case 5: /* left side, top */
924             $rotate = 90; $flip = true; break;
925          case 6: /* right side, top */
926             $rotate = 90; $flip = false; break;
927          case 7: /* left side, bottom */
928             $rotate = 270; $flip = true; break;
929          case 8: /* right side, bottom */
930             $rotate = 270; $flip = false; break;
931       }
932
933       $src_img = @imagecreatefromjpeg($orig_image);
934
935       if(!$src_img) {
936          print "Can't load image from ". $orig_image ."\n";
937          return false;
938       }
939
940       /* grabs the height and width */
941       $cur_width = imagesx($src_img);
942       $cur_height = imagesy($src_img);
943
944       // If requested width is more then the actual image width,
945       // do not generate a thumbnail, instead safe the original
946       // as thumbnail but with lower quality
947
948       if($width >= $cur_width) {
949          $result = imagejpeg($src_img, $thumb_image, 75);
950          imagedestroy($src_img);
951          return true;
952       }
953
954       // If the image will be rotate because EXIF orientation said so
955       // 'virtually rotate' the image for further calculations
956       if($rotate == 90 || $rotate == 270) {
957          $tmp = $cur_width;
958          $cur_width = $cur_height;
959          $cur_height = $tmp;
960       }
961
962       /* calculates aspect ratio */
963       $aspect_ratio = $cur_height / $cur_width;
964
965       /* sets new size */
966       if($aspect_ratio < 1) {
967          $new_w = $width;
968          $new_h = abs($new_w * $aspect_ratio);
969       } else {
970          /* 'virtually' rotate the image and calculate it's ratio */
971          $tmp_w = $cur_height;
972          $tmp_h = $cur_width;
973          /* now get the ratio from the 'rotated' image */
974          $tmp_ratio = $tmp_h/$tmp_w;
975          /* now calculate the new dimensions */
976          $tmp_w = $width;
977          $tmp_h = abs($tmp_w * $tmp_ratio);
978
979          // now that we know, how high they photo should be, if it
980          // gets rotated, use this high to scale the image
981          $new_h = $tmp_h;
982          $new_w = abs($new_h / $aspect_ratio);
983
984          // If the image will be rotate because EXIF orientation said so
985          // now 'virtually rotate' back the image for the image manipulation
986          if($rotate == 90 || $rotate == 270) {
987             $tmp = $new_w;
988             $new_w = $new_h;
989             $new_h = $tmp;
990          }
991       }
992
993       /* creates new image of that size */
994       $dst_img = imagecreatetruecolor($new_w, $new_h);
995
996       imagefill($dst_img, 0, 0, ImageColorAllocate($dst_img, 255, 255, 255));
997
998       /* copies resized portion of original image into new image */
999       imagecopyresampled($dst_img, $src_img, 0, 0, 0, 0, $new_w, $new_h, imagesx($src_img), imagesy($src_img));
1000
1001       /* needs the image to be flipped horizontal? */
1002       if($flip) {
1003          print "(FLIP)";
1004          $image = $dst_img;
1005          for($x = 0; $x < $new_w; $x++) {
1006             imagecopy($dst_img, $image, $x, 0, $w - $x - 1, 0, 1, $h);
1007          }
1008       }
1009
1010       if($rotate) {
1011          $this->_debug("(ROTATE)");
1012          $dst_img = $this->rotateImage($dst_img, $rotate);
1013       }
1014
1015       /* write down new generated file */
1016       $result = imagejpeg($dst_img, $thumb_image, 75);
1017
1018       /* free your mind */
1019       imagedestroy($dst_img);
1020       imagedestroy($src_img);
1021
1022       if($result === false) {
1023          print "Can't write thumbnail ". $thumb_image ."\n";
1024          return false;
1025       }
1026
1027       return true;
1028
1029    } // create_thumbnail()
1030
1031    /**
1032     * return all exif meta data from the file
1033     */
1034    public function get_meta_informations($file)
1035    {
1036       return exif_read_data($file);
1037
1038    } // get_meta_informations()
1039
1040    /**
1041     * create phpfspot own sqlite database
1042     *
1043     * this function creates phpfspots own sqlite database
1044     * if it does not exist yet. this own is used to store
1045     * some necessary informations (md5 sum's, ...).
1046     */
1047    public function check_config_table()
1048    {
1049       // if the config table doesn't exist yet, create it
1050       if(!$this->cfg_db->db_check_table_exists("images")) {
1051          $this->cfg_db->db_exec("
1052             CREATE TABLE images (
1053                img_idx int primary key,
1054                img_md5 varchar(32)
1055             )
1056             ");
1057       }
1058
1059    } // check_config_table
1060
1061    /**
1062     * Generates a thumbnail from photo idx
1063     *
1064     * This function will generate JPEG thumbnails from provided F-Spot photo
1065     * indizes.
1066     *
1067     * 1. Check if all thumbnail generations (width) are already in place and
1068     *    readable
1069     * 2. Check if the md5sum of the original file has changed
1070     * 3. Generate the thumbnails if needed
1071     */
1072    public function gen_thumb($idx = 0, $force = 0)
1073    {
1074       $error = 0;
1075
1076       $resolutions = Array(
1077          $this->cfg->thumb_width,
1078          $this->cfg->photo_width,
1079          $this->cfg->mini_width,
1080       );
1081
1082       /* get details from F-Spot's database */
1083       $details = $this->get_photo_details($idx);
1084
1085       /* calculate file MD5 sum */
1086       $full_path = $this->translate_path($details['directory_path'])  ."/". $details['name'];
1087
1088       if(!file_exists($full_path)) {
1089          $this->_warning("File ". $full_path ." does not exist\n");
1090          return;
1091       }
1092
1093       if(!is_readable($full_path)) {
1094          $this->_warning("File ". $full_path ." is not readable for ". $this->getuid() ."\n");
1095          return;
1096       }
1097
1098       $file_md5 = md5_file($full_path);
1099
1100       $this->_debug("Image [". $idx ."] ". $details['name'] ." Thumbnails:");
1101
1102       foreach($resolutions as $resolution) {
1103
1104          $thumb_path = $this->cfg->base_path ."/thumbs/". $resolution ."_". $file_md5;
1105
1106          /* if the thumbnail file doesn't exist, create it */
1107          if(!file_exists($thumb_path)) {
1108
1109             $this->_debug(" ". $resolution ."px");
1110             if(!$this->create_thumbnail($full_path, $thumb_path, $resolution))
1111                $error = 1;
1112          }
1113          /* if the file hasn't changed there is no need to regen the thumb */
1114          elseif($file_md5 != $this->getMD5($idx) || $force) {
1115
1116             $this->_debug(" ". $resolution ."px");
1117             if(!$this->create_thumbnail($full_path, $thumb_path, $resolution))
1118                $error = 1;
1119
1120          }
1121       }
1122
1123       /* set the new/changed MD5 sum for the current photo */
1124       if(!$error) {
1125          $this->setMD5($idx, $file_md5);
1126       }
1127
1128       $this->_debug("\n");
1129
1130    } // gen_thumb()
1131
1132    /**
1133     * returns stored md5 sum for a specific photo
1134     *
1135     * this function queries the phpfspot database for a
1136     * stored MD5 checksum of the specified photo
1137     */
1138    public function getMD5($idx)
1139    {
1140       $result = $this->cfg_db->db_query("
1141          SELECT img_md5 
1142          FROM images
1143          WHERE img_idx='". $idx ."'
1144       ");
1145
1146       if(!$result)
1147          return 0;
1148
1149       $img = $this->cfg_db->db_fetch_object($result);
1150       return $img['img_md5'];
1151       
1152    } // getMD5()
1153
1154    /**
1155     * set MD5 sum for the specific photo
1156     */
1157    private function setMD5($idx, $md5)
1158    {
1159       $result = $this->cfg_db->db_exec("
1160          REPLACE INTO images (img_idx, img_md5)
1161          VALUES ('". $idx ."', '". $md5 ."')
1162       ");
1163
1164    } // setMD5()
1165
1166    /**
1167     * store current tag condition
1168     *
1169     * this function stores the current tag condition
1170     * (AND or OR) in the users session variables
1171     */
1172    public function setTagCondition($mode)
1173    {
1174       $_SESSION['tag_condition'] = $mode;
1175
1176    } // setTagCondition()
1177
1178    /** 
1179     * invoke tag & date search 
1180     *
1181     * this function will return all matching tags and store
1182     * them in the session variable selected_tags. furthermore
1183     * it also handles the date search.
1184     * getPhotoSelection() will then only return the matching
1185     * photos.
1186     */
1187    public function startSearch($searchfor, $from, $to)
1188    {
1189       $_SESSION['searchfor'] = $searchfor;
1190       $_SESSION['from_date'] = $from;
1191       $_SESSION['to_date'] = $to;
1192
1193       if($searchfor != "") {
1194          /* new search, reset the current selected tags */
1195          $_SESSION['selected_tags'] = Array();
1196          foreach($this->avail_tags as $tag) {
1197             if(preg_match('/'. $searchfor .'/i', $this->tags[$tag]))
1198                array_push($_SESSION['selected_tags'], $tag);
1199          }
1200       }
1201    } // startSearch()
1202
1203    /**
1204     * rotate image
1205     *
1206     * this function rotates the image according the
1207     * specified angel.
1208     */
1209    private function rotateImage($img, $degrees)
1210    {
1211       if(function_exists("imagerotate")) {
1212          $img = imagerotate($img, $degrees, 0);
1213       } else {
1214          function imagerotate($src_img, $angle)
1215          {
1216             $src_x = imagesx($src_img);
1217             $src_y = imagesy($src_img);
1218             if ($angle == 180) {
1219                $dest_x = $src_x;
1220                $dest_y = $src_y;
1221             }
1222             elseif ($src_x <= $src_y) {
1223                $dest_x = $src_y;
1224                $dest_y = $src_x;
1225             }
1226             elseif ($src_x >= $src_y) {
1227                $dest_x = $src_y;
1228                $dest_y = $src_x;
1229             }
1230                
1231             $rotate=imagecreatetruecolor($dest_x,$dest_y);
1232             imagealphablending($rotate, false);
1233                
1234             switch ($angle) {
1235             
1236                case 90:
1237                   for ($y = 0; $y < ($src_y); $y++) {
1238                      for ($x = 0; $x < ($src_x); $x++) {
1239                         $color = imagecolorat($src_img, $x, $y);
1240                         imagesetpixel($rotate, $dest_x - $y - 1, $x, $color);
1241                      }
1242                   }
1243                   break;
1244
1245                case 270:
1246                   for ($y = 0; $y < ($src_y); $y++) {
1247                      for ($x = 0; $x < ($src_x); $x++) {
1248                         $color = imagecolorat($src_img, $x, $y);
1249                         imagesetpixel($rotate, $y, $dest_y - $x - 1, $color);
1250                      }
1251                   }
1252                   break;
1253
1254                case 180:
1255                   for ($y = 0; $y < ($src_y); $y++) {
1256                      for ($x = 0; $x < ($src_x); $x++) {
1257                         $color = imagecolorat($src_img, $x, $y);
1258                         imagesetpixel($rotate, $dest_x - $x - 1, $dest_y - $y - 1, $color);
1259                      }
1260                   }
1261                   break;
1262
1263                default:
1264                   $rotate = $src_img;
1265                   break;
1266             };
1267
1268             return $rotate;
1269
1270          }
1271
1272          $img = imagerotate($img, $degrees);
1273
1274       }
1275
1276       return $img;
1277
1278    } // rotateImage()
1279
1280    /**
1281     * return all assigned tags for the specified photo
1282     */
1283    private function get_photo_tags($idx)
1284    {
1285       $result = $this->db->db_query("
1286          SELECT t.id, t.name
1287          FROM tags t
1288          INNER JOIN photo_tags pt
1289             ON t.id=pt.tag_id
1290          WHERE pt.photo_id='". $idx ."'
1291       ");
1292
1293       $tags = Array();
1294
1295       while($row = $this->db->db_fetch_object($result))
1296          $tags[$row['id']] = $row['name'];
1297
1298       return $tags;
1299
1300    } // get_photo_tags()
1301
1302    /**
1303     * create on-the-fly images with text within
1304     */
1305    public function showTextImage($txt, $color=000000, $space=4, $font=4, $w=300)
1306    {
1307       if (strlen($color) != 6) 
1308          $color = 000000;
1309
1310       $int = hexdec($color);
1311       $h = imagefontheight($font);
1312       $fw = imagefontwidth($font);
1313       $txt = explode("\n", wordwrap($txt, ($w / $fw), "\n"));
1314       $lines = count($txt);
1315       $im = imagecreate($w, (($h * $lines) + ($lines * $space)));
1316       $bg = imagecolorallocate($im, 255, 255, 255);
1317       $color = imagecolorallocate($im, 0xFF & ($int >> 0x10), 0xFF & ($int >> 0x8), 0xFF & $int);
1318       $y = 0;
1319
1320       foreach ($txt as $text) {
1321          $x = (($w - ($fw * strlen($text))) / 2);
1322          imagestring($im, $font, $x, $y, $text, $color);
1323          $y += ($h + $space);
1324       }
1325
1326       Header("Content-type: image/png");
1327       ImagePng($im);
1328
1329    } // showTextImage()
1330
1331    /**
1332     * check if all requirements are met
1333     */
1334    private function checkRequirements()
1335    {
1336       if(!function_exists("imagecreatefromjpeg")) {
1337          print "PHP GD library extension is missing<br />\n";
1338          $missing = true;
1339       }
1340
1341       if(!function_exists("sqlite3_open")) {
1342          print "PHP SQLite3 library extension is missing<br />\n";
1343          $missing = true;
1344       }
1345
1346       /* Check for HTML_AJAX PEAR package, lent from Horde project */
1347       ini_set('track_errors', 1);
1348       @include_once 'HTML/AJAX/Server.php';
1349       if(isset($php_errormsg) && preg_match('/Failed opening.*for inclusion/i', $php_errormsg)) {
1350          print "PEAR HTML_AJAX package is missing<br />\n";
1351          $missing = true;
1352       }
1353       @include_once 'Calendar/Calendar.php';
1354       if(isset($php_errormsg) && preg_match('/Failed opening.*for inclusion/i', $php_errormsg)) {
1355          print "PEAR Calendar package is missing<br />\n";
1356          $missing = true;
1357       }
1358       ini_restore('track_errors');
1359
1360       if(isset($missing))
1361          return false;
1362
1363       return true;
1364
1365    } // checkRequirements()
1366
1367    private function _debug($text)
1368    {
1369       if($this->fromcmd) {
1370          print $text;
1371       }
1372
1373    } // _debug()
1374
1375    /**
1376     * check if specified MIME type is supported
1377     */
1378    public function checkifImageSupported($mime)
1379    {
1380       if(in_array($mime, Array("image/jpeg")))
1381          return true;
1382
1383       return false;
1384
1385    } // checkifImageSupported()
1386
1387    public function _warning($text)
1388    {
1389       print "<img src=\"resources/green_info.png\" alt=\"warning\" />\n";
1390       print $text;
1391
1392    } // _warning()
1393
1394    /**
1395     * output calendard input fields
1396     */
1397    private function get_calendar($mode)
1398    {
1399       $year = $_SESSION[$mode .'_date'] ? date("Y", strtotime($_SESSION[$mode .'_date'])) : date("Y");
1400       $month = $_SESSION[$mode .'_date'] ? date("m", strtotime($_SESSION[$mode .'_date'])) : date("m");
1401       $day = $_SESSION[$mode .'_date'] ? date("d", strtotime($_SESSION[$mode .'_date'])) : date("d");
1402
1403       $output = "<input type=\"text\" size=\"3\" id=\"". $mode ."year\" value=\"". $year ."\"";
1404       if(!isset($_SESSION[$mode .'_date'])) $output.= " disabled=\"disabled\"";
1405       $output.= " />\n";
1406       $output.= "<input type=\"text\" size=\"1\" id=\"". $mode ."month\" value=\"". $month ."\"";
1407       if(!isset($_SESSION[$mode .'_date'])) $output.= " disabled=\"disabled\"";
1408       $output.= " />\n";
1409       $output.= "<input type=\"text\" size=\"1\" id=\"". $mode ."day\" value=\"". $day ."\"";
1410       if(!isset($_SESSION[$mode .'_date'])) $output.= " disabled=\"disabled\"";
1411       $output.= " />\n";
1412       return $output;
1413
1414    } // get_calendar()
1415
1416    /**
1417     * output calendar matrix
1418     */
1419    public function get_calendar_matrix($year = 0, $month = 0, $day = 0)
1420    {
1421       if (!isset($year)) $year = date('Y');
1422       if (!isset($month)) $month = date('m');
1423       if (!isset($day)) $day = date('d');
1424       $rows = 1;
1425       $cols = 1;
1426       $matrix = Array();
1427
1428       require_once CALENDAR_ROOT.'Month/Weekdays.php';
1429       require_once CALENDAR_ROOT.'Day.php';
1430
1431       // Build the month
1432       $month = new Calendar_Month_Weekdays($year,$month);
1433
1434       // Create links
1435       $prevStamp = $month->prevMonth(true);
1436       $prev = "javascript:setMonth(". date('Y',$prevStamp) .", ". date('n',$prevStamp) .", ". date('j',$prevStamp) .");";
1437       $nextStamp = $month->nextMonth(true);
1438       $next = "javascript:setMonth(". date('Y',$nextStamp) .", ". date('n',$nextStamp) .", ". date('j',$nextStamp) .");";
1439
1440       $selectedDays = array (
1441          new Calendar_Day($year,$month,$day),
1442          new Calendar_Day($year,12,25),
1443       );
1444
1445       // Build the days in the month
1446       $month->build($selectedDays);
1447
1448       $this->tmpl->assign('current_month', date('F Y',$month->getTimeStamp()));
1449       $this->tmpl->assign('prev_month', $prev);
1450       $this->tmpl->assign('next_month', $next);
1451
1452       while ( $day = $month->fetch() ) {
1453    
1454          if(!isset($matrix[$rows]))
1455             $matrix[$rows] = Array();
1456
1457          $string = "";
1458
1459          $dayStamp = $day->thisDay(true);
1460          $link = "javascript:setCalendarDate(". date('Y',$dayStamp) .", ". date('n',$dayStamp).", ". date('j',$dayStamp) .");";
1461
1462          // isFirst() to find start of week
1463          if ( $day->isFirst() )
1464             $string.= "<tr>\n";
1465
1466          if ( $day->isSelected() ) {
1467             $string.= "<td class=\"selected\">".$day->thisDay()."</td>\n";
1468          } else if ( $day->isEmpty() ) {
1469             $string.= "<td>&nbsp;</td>\n";
1470          } else {
1471             $string.= "<td><a class=\"calendar\" href=\"".$link."\">".$day->thisDay()."</a></td>\n";
1472          }
1473
1474          // isLast() to find end of week
1475          if ( $day->isLast() )
1476             $string.= "</tr>\n";
1477
1478          $matrix[$rows][$cols] = $string;
1479
1480          $cols++;
1481
1482          if($cols > 7) {
1483             $cols = 1;
1484             $rows++;
1485          }
1486       }
1487
1488       $this->tmpl->assign('matrix', $matrix);
1489       $this->tmpl->assign('rows', $rows);
1490       $this->tmpl->show("calendar.tpl");
1491
1492    } // get_calendar_matrix()
1493
1494    /**
1495     * output export page
1496     */
1497    public function getExport($mode)
1498    {
1499       $pictures = $this->getPhotoSelection();
1500       $current_tags = $this->getCurrentTags();  
1501
1502       if(!isset($_SERVER['HTTPS'])) $protocol = "http";
1503       else $protocol = "https";
1504
1505       $server_name = $_SERVER['SERVER_NAME'];
1506
1507       foreach($pictures as $picture) {
1508
1509          $orig_url = $protocol ."://". $server_name . $this->cfg->web_path ."index.php?mode=showp&id=". $picture;
1510          if($current_tags != "") {
1511             $orig_url.= "&tags=". $current_tags;
1512          } 
1513          if(isset($_SESSION['from_date']) && isset($_SESSION['to_date'])) {
1514             $orig_url.= "&from_date=". $_SESSION['from_date'] ."&to_date=". $_SESSION['to_date'];
1515          }
1516
1517          $thumb_url = $protocol ."://". $server_name . $this->cfg->web_path ."phpfspot_img.php?idx=". $picture ."&width=". $this->cfg->thumb_width;
1518
1519          switch($mode) {
1520
1521             case 'HTML':
1522                // <a href="%pictureurl%"><img src="%thumbnailurl%" ></a>
1523                print htmlspecialchars("<a href=\"". $orig_url ."\"><img src=\"". $thumb_url ."\" /></a>") ."<br />\n";
1524                break;
1525                
1526             case 'MoinMoin':
1527                // [%pictureurl% %thumbnailurl%]
1528                print htmlspecialchars(" * [".$orig_url." ".$thumb_url."&fake=1.jpg]") ."<br />\n";
1529                break;
1530          }
1531
1532       }
1533
1534    } // getExport()
1535
1536    /**
1537     * return all selected tags as one string
1538     */
1539    private function getCurrentTags()
1540    {
1541       $current_tags = "";
1542       if($_SESSION['selected_tags'] != "") {
1543          foreach($_SESSION['selected_tags'] as $tag)
1544             $current_tags.= $tag .",";
1545          $current_tags = substr($current_tags, 0, strlen($current_tags)-1);
1546       }
1547       return $current_tags;
1548
1549    } // getCurrentTags()
1550
1551    /**
1552     * return the current photo
1553     */
1554    public function getCurrentPhoto()
1555    {
1556       if(isset($_SESSION['current_photo'])) {
1557          print $_SESSION['current_photo'];
1558       }
1559    } // getCurrentPhoto()
1560
1561    /**
1562     * tells the client browser what to do
1563     *
1564     * this function is getting called via AJAX by the
1565     * client browsers. it will tell them what they have
1566     * to do next. This is necessary for directly jumping
1567     * into photo index or single photo view when the are
1568     * requested with specific URLs
1569     */
1570    public function whatToDo()
1571    {
1572       if(isset($_SESSION['selected_tags']) && !empty($_SESSION['selected_tags'])) {
1573          return "showpi_tags";
1574       }
1575       elseif(isset($_SESSION['from_date']) && isset($_SESSION['to_date'])) {
1576          return "showpi_date";
1577       }
1578       elseif(isset($_SESSION['current_photo']) && $_SESSION['start_action'] == 'showp') {
1579          return "show_photo";
1580       }
1581       elseif(isset($_SESSION['start_action']) && $_SESSION['start_action'] == 'showpi') {
1582          return "showpi";
1583       }
1584
1585       return "nothing special";
1586
1587    } // whatToDo()
1588
1589    /**
1590     * return the current process-user
1591     */
1592    private function getuid()
1593    {
1594       if($uid = posix_getuid()) {
1595          if($user = posix_getpwuid($uid)) {
1596             return $user['name'];
1597          }
1598       }
1599    
1600       return 'n/a';
1601    
1602    } // getuid()
1603
1604 }
1605
1606 ?>