| | Copyright: copyright (C) 2004 by Mike de Boer | | Description: zOOm Image Gallery, a multi-gallery component for | | Mambo based on RSGallery by Ronald Smit. It's the most | | feature-rich gallery component for Mambo! | | Filename: gallery.class.php | | Version: 2.1.1 | | | ----------------------------------------------------------------------- **/ // MOS Intruder Alerts defined( '_VALID_MOS' ) or die( 'Direct Access to this location is not allowed.' ); class gallery{ var $_id = null; var $_name = null; var $_decr = null; var $_dir = null; var $_cat_img = null; var $_password = null; var $_keywords = null; var $_subcat_id = null; var $_pos = null; var $_hideMsg = null; var $_shared = null; var $_published = null; var $_uid = null; var $_sql = null; var $_result = null; var $_subcats = array(); var $_images = array(); var $_members = array(); function gallery($gallery_id, $galleryview = false){ global $database, $zoom; if ($galleryview == true) { $this->_id = $gallery_id; $this->getInfo($galleryview); }else{ $this->_id = $gallery_id; $this->getInfo($galleryview); // getting sub-categories (sub-galleries...) $this->getSubCats($galleryview); // getting gallery images... $this->getImages($galleryview); } } function getInfo($galleryview = false){ global $database; $database->setQuery("SELECT catname, catdescr, catdir, catimg, subcat_id, catpassword, pos, hideMsg, shared, published, uid, catmembers FROM #__zoom WHERE catid=".mysql_escape_string($this->_id)." LIMIT 1"); $this->_result = $database->query(); if(mysql_num_rows($this->_result) > 0){ while($row = mysql_fetch_object($this->_result)){ $this->_name = stripslashes($row->catname); $this->_descr = stripslashes($row->catdescr); $this->_dir = $row->catdir; $this->_cat_img = $row->catimg; $this->_subcat_id = $row->subcat_id; $this->_password = $row->catpassword; $this->_pos = $row->pos; $this->_hideMsg = $row->hideMsg; $this->_shared = $row->shared; $this->_published = $row->published; $this->_uid = $row->uid; $members = explode(",", $row->catmembers); // gallery-members of type 1 are of access-level 'public' // and members of type 2 are 'registered'. if(in_array("1", $members)) $this->_members[0] = 1; elseif(in_array("2", $members)) $this->_members[0] = 2; else $this->_members = $members; } }else{ die("This is not a valid gallery-id. Please return to the homepage and try again."); } } function getSubCats($galleryview = false){ global $database, $zoom; $orderMethod = $zoom->getCatOrderMethod(); $database->setQuery("SELECT catid FROM #__zoom WHERE subcat_id=".mysql_escape_string($this->_id)." ORDER BY ".$orderMethod); $this->_result = $database->query(); while($row = mysql_fetch_object($this->_result)){ if ($galleryview == true) { $subcat = new stdClass(); }else{ $subcat = new gallery($row->catid, true); } $this->_subcats[] = $subcat; } } function getImages($galleryview = false){ global $database, $zoom; $orderMethod = $zoom->getOrderMethod(); if($zoom->_isAdmin) $database->setQuery("SELECT imgid FROM #__zoomfiles WHERE catid = ".mysql_escape_string($this->_id)." ORDER BY ".$orderMethod); else $database->setQuery("SELECT imgid FROM #__zoomfiles WHERE catid = ".mysql_escape_string($this->_id)." AND published = 1 ORDER BY ".$orderMethod); $this->_result = $database->query(); while($row = mysql_fetch_object($this->_result)){ if ($galleryview == true) { $image = new stdClass(); }else{ $image = new image($row->imgid); } $this->_images[] = $image; } } function setCatImg(){ global $database, $zoom; /** Quick explanation: - first, the function checks if a category-image has been set for this gallery. If not, and the gallery is one at the FIRST level (one of the main galleries), the first image present in the gallery is returned... - second, the function retrieves the filename and CORRECT directory of the category image from the database (in case the category image is from a higher level gallery) and returns the complete path in the end! **/ if (isset($this->_cat_img) && !empty($this->_cat_img)){ $this->_cat_img = new image($this->_cat_img); $this->_cat_img->getInfo(); }else{ $database->setQuery("SELECT pos FROM #__zoom WHERE catid = ".mysql_escape_string($this->_id)." LIMIT 1"); $this->_result = $database->query(); $row = mysql_fetch_object($this->_result); if ($row->pos == 0){ $database->setQuery("SELECT imgid FROM #__zoomfiles WHERE catid=".$this->_id." ORDER BY ".$zoom->getOrderMethod()." LIMIT 1"); $this->_result = $database->query(); $xxx = mysql_fetch_object($this->_result); if(isset($xxx->imgid) && !empty($xxx->imgid)){ $this->_cat_img = new image($xxx->imgid); $this->_cat_img->getInfo(); } } } } function getSubcatName(){ global $database; $database->setQuery("SELECT catname FROM #__zoom WHERE catid=".$this->_subcat_id." LIMIT 1"); $this->_result = $database->query(); while($row = mysql_fetch_object($this->_result)){ return $row->catname; } } function getKeywords(){ global $database; $database->setQuery("SELECT catkeywords FROM #__zoom WHERE catid = ".$this->_id." LIMIT 1"); if ($result = $database->query()) { $row = mysql_fetch_object($result); $this->_keywords = $row->catkeywords; } } function getCatVirtPath(){ global $database; // first, get the pos of this category $pos = $this->_pos; $subcat_id = $this->_subcat_id; if ($pos==0 && $subcat_id==0){ return "> ".$this->_name; }else{ // second, get the different subcat-names in an array... $catnames = array(); $i = $pos; while ($i>=1){ $database->setQuery("SELECT catname, subcat_id FROM #__zoom WHERE catid = ".$subcat_id." LIMIT 1"); $this->_result = $database->query(); $row2 = mysql_fetch_object($this->_result); $subcat_id = $row2->subcat_id; $catnames[$i] = $row2->catname; $i--; } // third, place the array (dirs) in a single return-string $retname = ""; $i = 1; while ($i<=$pos){ if($i==1) $retname .= "> ".$catnames[$i]; else $retname .= " > ".$catnames[$i]; $i++; } return $retname." > ".$this->_name; } } function getNumOfImages(){ global $database; if(isset($this->_images) && !empty($this->_images)){ return count($this->_images); }else{ // double check if there are no media in gallery AND resource saver for gallery-view! $database->setQuery("SELECT COUNT(imgid) AS no FROM #__zoomfiles WHERE catid = ".$this->_id." LIMIT 1"); $result = $database->query(); while ($row = mysql_fetch_object($result)) { return $row->no; } } } function getNumOfSubCats(){ global $database; if(isset($this->_subcats) && !empty($this->_subcats)){ return count($this->_subcats); }else{ $database->setQuery("SELECT COUNT(catid) AS no FROM #__zoom WHERE subcat_id = ".$this->_id." LIMIT 1"); $result = $database->query(); while ($row = mysql_fetch_object($result)) { return $row->no; } } } function getDir(){ return $this->_dir; } function checkPassword($pass){ global $zoom; $pass = md5($pass); if ($zoom->_EditMon->isEdited($this->_id, 'pass')){ return true; }elseif ($this->_password == $pass){ $zoom->_EditMon->setEditMon($this->_id, 'pass'); return true; }else{ return false; } } function isShared(){ if($this->_shared == 1) return true; else return false; } function isPublished(){ if($this->_published == 1) return true; else return false; } function isMember(){ global $my, $zoom; $id = intval($my->id); if (strtolower($my->usertype) == 'registered') $registered = true; else $registered = false; if(in_array(1, $this->_members) || (in_array(2, $this->_members) && $registered) || in_array($id, $this->_members) || $zoom->_isAdmin) return true; else return false; // if(in_array(1, $this->_members) || in_array(2, $this->_members) || in_array($id, $this->_members) || $zoom->_isAdmin) // return true; // else // return false; } function getImage($id){ foreach($this->_images as $image){ if($image->_id == $id) return $image; } } function getImageKey($id){ $count = 0; foreach($this->_images as $image){ if($image->_id == $id) return $count; else $count++; } } }