'category_id', 'visible_categories' => 'category_id', 'visible_images' => 'ic.image_id' ), ' WHERE' ).' GROUP BY tag_id ORDER BY NULL'; $tag_counters = simple_hash_from_query($query, 'tag_id', 'counter'); if ( empty($tag_counters) ) { return array(); } $query = ' SELECT * FROM '.TAGS_TABLE; $result = pwg_query($query); $tags = array(); while ($row = mysql_fetch_assoc($result)) { $counter = @$tag_counters[ $row['id'] ]; if ( $counter ) { $row['counter'] = $counter; array_push($tags, $row); } } return $tags; } /** * All tags, even tags associated to no image. * * @return array */ function get_all_tags() { $query = ' SELECT * FROM '.TAGS_TABLE.' ;'; $result = pwg_query($query); $tags = array(); while ($row = mysql_fetch_assoc($result)) { array_push($tags, $row); } usort($tags, 'tag_alpha_compare'); return $tags; } /** * Giving a set of tags with a counter for each one, calculate the display * level of each tag. * * The level of each tag depends on the average count of tags. This * calcylation method avoid having very different levels for tags having * nearly the same count when set are small. * * @param array tags * @return array */ function add_level_to_tags($tags) { global $conf; if (count($tags) == 0) { return $tags; } $total_count = 0; foreach ($tags as $tag) { $total_count+= $tag['counter']; } // average count of available tags will determine the level of each tag $tag_average_count = $total_count / count($tags); // tag levels threshold calculation: a tag with an average rate must have // the middle level. for ($i = 1; $i < $conf['tags_levels']; $i++) { $threshold_of_level[$i] = 2 * $i * $tag_average_count / $conf['tags_levels']; } // display sorted tags foreach (array_keys($tags) as $k) { $tags[$k]['level'] = 1; // based on threshold, determine current tag level for ($i = $conf['tags_levels'] - 1; $i >= 1; $i--) { if ($tags[$k]['counter'] > $threshold_of_level[$i]) { $tags[$k]['level'] = $i + 1; break; } } } return $tags; } /** * return the list of image ids corresponding to given tags. AND & OR mode * supported. * * @param array tag ids * @param string mode * @return array */ function get_image_ids_for_tags($tag_ids, $mode = 'AND') { switch ($mode) { case 'AND': { // strategy is to list images associated to each tag $tag_images = array(); foreach ($tag_ids as $tag_id) { $query = ' SELECT image_id FROM '.IMAGE_TAG_TABLE.' WHERE tag_id = '.$tag_id.' ;'; $tag_images[$tag_id] = array_from_query($query, 'image_id'); } // then we calculate the intersection, the images that are associated to // every tags $items = array_shift($tag_images); foreach ($tag_images as $images) { $items = array_intersect($items, $images); } return $items; break; } case 'OR': { $query = ' SELECT DISTINCT image_id FROM '.IMAGE_TAG_TABLE.' WHERE tag_id IN ('.implode(',', $tag_ids).') ;'; return array_from_query($query, 'image_id'); break; } default: { die('get_image_ids_for_tags: unknown mode, only AND & OR are supported'); } } } /** * return a list of tags corresponding to given items. * * @param array items * @param array max_tags * @param array excluded_tag_ids * @return array */ function get_common_tags($items, $max_tags, $excluded_tag_ids=null) { if (empty($items)) { return array(); } $query = ' SELECT t.*, count(*) counter FROM '.IMAGE_TAG_TABLE.' INNER JOIN '.TAGS_TABLE.' t ON tag_id = id WHERE image_id IN ('.implode(',', $items).')'; if (!empty($excluded_tag_ids)) { $query.=' AND tag_id NOT IN ('.implode(',', $excluded_tag_ids).')'; } $query .=' GROUP BY tag_id'; if ($max_tags>0) { $query .= ' ORDER BY counter DESC LIMIT 0,'.$max_tags; } else { $query .= ' ORDER BY NULL'; } $result = pwg_query($query); $tags = array(); while($row = mysql_fetch_assoc($result)) { array_push($tags, $row); } usort($tags, 'tag_alpha_compare'); return $tags; } /** * return a list of tags corresponding to any of ids, url_names, names * * @param array ids * @param array url_names * @param array names * @return array */ function find_tags($ids, $url_names=array(), $names=array() ) { $where_clauses = array(); if ( !empty($ids) ) { $where_clauses[] = 'id IN ('.implode(',', $ids).')'; } if ( !empty($url_names) ) { $where_clauses[] = 'url_name IN ('. implode( ',', array_map( create_function('$s', 'return "\'".$s."\'";'), $url_names ) ) .')'; } if ( !empty($names) ) { $where_clauses[] = 'name IN ('. implode( ',', array_map( create_function('$s', 'return "\'".$s."\'";'), $names ) ) .')'; } if (empty($where_clauses)) { return array(); } $query = ' SELECT * FROM '.TAGS_TABLE.' WHERE '. implode( ' OR ', $where_clauses); $result = pwg_query($query); $tags = array(); while ($row = mysql_fetch_assoc($result)) { array_push($tags, $row); } return $tags; } ?>