issue20, jumping back to the right multipage is now possible
[phpfspot.git] / phpfspot.class.php
1 <?php
2
3 require_once "phpfspot_cfg.php";
4 require_once "phpfspot_db.php";
5 require_once "phpfspot_tmpl.php";
6
7 class PHPFSPOT {
8
9    var $cfg;
10    var $db;
11    var $cfg_db;
12    var $tmpl;
13    var $tags;
14    var $avail_tags;
15    var $current_tags;
16
17    public function __construct()
18    {
19       /* Check necessary requirements */
20       if(!$this->checkRequirements()) {
21          exit(1);
22       }
23
24       $this->cfg = new PHPFSPOT_CFG;
25
26       $this->db  = new PHPFSPOT_DB(&$this, $this->cfg->fspot_db);
27       $this->cfg_db = new PHPFSPOT_DB(&$this, $this->cfg->phpfspot_db);
28       $this->check_config_table();
29
30       $this->tmpl = new PHPFSPOT_TMPL($this);
31
32       $this->get_tags();
33
34       session_start();
35
36       if(!isset($_SESSION['tag_condition']))
37          $_SESSION['tag_condition'] = 'or';
38
39       if(!isset($_SESSION['searchfor']))
40          $_SESSION['searchfor'] = '';
41
42       // if begin_with is still set but rows_per_page is now 0, unset it
43       if(isset($_SESSION['begin_with']) && $this->cfg->rows_per_page == 0)
44          unset($_SESSION['begin_with']);
45
46    } // __construct()
47
48    public function __destruct()
49    {
50
51    } // __destruct()
52
53    public function show()
54    {
55       $this->tmpl->assign('searchfor', $_SESSION['searchfor']);
56       $this->tmpl->assign('page_title', $this->cfg->page_title);
57       $this->tmpl->assign('current_condition', $_SESSION['tag_condition']);
58
59       switch($_GET['mode']) {
60          case 'showpi':
61             if(isset($_GET['tags'])) {
62                $_SESSION['selected_tags'] = split(',', $_GET['tags']);
63             }
64             break;
65       }
66
67       $this->tmpl->assign('content_page', 'welcome.tpl');
68       $this->tmpl->show("index.tpl");
69
70
71    } // show()
72
73    private function get_tags()
74    {
75    
76       $this->avail_tags = Array();
77       $count = 0;
78    
79       $result = $this->db->db_query("
80          SELECT id,name
81          FROM tags
82          ORDER BY sort_priority ASC
83       ");
84       
85       while($row = $this->db->db_fetch_object($result)) {
86
87          $tag_id = $row['id'];
88          $tag_name = $row['name'];
89
90          /* check if config requests to ignore this tag */
91          if(in_array($row['name'], $this->cfg->hide_tags))
92             continue;
93
94          $this->tags[$tag_id] = $tag_name; 
95          $this->avail_tags[$count] = $tag_id;
96
97          $count++;
98
99       }
100
101    } // get_tags()
102
103    public function get_photo_details($idx)
104    {
105       $result = $this->db->db_query("
106          SELECT *
107          FROM photos
108          WHERE id='". $idx ."'
109       ");
110       
111       return $this->db->db_fetch_object($result);
112
113    } // get_photo_details
114
115    public function translate_path($path, $width = 0)
116    {  
117       return str_replace($this->cfg->path_replace_from, $this->cfg->path_replace_to, $path);
118
119    } // translate_path
120
121    public function showPhoto($photo)
122    {
123       $all_photos = $this->getPhotoSelection();
124       $count = count($all_photos);
125
126       for($i = 0; $i < $count; $i++) {
127          
128          if($get_next) {
129             $next_img = $all_photos[$i];
130             break;
131          }
132
133          if($all_photos[$i] == $photo) {
134             $get_next = 1;
135          }
136          else {
137             $previous_img = $all_photos[$i];
138          }
139
140          if($photo == $all_photos[$i]) {
141                $current = $i;
142          }
143       }
144
145       $details = $this->get_photo_details($photo);
146       $orig_path = $this->translate_path($details['directory_path']) ."/". $details['name'];
147       $thumb_path = $this->cfg->base_path ."/thumbs/". $this->cfg->photo_width ."_". $this->getMD5($photo);
148
149       if(!file_exists($orig_path)) {
150          $this->_warning("Photo ". $orig_path ." does not exist!<br />\n");
151       }
152
153       if(!is_readable($orig_path)) {
154          $this->_warning("Photo ". $orig_path ." is not readable for user ". get_current_user() ."<br />\n");
155       }
156
157       /* If the thumbnail doesn't exist yet, try to create it */
158       if(!file_exists($thumb_path)) {
159          $this->gen_thumb($photo, true);
160       }
161
162       $meta = $this->get_meta_informations($orig_path);
163
164       $meta_date = isset($meta['FileDateTime']) ? strftime("%a %x %X", $meta['FileDateTime']) : "n/a";
165       $meta_make = isset($meta['Make']) ? $meta['Make'] ." ". $meta['Model'] : "n/a";
166       $meta_res  = isset($meta['ExifImageWidth']) ?  $meta['ExifImageWidth'] ."x". $meta['ExifImageLength'] : "n/a";
167       $meta_size = isset($meta['FileSize']) ? round($meta['FileSize']/1024, 1) ."kbyte" : "n/a";
168
169       if(file_exists($thumb_path)) {
170
171          $info = getimagesize($thumb_path);
172
173          $this->tmpl->assign('description', $details['description']);
174          $this->tmpl->assign('image_name', $details['name']);
175
176          $this->tmpl->assign('width', $info[0]);
177          $this->tmpl->assign('height', $info[1]);
178          $this->tmpl->assign('ExifMadeOn', $meta_date);
179          $this->tmpl->assign('ExifMadeWith', $meta_make);
180          $this->tmpl->assign('ExifOrigResolution', $meta_res);
181          $this->tmpl->assign('ExifFileSize', $meta_size);
182     
183          $this->tmpl->assign('image_url', 'phpfspot_img.php?idx='. $photo ."&amp;width=". $this->cfg->photo_width);
184          $this->tmpl->assign('image_url_full', 'phpfspot_img.php?idx='. $photo);
185
186          $this->tmpl->assign('tags', $this->get_photo_tags($photo));
187          $this->tmpl->assign('current', $current);
188       }
189       else {
190          $this->_warning("Can't open file ". $thumb_path ."\n");
191       }
192
193       if($previous_img) {
194          $this->tmpl->assign('previous_url', "javascript:showImage(". $previous_img .");");
195       }
196
197       if($next_img) {
198          $this->tmpl->assign('next_url', "javascript:showImage(". $next_img .");");
199       }
200
201       $this->tmpl->show("single_photo.tpl");
202
203    } // showPhoto()
204
205    public function getAvailableTags()
206    {
207       $result = $this->db->db_query("
208          SELECT tag_id as id, count(tag_id) as quantity
209          FROM photo_tags
210          INNER JOIN tags t
211             ON t.id = tag_id
212          GROUP BY tag_id
213          ORDER BY t.name ASC
214       ");
215
216       $tags = Array();
217
218       while($row = $this->db->db_fetch_object($result)) {
219          $tags[$row['id']] = $row['quantity'];
220       }
221
222       // change these font sizes if you will
223       $max_size = 125; // max font size in %
224       $min_size = 75; // min font size in %
225
226       // get the largest and smallest array values
227       $max_qty = max(array_values($tags));
228       $min_qty = min(array_values($tags));
229
230       // find the range of values
231       $spread = $max_qty - $min_qty;
232       if (0 == $spread) { // we don't want to divide by zero
233          $spread = 1;
234       }
235
236       // determine the font-size increment
237       // this is the increase per tag quantity (times used)
238       $step = ($max_size - $min_size)/($spread);
239
240       // loop through our tag array
241       foreach ($tags as $key => $value) {
242
243          if(isset($_SESSION['selected_tags']) && in_array($key, $_SESSION['selected_tags']))
244             continue;
245
246           // calculate CSS font-size
247           // find the $value in excess of $min_qty
248           // multiply by the font-size increment ($size)
249           // and add the $min_size set above
250          $size = $min_size + (($value - $min_qty) * $step);
251           // uncomment if you want sizes in whole %:
252          $size = ceil($size);
253
254          print "<a href=\"javascript:Tags('add', ". $key .");\" class=\"tag\" style=\"font-size: ". $size ."%;\">". $this->tags[$key] ."</a>, ";
255
256       }
257
258    } // getAvailableTags()
259
260    public function getSelectedTags()
261    {
262       foreach($this->avail_tags as $tag)
263       {
264          // return all selected tags
265          if(isset($_SESSION['selected_tags']) && in_array($tag, $_SESSION['selected_tags'])) {
266             print "<a href=\"javascript:Tags('del', ". $tag .");\" class=\"tag\">". $this->tags[$tag] ."</a>&nbsp;";
267          }
268
269       }
270
271    } // getSelectedTags()
272
273    public function addTag($tag)
274    {
275       if(!isset($_SESSION['selected_tags']))
276          $_SESSION['selected_tags'] = Array();
277
278       if(!in_array($tag, $_SESSION['selected_tags']))
279          array_push($_SESSION['selected_tags'], $tag);
280    
281    } // addTag()
282
283    public function delTag($tag)
284    {
285       if(isset($_SESSION['selected_tags'])) {
286          $key = array_search($tag, $_SESSION['selected_tags']);
287          unset($_SESSION['selected_tags'][$key]);
288          sort($_SESSION['selected_tags']);
289       }
290
291    } // delTag()
292
293    public function resetTags()
294    {
295       unset($_SESSION['selected_tags']);
296
297    } // resetTags()
298
299    public function resetTagSearch()
300    {
301       unset($_SESSION['searchfor']);
302
303    } // resetTagSearch()
304
305    public function getPhotoSelection()
306    {  
307       $tagged_photos = Array();
308
309       /* return a search result */
310       if(isset($_SESSION['searchfor']) && $_SESSION['searchfor'] != '') {
311          $result = $this->db->db_query("
312             SELECT DISTINCT photo_id
313                FROM photo_tags pt
314             INNER JOIN photos p
315                ON p.id=pt.photo_id
316             INNER JOIN tags t
317                ON pt.tag_id=t.id
318             WHERE t.name LIKE '%". $_SESSION['searchfor'] ."%'
319                ORDER BY p.time ASC
320          ");
321          while($row = $this->db->db_fetch_object($result)) {
322             array_push($tagged_photos, $row['photo_id']);
323          }
324          return $tagged_photos;
325       }
326
327       /* return according the selected tags */
328       if(isset($_SESSION['selected_tags']) && !empty($_SESSION['selected_tags'])) {
329          $selected = "";
330          foreach($_SESSION['selected_tags'] as $tag)
331             $selected.= $tag .",";
332          $selected = substr($selected, 0, strlen($selected)-1);
333
334          if($_SESSION['tag_condition'] == 'or') {
335             $result = $this->db->db_query("
336                SELECT DISTINCT photo_id
337                   FROM photo_tags pt
338                INNER JOIN photos p
339                   ON p.id=pt.photo_id
340                WHERE pt.tag_id IN (". $selected .")
341                ORDER BY p.time ASC
342             ");
343          }
344          elseif($_SESSION['tag_condition'] == 'and') {
345
346             /* Join together a table looking like
347
348                pt1.photo_id pt1.tag_id pt2.photo_id pt2.tag_id ...
349
350                so the query can quickly return all images matching the
351                selected tags in an AND condition
352
353             */
354
355             $query_str = "
356                SELECT DISTINCT pt1.photo_id
357                   FROM photo_tags pt1
358             ";
359
360             for($i = 0; $i < count($_SESSION['selected_tags']); $i++) {
361                $query_str.= "
362                   INNER JOIN photo_tags pt". ($i+2) ."
363                      ON pt1.photo_id=pt". ($i+2) .".photo_id
364                ";
365             }
366             $query_str.= "WHERE pt1.tag_id=". $_SESSION['selected_tags'][0];
367             for($i = 1; $i < count($_SESSION['selected_tags']); $i++) {
368                $query_str.= "
369                   AND pt". ($i+1) .".tag_id=". $_SESSION['selected_tags'][$i] ."
370                "; 
371             }
372             $result = $this->db->db_query($query_str);
373          }
374
375          while($row = $this->db->db_fetch_object($result)) {
376             array_push($tagged_photos, $row['photo_id']);
377          }
378          return $tagged_photos;
379       }
380
381       /* return all available photos */
382       $result = $this->db->db_query("
383          SELECT DISTINCT photo_id
384             FROM photo_tags pt
385          INNER JOIN photos p
386             ON p.id=pt.photo_id
387          ORDER BY p.time ASC
388       ");
389       while($row = $this->db->db_fetch_object($result)) {
390          array_push($tagged_photos, $row['photo_id']);
391       }
392       return $tagged_photos;
393
394    } // getPhotoSelection()
395
396    public function showPhotoIndex()
397    {
398       $photos = $this->getPhotoSelection();
399
400       $count = count($photos);
401
402       if(!isset($this->cfg->rows_per_page) || $this->cfg->rows_per_page == 0) {
403
404          $begin_with = 0;
405          $end_with = $count;
406
407       }
408       elseif($this->cfg->rows_per_page > 0) {
409
410          if(!$_SESSION['begin_with'] || $_SESSION['begin_with'] == 0)
411             $begin_with = 0;
412          else {
413
414             $begin_with = $_SESSION['begin_with'];
415
416             // verify $begin_with - perhaps the thumbs-per-rows or
417             // rows-per-page variables have changed or the jump back
418             // from a photo wasn't exact - so calculate the real new
419             // starting point
420             $multiplicator = $this->cfg->rows_per_page * $this->cfg->thumbs_per_row;
421             for($i = 0; $i <= $count; $i+=$multiplicator) {
422                if($begin_with >= $i && $begin_with < $i+$multiplicator) {
423                   $begin_with = $i;
424                   break;
425                }
426             }
427          }
428
429          $end_with = $begin_with + ($this->cfg->rows_per_page * $this->cfg->thumbs_per_row);
430       }
431
432    
433       $rows = 0;
434       $cols = 0;
435       $images[$rows] = Array();
436       $img_height[$rows] = Array();
437       $img_width[$rows] = Array();
438
439       for($i = $begin_with; $i < $end_with; $i++) {
440
441          $images[$rows][$cols] = $photos[$i];
442
443          $thumb_path = $this->cfg->base_path ."/thumbs/". $this->cfg->thumb_width ."_". $this->getMD5($photos[$i]);
444
445          if(file_exists($thumb_path)) {
446             $info = getimagesize($thumb_path); 
447             $img_width[$rows][$cols] = $info[0];
448             $img_height[$rows][$cols] = $info[1];
449          }
450
451          if($cols == $this->cfg->thumbs_per_row-1) {
452             $cols = 0;
453             $rows++;
454             $images[$rows] = Array();
455             $img_width[$rows] = Array();
456             $img_height[$rows] = Array();
457          }
458          else {
459             $cols++;
460          }
461       } 
462
463       // +1 for for smarty's selection iteration
464       $rows++;
465
466       if(isset($_SESSION['searchfor']) && $_SESSION['searchfor'] != '')
467          $this->tmpl->assign('searchfor', $_SESSION['searchfor']);
468
469       if($this->cfg->rows_per_page != 0) {
470       
471          /* calculate the page switchers */
472          $previous_start = $begin_with - ($this->cfg->rows_per_page * $this->cfg->thumbs_per_row);
473          $next_start = $begin_with + ($this->cfg->rows_per_page * $this->cfg->thumbs_per_row);
474
475          if($begin_with != 0) 
476             $this->tmpl->assign("previous_url", "javascript:showPhotoIndex(". $previous_start .");"); 
477          if($end_with < $count)
478             $this->tmpl->assign("next_url", "javascript:showPhotoIndex(". $next_start .");"); 
479
480          /* page selector */
481          $photo_per_page  = $this->cfg->rows_per_page * $this->cfg->thumbs_per_row;
482
483          /* until 6 pages we show the selector from 1-6
484             everything large will be
485             1 ... 2 3 4 (5) 6 7 ... 9
486          */ 
487          $last_page = ceil($count / $photo_per_page);
488
489          if($begin_with == 0) {
490             $current_page = 1;
491          } 
492          else {
493             $current_page = 0;
494             for($i = $begin_with; $i >= 0; $i-=$photo_per_page) {
495                $current_page++;
496             }
497          } 
498
499          for($i = 1; $i <= $last_page; $i++) {
500
501             if($current_page == $i)
502                $style = "style=\"font-size: 125%;\"";
503             elseif($current_page-1 == $i || $current_page+1 == $i)
504                $style = "style=\"font-size: 105%;\"";
505             elseif(($current_page-5 >= $i) && ($i != 1) ||
506                ($current_page+5 <= $i) && ($i != $last_page))
507                $style = "style=\"font-size: 75%;\"";
508             else
509                $style = "";
510
511             $page_select.= "<a href=\"javascript:showPhotoIndex(". (($i*$photo_per_page)-$photo_per_page) .");\"";
512             if($style != "")
513                $page_select.= $style;
514             $page_select.= ">". $i ."</a>&nbsp;";
515
516          }
517
518          /* only show the page selector if we have more then one page */
519          if($last_page > 1)
520             $this->tmpl->assign('page_selector', $page_select);
521       }
522
523       $current_tags = "";
524       if($_SESSION['selected_tags'] != "") {
525          foreach($_SESSION['selected_tags'] as $tag)
526             $current_tags.= $tag .",";
527          $current_tags = substr($current_tags, 0, strlen($current_tags)-1);
528       }
529
530       $extern_link = "http://". $_SERVER['SERVER_NAME'] ."/index.php?mode=showpi&tags=". $current_tags;
531
532       $this->tmpl->assign('extern_link', $extern_link);
533       $this->tmpl->assign('count', $count);
534       $this->tmpl->assign('width', $this->cfg->thumb_width);
535       $this->tmpl->assign('images', $images);
536       $this->tmpl->assign('img_width', $img_width);
537       $this->tmpl->assign('img_height', $img_height);
538       $this->tmpl->assign('rows', $rows);
539       $this->tmpl->assign('columns', $this->cfg->thumbs_per_row);
540       $this->tmpl->show("photo_index.tpl");
541
542
543    } // showPhotoIndex()
544
545    public function showBubbleDetails($photo, $direction)
546    {
547       if($direction == "up")
548          $direction = "bubbleimg_up";
549       else
550          $direction = "bubbleimg_down";
551
552       $details = $this->get_photo_details($photo);
553       $orig_path = $this->translate_path($details['directory_path'])  ."/". $details['name'];
554
555       $image_url = "phpfspot_img.php?idx=". $photo ."&amp;width=". $this->cfg->bubble_width;
556
557       $filesize = filesize($orig_path);
558       $filesize = rand($filesize/1024, 2);
559
560       if(!file_exists($orig_path)) {
561          $this->_warning("Photo ". $orig_path ." does not exist!<br />\n");
562          return;
563       }
564       
565       if(!is_readable($orig_path)) {
566          $this->_warning("Photo ". $orig_path ." is not readable for user ". get_current_user() ."<br />\n");
567          return;
568       }
569
570       $img = getimagesize($orig_path);
571
572       $this->tmpl->assign('file_size', $filesize);
573       $this->tmpl->assign('width', $img[0]);
574       $this->tmpl->assign('height', $img[1]);
575       $this->tmpl->assign('file_name', $details['name']);
576       $this->tmpl->assign('image_id', $direction);
577       $this->tmpl->assign('image_url', $image_url);
578       $this->tmpl->show("bubble_details.tpl");
579
580    } // showBubbleDetails()
581
582    public function showCredits()
583    {
584       $this->tmpl->assign('version', $this->cfg->version);
585       $this->tmpl->assign('product', $this->cfg->product);
586       $this->tmpl->show("credits.tpl");
587
588    } // showCredits()
589
590    public function create_thumbnail($orig_image, $thumb_image, $width)
591    {  
592       if(!file_exists($orig_image))
593          return false;
594
595       $details = getimagesize($orig_image);
596       
597       /* check if original photo is a support image type */
598       if(!$this->checkifImageSupported($details['mime']))
599          return false;
600
601       $meta = $this->get_meta_informations($orig_image);
602
603       $rotate = 0;
604       $flip = false;
605
606       switch($meta['Orientation']) {
607
608          case 1:
609             $rotate = 0; $flip = false; break;
610          case 2:
611             $rotate = 0; $flip = true; break;
612          case 3:
613             $rotate = 180; $flip = false; break;
614          case 4:
615             $rotate = 180; $flip = true; break;
616          case 5:
617             $rotate = 90; $flip = true; break;
618          case 6:
619             $rotate = 90; $flip = false; break;
620          case 7:
621             $rotate = 270; $flip = true; break;
622          case 8:
623             $rotate = 270; $flip = false; break;
624       }
625
626       $src_img = @imagecreatefromjpeg($orig_image);
627
628       if(!$src_img) {
629          print "Can't load image from ". $orig_image ."\n";
630          return false;
631       }
632
633       /* grabs the height and width */
634       $new_w = imagesx($src_img);
635       $new_h = imagesy($src_img);
636
637       // If requested width is more then the actual image width,
638       // do not generate a thumbnail
639
640       if($width >= $new_w) {
641          imagedestroy($src_img);
642          return true;
643       }
644
645       /* calculates aspect ratio */
646       $aspect_ratio = $new_h / $new_w;
647
648       /* sets new size */
649       $new_w = $width;
650       $new_h = abs($new_w * $aspect_ratio);
651
652       /* creates new image of that size */
653       $dst_img = imagecreatetruecolor($new_w, $new_h);
654
655       imagefill($dst_img, 0, 0, ImageColorAllocate($dst_img, 255, 255, 255));
656
657       /* copies resized portion of original image into new image */
658       imagecopyresampled($dst_img,$src_img,0,0,0,0,$new_w,$new_h,imagesx($src_img),imagesy($src_img));
659
660       /* needs the image to be flipped horizontal? */
661       if($flip) {
662          print "(FLIP)";
663          $image = $dst_img;
664          for($x = 0; $x < $new_w; $x++) {
665             imagecopy($dst_img, $image, $x, 0, $w - $x - 1, 0, 1, $h);
666          }
667       }
668
669       if($rotate) {
670          print "(ROTATE)";
671          $dst_img = $this->rotateImage($dst_img, $rotate);
672       }
673
674       /* write down new generated file */
675       $result = imagejpeg($dst_img, $thumb_image, 75);
676
677       /* free your mind */
678       imagedestroy($dst_img);
679       imagedestroy($src_img);
680
681       if($result === false) {
682          print "Can't write thumbnail ". $thumb_image ."\n";
683          return false;
684       }
685
686       return true;
687
688    } // create_thumbnail()
689
690    public function get_meta_informations($file)
691    {
692       return exif_read_data($file);
693
694    } // get_meta_informations()
695
696    public function check_config_table()
697    {
698       // if the config table doesn't exist yet, create it
699       if(!$this->cfg_db->db_check_table_exists("images")) {
700          $this->cfg_db->db_exec("
701             CREATE TABLE images (
702                img_idx int primary key,
703                img_md5 varchar(32)
704             )
705             ");
706       }
707
708    } // check_config_table
709
710    /**
711     * Generates a thumbnail from photo idx
712     *
713     * This function will generate JPEG thumbnails from provided F-Spot photo
714     * indizes.
715     *
716     * 1. Check if all thumbnail generations (width) are already in place and
717     *    readable
718     * 2. Check if the md5sum of the original file has changed
719     * 3. Generate the thumbnails if needed
720     */
721    public function gen_thumb($idx = 0, $force = 0)
722    {
723       $error = 0;
724
725       $resolutions = Array(
726          $this->cfg->thumb_width,
727          $this->cfg->bubble_width,
728          $this->cfg->photo_width,
729       );
730
731       /* get details from F-Spot's database */
732       $details = $this->get_photo_details($idx);
733
734       /* calculate file MD5 sum */
735       $full_path = $this->translate_path($details['directory_path'])  ."/". $details['name'];
736
737       if(!file_exists($full_path)) {
738          $this->_warning("File ". $full_path ." does not exist\n");
739          return;
740       }
741
742       if(!is_readable($full_path)) {
743          $this->_warning("File ". $full_path ." is not readable for ". get_current_user() ."\n");
744          return;
745       }
746
747       $file_md5 = md5_file($full_path);
748
749       $this->_debug("Image [". $idx ."] ". $details['name'] ." Thumbnails:");
750
751       foreach($resolutions as $resolution) {
752
753          $thumb_path = $this->cfg->base_path ."/thumbs/". $resolution ."_". $file_md5;
754
755          /* if the thumbnail file doesn't exist, create it */
756          if(!file_exists($thumb_path)) {
757
758             $this->_debug(" ". $resolution ."px");
759             if(!$this->create_thumbnail($full_path, $thumb_path, $resolution))
760                $error = 1;
761          }
762
763          /* if the file hasn't changed there is no need to regen the thumb */
764          elseif($file_md5 != $this->getMD5($idx) || $force) {
765
766             $this->_debug(" ". $resolution ."px");
767             if(!$this->create_thumbnail($full_path, $thumb_path, $resolution))
768                $error = 1;
769
770          }
771       }
772
773       /* set the new/changed MD5 sum for the current photo */
774       if(!$error) {
775          $this->setMD5($idx, $file_md5);
776       }
777
778       $this->_debug("\n");
779
780    } // gen_thumb()
781
782    public function getMD5($idx)
783    {
784       $result = $this->cfg_db->db_query("
785          SELECT img_md5 
786          FROM images
787          WHERE img_idx='". $idx ."'
788       ");
789
790       if(!$result)
791          return 0;
792
793       $img = $this->cfg_db->db_fetch_object($result);
794       return $img['img_md5'];
795       
796    } // getMD5()
797
798    private function setMD5($idx, $md5)
799    {
800       $result = $this->cfg_db->db_exec("
801          REPLACE INTO images (img_idx, img_md5)
802          VALUES ('". $idx ."', '". $md5 ."')
803       ");
804
805    } // setMD5()
806
807    public function setTagCondition($mode)
808    {
809       $_SESSION['tag_condition'] = $mode;
810
811    } // setTagCondition()
812
813    public function startTagSearch($searchfor)
814    {
815       $_SESSION['searchfor'] = $searchfor;
816       $_SESSION['selected_tags'] = Array();
817
818       foreach($this->avail_tags as $tag) {
819          if(preg_match('/'. $searchfor .'/i', $this->tags[$tag]))
820             array_push($_SESSION['selected_tags'], $tag);
821       }
822
823    } // startTagSearch()
824
825    private function rotateImage($img, $degrees)
826    {
827       if(function_exists("imagerotate"))
828          $img = imagerotate($img, $degrees, 0);
829       else
830       {
831          function imagerotate($src_img, $angle)
832          {
833             $src_x = imagesx($src_img);
834             $src_y = imagesy($src_img);
835             if ($angle == 180) {
836                $dest_x = $src_x;
837                $dest_y = $src_y;
838             }
839             elseif ($src_x <= $src_y) {
840                $dest_x = $src_y;
841                $dest_y = $src_x;
842             }
843             elseif ($src_x >= $src_y) {
844                $dest_x = $src_y;
845                $dest_y = $src_x;
846             }
847                
848             $rotate=imagecreatetruecolor($dest_x,$dest_y);
849             imagealphablending($rotate, false);
850                
851             switch ($angle) {
852             
853                case 90:
854                   for ($y = 0; $y < ($src_y); $y++) {
855                      for ($x = 0; $x < ($src_x); $x++) {
856                         $color = imagecolorat($src_img, $x, $y);
857                         imagesetpixel($rotate, $dest_x - $y - 1, $x, $color);
858                      }
859                   }
860                   break;
861
862                case 270:
863                   for ($y = 0; $y < ($src_y); $y++) {
864                      for ($x = 0; $x < ($src_x); $x++) {
865                         $color = imagecolorat($src_img, $x, $y);
866                         imagesetpixel($rotate, $y, $dest_y - $x - 1, $color);
867                      }
868                   }
869                   break;
870
871                case 180:
872                   for ($y = 0; $y < ($src_y); $y++) {
873                      for ($x = 0; $x < ($src_x); $x++) {
874                         $color = imagecolorat($src_img, $x, $y);
875                         imagesetpixel($rotate, $dest_x - $x - 1, $dest_y - $y - 1, $color);
876                      }
877                   }
878                   break;
879
880                default: $rotate = $src_img;
881             };
882
883             return $rotate;
884
885          }
886
887          $img = imagerotate($img, $degrees);
888
889       }
890
891       return $img;
892
893    } // rotateImage()
894
895    private function get_photo_tags($idx)
896    {
897       $result = $this->db->db_query("
898          SELECT t.id, t.name
899          FROM tags t
900          INNER JOIN photo_tags pt
901             ON t.id=pt.tag_id
902          WHERE pt.photo_id='". $idx ."'
903       ");
904
905       $tags = Array();
906
907       while($row = $this->db->db_fetch_object($result))
908          $tags[$row['id']] = $row['name'];
909
910       return $tags;
911
912    } // get_photo_tags()
913
914    public function showTextImage($txt, $color=000000, $space=4, $font=4, $w=300)
915    {
916       if (strlen($color) != 6) 
917          $color = 000000;
918
919       $int = hexdec($color);
920       $h = imagefontheight($font);
921       $fw = imagefontwidth($font);
922       $txt = explode("\n", wordwrap($txt, ($w / $fw), "\n"));
923       $lines = count($txt);
924       $im = imagecreate($w, (($h * $lines) + ($lines * $space)));
925       $bg = imagecolorallocate($im, 255, 255, 255);
926       $color = imagecolorallocate($im, 0xFF & ($int >> 0x10), 0xFF & ($int >> 0x8), 0xFF & $int);
927       $y = 0;
928
929       foreach ($txt as $text) {
930          $x = (($w - ($fw * strlen($text))) / 2);
931          imagestring($im, $font, $x, $y, $text, $color);
932          $y += ($h + $space);
933       }
934
935       Header("Content-type: image/png");
936       ImagePng($im);
937
938    } // showTextImage()
939
940    private function checkRequirements()
941    {
942       if(!function_exists("imagecreatefromjpeg")) {
943          print "PHP GD library extension is missing<br />\n";
944          $missing = true;
945       }
946
947       if(!function_exists("sqlite3_open")) {
948          print "PHP SQLite3 library extension is missing<br />\n";
949          $missing = true;
950       }
951
952       /* Check for HTML_AJAX PEAR package, lent from Horde project */
953       ini_set('track_errors', 1);
954       @include_once 'HTML/AJAX/Server.php';
955       if(isset($php_errormsg)) {
956          print "PEAR HTML_AJAX package is missing<br />\n";
957          $missing = true;
958       }
959       ini_restore('track_errors');
960
961       if(isset($missing))
962          return false;
963
964       return true;
965
966    } // checkRequirements()
967
968    private function _debug($text)
969    {
970       if($this->fromcmd) {
971          print $text;
972       }
973
974    } // _debug()
975
976    public function checkifImageSupported($mime)
977    {
978       if(in_array($mime, Array("image/jpeg")))
979          return true;
980
981       return false;
982
983    } // checkifImageSupported()
984
985    public function _warning($text)
986    {
987       print "<img src=\"resources/green_info.png\" alt=\"warning\" />\n";
988       print $text;
989
990    } // _warning()
991
992 }
993
994 ?>