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
|
<?php
/**
* Object for storing & retrieving searches
*
* 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
*
* @package Zoph
* @author Jeroen Roos
*/
use db\select;
use db\param;
use db\clause;
use template\block;
use web\request;
/**
* Store and retrieve searches
*
* @package Zoph
* @author Jeroen Roos
*/
class search extends zophTable {
/** @var string The name of the database table */
protected static $tableName = "saved_search";
/** @var array List of primary keys */
protected static $primaryKeys = array("search_id");
/** @var array Fields that may not be empty */
protected static $notNull = array("name");
/** @var bool keep keys with insert. In most cases the keys are set
by the db with auto_increment */
protected static $keepKeys = false;
/** @var string URL for this class */
protected static $url = "search.php?search_id=";
/**
* Update an existing search in the db
*/
public function update() {
$this->set("timestamp", "now()");
parent::update();
}
/**
* Lookup an existing search in the db
*/
public function lookup() {
$user = user::getCurrent();
$qry = new select(array("ss" => "saved_search"));
$where = new clause("search_id=:searchid");
$qry->addParam(new param(":searchid", $this->getId(), PDO::PARAM_INT));
if (!$user->isAdmin()) {
$clause = new clause("owner=:owner");
$qry->addParam(new param(":owner", $user->getId(), PDO::PARAM_INT));
$clause->addOr(new clause("public=TRUE"));
$where->addAnd($clause);
}
$qry->where($where);
return $this->lookupFromSQL($qry);
}
/**
* Get the name of this search
*/
public function getName() {
return $this->get("name");
}
/**
* Dummy function that acts as a placeholder for functionality that should be created
* someday
* @todo This should be created some time, but might slow down too much
*/
public function getPhotoCount() {
}
/**
* Display the search
*/
public function getLink() {
$user=user::getCurrent();
$tplData=array(
"href" => $this->getSearchURL() . "&_action=search",
"link" => $this->getName(),
"target" => ""
);
if ($this->get("owner") != $user->get("user_id")) {
$owner=new user($this->get("owner"));
$owner->lookup();
$tplData["owner"]=$owner;
}
return new block("savedSearch", $tplData);
}
/**
* Set search url from request
* @param request web request
*/
public function setSearchURL(request $request) {
$vars=$request->getRequestVarsClean(array("_action"));
if (isset($vars["_qs"])) {
$this->set("search", $request->getPassedQueryString());
} else {
$this->set("search", http_build_query($vars));
}
}
/**
* Get search query string
* @return string urlencoded query string
*/
public function getSearchQS() {
return urlencode($this->get("search"));
}
/**
* Get a link to use this search
* This is different from getURL(), the URL returned by this function will take you to the
* photo page, with the saved search applied.
*/
public function getSearchURL() {
return "search.php?" . $this->get("search");
}
/**
* Get a link to this search
* @return string url
*/
public function getURL() {
return "search.php?search_id=" . $this->getId();
}
/**
* Get a list of saved searches
* @return block template saved searches
*/
public static function getList() {
$user=user::getCurrent();
$searches=static::getRecords("name", array(
"owner" => $user->getId(),
"public" => "true"
), "OR");
if ($searches) {
return new block("savedSearches", array(
"searches" => $searches,
"user" => $user
));
}
}
}
?>
|