1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260
|
<?php
/*
* A class corresponding to the places table.
*
* This file is part of Zoph.
*
* Zoph is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* Zoph is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with Zoph; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
class place extends zoph_tree_table {
function place($id = 0) {
parent::zoph_table("places", array("place_id"), array("title"));
$this->set("place_id", $id);
}
function get_name() {
if ($this->get("title")) { return $this->get("title"); }
if ($this->get("address")) { $name = $this->get("address"); }
if ($this->get("city")) { $name .= ", " . $this->get("city"); }
return $name;
}
function get_address() {
$html = "";
if ($this->get("address")) {
$html .= $this->get("address") . "<br>\n";
}
if ($this->get("address2")) {
$html .= $this->get("address2") . "<br>\n";
}
if ($this->get("city")) { $html .= $this->get("city"); }
if ($this->get("city") && $this->get("state")) { $html .= ", "; }
if ($this->get("state")) { $html .= $this->get("state"); }
if ($this->get("zip")) { $html .= " " . $this->get("zip"); }
if ($this->get("country")) {
$html .= "<br>\n" . $this->get("country") . "\n";
}
return $html;
}
function to_html() {
$html = "";
if ($this->get("title")) {
$html .= "<h2>" . $this->get("title") . "</h2>\n";
}
$html .= $this->get_address();
if($this->get("url")) {
$html .= "<br><br>\n";
$html .= "<a href=\"" . $this->get("url") . "\">";
$html .= $this->get("urldesc") . "</a>";
}
return $html;
}
function get_link() {
$link = "<a href=\"places.php?parent_place_id=" . $this->get("place_id") . "\">" . $this->get_name() . "</a>";
// add city link if title exists (and so was used by get_name())
// if ($this->get("title") && $this->get("city")) {
// $link .= ", <a href=\"places.php?_l=" . rawurlencode(strtolower($this->get("city"))) . "\">" . $this->get("city") . "</a>";
// }
return $link;
}
function get_display_array() {
return array(
translate("address") => $this->get("address"),
translate("address") . "2" => $this->get("address2"),
translate("city") => $this->get("city"),
translate("state") => $this->get("state"),
translate("zip") => $this->get("zip"),
translate("country") => $this->get("country"),
translate("notes") => $this->get("notes"));
}
function get_photo_count($user = null) {
if ($this->photo_count) { return $photo_count; }
$id = $this->get("place_id");
if ($user && !$user->is_admin()) {
$sql =
"select count(*) from " .
DB_PREFIX . "photo_albums as pa, " .
DB_PREFIX . "photos as p, " .
DB_PREFIX . "album_permissions as ap " .
"where p.location_id = $id" .
" and ap.user_id = '" . escape_string($user->get("user_id")) .
"' and ap.album_id = pa.album_id" .
" and pa.photo_id = p.photo_id " .
" and ap.access_level >= p.level";
}
else {
$sql =
"select count(*) from " .
DB_PREFIX . "photos " .
"where location_id = '" . escape_string($id) . "'";
}
return get_count_from_query($sql);
}
function get_total_photo_count($user = null) {
if ($this->get("parent_place_id")) {
$id_list = $this->get_branch_ids($user);
$id_constraint = "p.location_id in ($id_list)";
}
else {
$id_constraint = "";
}
if ($user && !$user->is_admin()) {
$sql =
"select count(distinct pa.photo_id) from " .
DB_PREFIX . "photo_albums as pa, " .
DB_PREFIX . "photos as p, " .
DB_PREFIX . "album_permissions as ap " .
"where ap.user_id = '" . escape_string($user->get("user_id")) .
"' and ap.album_id = pa.album_id " .
" and pa.photo_id = p.photo_id " .
" and ap.access_level >= p.level";
if ($id_constraint) {
$sql .= " and $id_constraint";
}
}
else {
$sql =
"select count(distinct p.photo_id) from " .
DB_PREFIX . "photos p ";
"where ($id_values)";
if ($id_constraint) {
$sql .= " where $id_constraint";
}
}
return get_count_from_query($sql);
}
}
function get_places($constraints = null, $conj = "and", $ops = null,
$order = "city, title, address") {
return get_records("place", $order, $constraints, $conj, $ops);
}
function get_children() {
$id = $this->get("album_id");
if (!$id) { return; }
$sql =
"select place_id, title, address, address2, city, ".
"state, zip, country, notes from " .
DB_PREFIX . "places" .
"where p.parent_place_id = '" . escape_string($id) . "'" .
" order by p.title";
$this->children = get_records_from_query("album", $sql);
return $this->children;
}
function get_root_place() {
return new place(1);
}
function get_photographed_places($user = null) {
if ($user && !$user->is_admin()) {
$query =
"select distinct plc.* from " .
DB_PREFIX . "places as plc, " .
DB_PREFIX . "photos as ph, " .
DB_PREFIX . "photo_albums as pa, " .
DB_PREFIX . "album_permissions as ap " .
"where ap.user_id = '" . escape_string($user->get("user_id")) . "' " .
" and ap.album_id = pa.album_id" .
" and pa.photo_id = ph.photo_id" .
" and ap.access_level >= ph.level" .
" and ph.location_id = plc.place_id " .
"order by plc.city, plc.title";
}
else {
$query =
"select distinct plc.* from " .
DB_PREFIX . "places as plc, " .
DB_PREFIX . "photos as ph " .
"where plc.place_id = ph.location_id " .
"order by plc.city, plc.title";
}
return get_records_from_query("place", $query);
}
function get_places_select_array($user = null, $search = 0) {
return create_tree_select_array("place", $user, null, "", null, $search);
}
function get_places_search_array($user = null) {
return get_places_select_array($user, 1);
}
function get_popular_places($user) {
global $TOP_N;
if ($user && !$user->is_admin()) {
$sql =
"select plc.*, count(distinct ph.photo_id) as count from " .
DB_PREFIX . "places as plc, " .
DB_PREFIX . "photos as ph, " .
DB_PREFIX . "photo_albums as pa, " .
DB_PREFIX . "album_permissions as ap " .
"where ap.user_id = '" . escape_string($user->get("user_id")) . "'" .
" and ap.album_id = pa.album_id" .
" and pa.photo_id = ph.photo_id" .
" and ph.location_id = plc.place_id" .
" and ap.access_level >= ph.level " .
"group by plc.place_id " .
"order by count desc, plc.title, plc.city " .
"limit 0, $TOP_N";
}
else {
$sql =
"select plc.*, count(*) as count from " .
DB_PREFIX . "places as plc, " .
DB_PREFIX . "photos as ph " .
"where plc.place_id = ph.location_id " .
"group by plc.place_id " .
"order by count desc, plc.title, plc.city " .
"limit 0, $TOP_N";
}
return get_popular_results("place", $sql);
}
?>
|