don't touch tag selection anymore on tag-search
[phpfspot.git] / phpfspot.class.php
index b635b30256da6c1174dca62f24e429437262db9e..c4dddb4efb3e85eed087f0348eb08441aa5bbdb4 100644 (file)
@@ -100,7 +100,7 @@ class PHPFSPOT {
 
    public function showPhoto($photo)
    {
-      $all_photos = $this->getAllTagPhotos();
+      $all_photos = $this->getPhotoSelection();
 
       foreach($all_photos as $all_photo) {
          
@@ -193,10 +193,29 @@ class PHPFSPOT {
 
    } // resetTags()
 
-   public function getAllTagPhotos()
+   public function getPhotoSelection()
    {  
       $tagged_photos = Array();
 
+      /* return a search result */
+      if(isset($_SESSION['searchfor']) && $_SESSION['searchfor'] != '') {
+         $result = $this->db->db_query("
+            SELECT DISTINCT photo_id
+               FROM photo_tags pt
+            INNER JOIN photos p
+               ON p.id=pt.photo_id
+            INNER JOIN tags t
+               ON pt.tag_id=t.id
+            WHERE t.name LIKE '%". $_SESSION['searchfor'] ."%'
+               ORDER BY p.time ASC
+         ");
+         while($row = $this->db->db_fetch_object($result)) {
+            array_push($tagged_photos, $row['photo_id']);
+         }
+         return $tagged_photos;
+      }
+
+      /* return according the selected tags */
       if(isset($_SESSION['selected_tags'])) {
          $selected = "";
          foreach($_SESSION['selected_tags'] as $tag)
@@ -245,30 +264,27 @@ class PHPFSPOT {
                   array_push($tagged_photos, $row['photo_id']);
             }
          }
-      }
-      else {
-         $result = $this->db->db_query("
-            SELECT DISTINCT photo_id
-               FROM photo_tags pt
-            INNER JOIN photos p
-               ON p.id=pt.photo_id
-            ORDER BY p.time ASC
-         ");
-         while($row = $this->db->db_fetch_object($result)) {
-            array_push($tagged_photos, $row['photo_id']);
-         }
+         return $tagged_photos;
       }
 
+      /* return all available photos */
+      $result = $this->db->db_query("
+         SELECT DISTINCT photo_id
+            FROM photo_tags pt
+         INNER JOIN photos p
+            ON p.id=pt.photo_id
+         ORDER BY p.time ASC
+      ");
+      while($row = $this->db->db_fetch_object($result)) {
+         array_push($tagged_photos, $row['photo_id']);
+      }
       return $tagged_photos;
 
-   } // getAllTagPhotos()
+   } // getPhotoSelection()
 
    public function showPhotoIndex()
    {
-      if($_SESSION['searchfor'] == '')
-         $photos = $this->getAllTagPhotos();
-      else
-         $photos = $this->getSearchResult($_SESSION['searchfor']);
+      $photos = $this->getPhotoSelection();
 
       $count = count($photos);
 
@@ -416,7 +432,7 @@ class PHPFSPOT {
    {
       if(!$idx) {
          /* get all available photos */
-         $all = $this->getAllTagPhotos();
+         $all = $this->getPhotoSelection();
       }
       else
          $all = Array($idx);
@@ -492,30 +508,7 @@ class PHPFSPOT {
    {
       $_SESSION['searchfor'] = $searchfor;
 
-   } // showSearchResult()
-
-   public function getSearchResult($for)
-   {
-      $tagged_photos = Array();
-
-      $result = $this->db->db_query("
-         SELECT DISTINCT photo_id
-            FROM photo_tags pt
-         INNER JOIN photos p
-            ON p.id=pt.photo_id
-         INNER JOIN tags t
-            ON pt.tag_id=t.id
-         WHERE t.name LIKE '%". $for ."%'
-            ORDER BY p.time ASC
-      ");
-
-      while($row = $this->db->db_fetch_object($result)) {
-         array_push($tagged_photos, $row['photo_id']);
-      }
-
-      return $tagged_photos;
-
-   } // getSearchResult()
+   } // startSearch()
 
 }