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 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898
|
<?php
/**
* A class corresponding to the people 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
*
* @author Jason Geiger
* @author Jeroen Roos
*
* @package Zoph
*/
use conf\conf;
use db\select;
use db\param;
use db\insert;
use db\update;
use db\delete;
use db\db;
use db\clause;
use db\selectHelper;
use photo\collection;
use template\template;
/**
* Person class
*
* @author Jason Geiger
* @author Jeroen Roos
* @package Zoph
*/
class person extends zophTable implements organizer {
use showPage;
/** @param Name of the root node in XML responses */
const XMLROOT="people";
/** @param Name of the leaf nodes in XML responses */
const XMLNODE="person";
/** @var string The name of the database table */
protected static $tableName="people";
/** @var array List of primary keys */
protected static $primaryKeys=array("person_id");
/** @var array Fields that may not be empty */
protected static $notNull=array("first_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 array Array of values that must be integer */
protected static $isInteger=array("person_id", "home_id", "work_id", "father_id", "mother_id", "spouse_id", "createdby");
/** @var string URL for this class */
protected static $url="person.php?person_id=";
/** @var array Cached Search Array */
protected static $sacache;
/** @var place Home address of this person */
public $home;
/** @var place Work address of this person */
public $work;
/**
* Insert a new record in the database
*/
public function insert() {
$this->set("createdby", (int) user::getCurrent()->getId());
$this->setDatesNull();
return parent::insert();
}
/**
* Update an existing record in the database
*/
public function update() {
$this->setDatesNull();
return parent::update();
}
/**
* Set dates to NULL if they're set to an empty string
*/
private function setDatesNull() {
if ($this->get("dob")==="") {
$this->set("dob", null);
}
if ($this->get("dod")==="") {
$this->set("dod", null);
}
}
/**
* Add this person to a photo.
* This records in the database that this person appears on the photo
* @param photo Photo to add the person to
*/
public function addPhoto(photo $photo, $row = 0) {
if (!(new photo\people($photo))->getPosition($this)) {
$pos = (new photo\people($photo))->getLastPos($row);
$pos++;
$qry=new insert(array("photo_people"));
$qry->addParams(array(
new param(":photo_id", (int) $photo->getId(), PDO::PARAM_INT),
new param(":person_id", (int) $this->getId() , PDO::PARAM_INT),
new param(":position", (int) $pos, PDO::PARAM_INT),
new param(":row", (int) $row, PDO::PARAM_INT)
));
$qry->execute();
} else {
// person is already in this photo
return false;
}
}
/**
* Remove person from a photo
* @param photo photo to remove the person from
*/
public function removePhoto(photo $photo) {
list($row, $pos) = (new photo\people($photo))->getPosition($this);
$where=new clause("photo_id=:photo_id");
$where->addAnd(new clause("person_id=:person_id"));
$params = array(
new param(":photo_id", (int) $photo->getId(), PDO::PARAM_INT),
new param(":person_id", (int) $this->getId(), PDO::PARAM_INT)
);
$qry=new delete("photo_people");
$qry->where($where);
$qry->addParams($params);
$qry->execute();
$qry=new update(array("photo_people"));
$where=new clause("photo_id=:photo_id");
$where->addAnd(new clause("position>:pos"));
$where->addAnd(new clause("`row`=:row"));
$qry->addSetFunction("position=position-1");
$params=array(
new param(":photo_id", (int) $photo->getId(), PDO::PARAM_INT),
new param(":pos", (int) $pos, PDO::PARAM_INT),
new param(":row", (int) $row, PDO::PARAM_INT)
);
$qry->addParams($params);
$qry->where($where);
$qry->execute();
}
/**
* Lookup from database
*/
public function lookup() {
parent::lookup();
$this->lookupPlaces();
}
/**
* Lookup home and work for this person
*/
private function lookupPlaces() {
if ($this->get("home_id") > 0) {
$this->home = new place($this->get("home_id"));
$this->home->lookup();
}
if ($this->get("work_id") > 0) {
$this->work = new place($this->get("work_id"));
$this->work->lookup();
}
}
/**
* Returns a photographer object for this person
* @return photographer
*/
public function getPhotographer() {
$photographer=new photographer($this->getId());
$photographer->lookup();
return $photographer;
}
/**
* Delete this person
* @todo calls 'die'
*/
public function delete() {
$id=(int) $this->getId();
if (!is_numeric($id)) { die("person_id is not numeric"); }
$params=array(
new param(":id", (int) $id, PDO::PARAM_INT)
);
$qry=new update(array("people"));
$qry->addSetFunction("father_id=null");
$where=new clause("father_id=:id");
$qry->where($where);
$qry->addParams($params);
$qry->execute();
$qry=new update(array("people"));
$qry->addSetFunction("mother_id=null");
$where=new clause("mother_id=:id");
$qry->where($where);
$qry->addParams($params);
$qry->execute();
$qry=new update(array("people"));
$qry->addSetFunction("spouse_id=null");
$where=new clause("spouse_id=:id");
$qry->where($where);
$qry->addParams($params);
$qry->execute();
$qry=new update(array("photos"));
$qry->addSetFunction("photographer_id=null");
$where=new clause("photographer_id=:id");
$qry->where($where);
$qry->addParams($params);
$qry->execute();
parent::delete(array("photo_people", "circles_people"));
}
/**
* Get gender
* @return string "male|female"
*/
private function getGender() {
if ($this->get("gender") == 1) { return translate("male"); }
if ($this->get("gender") == 2) { return translate("female"); }
}
/**
* Get father of this person
* @return person father
*/
private function getFather() {
return static::getFromId((int) $this->get("father_id"));
}
/**
* Get mother of this person
* @return person mother
*/
private function getMother() {
return static::getFromId((int) $this->get("mother_id"));
}
/**
* Get spouse of this person
* @return person spouse
*/
private function getSpouse() {
return static::getFromId((int) $this->get("spouse_id"));
}
/**
* Get children
* Since people cannot be nested, always returns null
*/
public function getChildren() {
return null;
}
/**
* Get name for this person
* @return string name
*/
public function getName() {
$this->lookup();
$name = $this->getShortName();
if ($this->get("last_name")) {
$name .= " " . $this->get("last_name");
}
return $name;
}
/**
* Get full name for this person, no 'called' and including middle name
* @return string name
*/
public function getFullName() {
$fn = array(
$this->get("first_name"),
$this->get("middle_name"),
$this->get("last_name")
);
// array_filter removes empty elements from the array, to eliminate duplicate spaces
return implode(" ", array_filter($fn));
}
/**
* Get short name for this person, if 'called' is set, returns 'called' otherwise the first name
* @return string name
*/
public function getShortName() {
return $this->get("called") ? $this->get("called") : $this->get("first_name");
}
/**
* Get mail address for this person
* @return string mailaddress
*/
public function getEmail() {
return $this->get("email");
}
/**
* HTML display of this person
* Returns only name for this person
* @return string name
*/
public function toHTML() {
return $this->getName();
}
/**
* Get a link to this person
* @todo Not proper OO, parent function does not have parameter
* @todo returns HTML
* @param int|bool show last name in link
*/
public function getLink($show_last_name = 1) {
if ($show_last_name) {
$name = $this->getName();
}
else {
$name = $this->get("called") ? $this->get("called") :
$this->get("first_name");
}
return "<a href=\"" . $this->getURL() . "\">$name</a>";
}
/**
* Get URL for this person
*/
public function getURL() {
return "person.php?person_id=" . $this->getId();
}
/**
* Get an array of the properties of this person object, for display
* @return array
*/
public function getDisplayArray() {
$mother=$this->getMother();
$father=$this->getFather();
$spouse=$this->getSpouse();
$dob = new Time($this->get("dob"));
$dod = new Time($this->get("dod"));
$display=array(
translate("called") => e($this->get("called")),
translate("full name") => $this->getFullName(),
translate("date of birth") => $dob->getLink(),
translate("date of death") => $dod->getLink(),
translate("gender") => e($this->getGender()));
if ($mother instanceof person) {
$display[translate("mother")] = $mother->getLink();
}
if ($father instanceof person) {
$display[translate("father")] = $father->getLink();
}
if ($spouse instanceof person) {
$display[translate("spouse")] = $spouse->getLink();
}
return $display;
}
/**
* Return the number of photos this person appears on
* @return int count
*/
public function getPhotoCount() {
return sizeof(collection::createFromVars(array(
"person_id" => $this->getId()
)));
}
/**
* Return the number of photos this person appears on.
* Wrapper around getPhotoCount() because there is no
* concept of sub-persons.
* @return int count
*/
public function getTotalPhotoCount() {
return $this->getPhotoCount();
}
/**
* Get coverphoto for this person.
* @param string how to select a coverphoto: oldest, newest, first, last, random, highest
* @return photo coverphoto
* @todo This function is almost equal to category::getAutoCover(), should be merged
*/
public function getAutoCover($autocover=null) {
$coverphoto=$this->getCoverphoto();
if ($coverphoto instanceof photo) {
return $coverphoto;
}
$qry=new select(array("p" => "photos"));
$qry->addFunction(array("photo_id" => "DISTINCT ar.photo_id"));
$qry->join(array("ar" => "view_photo_avg_rating"), "p.photo_id = ar.photo_id")
->join(array("pp" => "photo_people"), "p.photo_id = pp.photo_id");
$where=new clause("pp.person_id=:id");
$qry->addParam(new param(":id", $this->getId(), PDO::PARAM_INT));
$qry = selectHelper::expandQueryForUser($qry);
$qry=selectHelper::getAutoCoverOrder($qry, $autocover);
$qry->where($where);
$coverphotos=photo::getRecordsFromQuery($qry);
$coverphoto=array_shift($coverphotos);
if ($coverphoto instanceof photo) {
$coverphoto->lookup();
return $coverphoto;
}
}
/**
* Set first, middle, last and called name from single string
* "first", "first last", "first middle last last last"
* or "first:middle:last:called"
* @param string name
*/
public function setName($name) {
if (strpos($name, ":")!==false) {
$name_array=array_pad(explode(":", $name),4,null);
$this->set("first_name", $name_array[0]);
$this->set("middle_name", $name_array[1]);
$this->set("last_name", $name_array[2]);
$this->set("called", $name_array[3]);
} else {
$name_array=explode(" ", $name);
switch (sizeof($name_array)) {
case 0:
// shouldn't happen..
die("something went wrong, report a bug");
break;
case 1:
// Only one word, assume this is a first name
$this->set("first_name", $name_array[0]);
break;
case 2:
// Two words, asume this is first & last
$this->set("first_name", $name_array[0]);
$this->set("last_name", $name_array[1]);
break;
default:
// 3 or more, assume first two are first, middle, rest is last
$this->set("first_name", array_shift($name_array));
$this->set("middle_name", array_shift($name_array));
$this->set("last_name", implode(" ", $name_array));
break;
}
}
}
/**
* Get details (statistics) about this person from db
* @return array Array with statistics
* @todo this function is almost equal to category::getDetails() they should be merged
*/
public function getDetails() {
$qry=new select(array("p" => "photos"));
$qry->addFunction(array(
"count" => "COUNT(DISTINCT p.photo_id)",
"oldest" => "MIN(DATE_FORMAT(CONCAT_WS(' ',p.date,p.time), GET_FORMAT(DATETIME, 'ISO')))",
"newest" => "MAX(DATE_FORMAT(CONCAT_WS(' ',p.date,p.time), GET_FORMAT(DATETIME, 'ISO')))",
"first" => "MIN(p.timestamp)",
"last" => "MAX(p.timestamp)",
"lowest" => "ROUND(MIN(ar.rating),1)",
"highest" => "ROUND(MAX(ar.rating),1)",
"average" => "ROUND(AVG(ar.rating),2)"));
$qry->join(array("ar" => "view_photo_avg_rating"), "p.photo_id = ar.photo_id");
$qry->addGroupBy("p.photographer_id");
$where=new clause("p.photographer_id=:photographerid");
$qry->addParam(new param(":photographerid", $this->getId(), PDO::PARAM_INT));
$qry = selectHelper::expandQueryForUser($qry);
$qry->where($where);
$result=db::query($qry);
if ($result) {
return $result->fetch(PDO::FETCH_ASSOC);
} else {
return array();
}
}
/**
* Turn the array from @see getDetails() into XML
* @param array Don't fetch details, but use the given array
*/
public function getDetailsXML(array $details = array()) {
if (empty($details)) {
$details=$this->getDetails();
}
$details["title"]=translate("Photos taken by this person:", false);
return parent::getDetailsXML($details);
}
/**
* Get array of circles this person is a member of
* @return array of circles
*/
public function getCircles() {
$qry=new select(array("cp" => "circles_people"));
$qry->addFields(array("circle_id"));
$qry->where(new clause("person_id=:personid"));
$qry->addParam(new param(":personid", (int) $this->getId(), PDO::PARAM_INT));
return array_map(function($c) { $c->lookup(); return $c; }, circle::getRecordsFromQuery($qry));
}
/**
* Get array of circles this person is NOT a member of
* @return array of circles
*/
public function getNoCircles() {
$qry=new select(array("c" => "circles"));
$circles = $this->getCircles();
if (!empty($circles)) {
$circleIds=array_map(function($p) { return $p->getId(); }, $circles);
$param=new param(":circleIds", (array) $circleIds, PDO::PARAM_INT);
$qry->where(clause::NotInClause("c.circle_id", $param));
$qry->addParam($param);
}
return circle::getRecordsFromQuery($qry);
}
/**
* Create a dropdown to add this person to a circle
* @param string name for the dropdown field
* @return template Dropdown
*/
public function getCircleDropdown(string $name) {
$valueArray=array();
$circles=$this->getNoCircles();
$valueArray[0]=null;
foreach ($circles as $c) {
$c->lookup();
$valueArray[$c->getId()]=$c->getName();
}
return template::createDropdown($name, null, $valueArray);
}
/**
* Return whether the currently logged on user can see this person
* @param user Use this user instead of the logged in one
* @return bool whether or not this person should be visible
*/
public function isVisible(user $user=null) {
if (!$user) {
$user=user::getCurrent();
}
$all=static::getAllPeopleAndPhotographers();
$ids=array();
foreach ($all as $person) {
$ids[]=$person->getId();
}
return (in_array($this->getId(), $ids) || $user->isAdmin());
}
/**
* Is the user the creator of this person?
* @param user check for this user | current logged on user
*/
public function isCreator(user $user=null) {
if (!$user) {
$user=user::getCurrent();
}
return ($user->getId()===$this->get("createdby"));
}
public function isWritableBy(user $user) {
return $user->canEditOrganizers();
}
/**
* Lookup person by name;
* @param string name
* @param bool use 'like' lookup instead of exact lookup
*/
public static function getByName($name, $like=false) {
if (empty($name)) {
return false;
}
$qry=new select(array("ppl" => "people"));
$qry->addFields(array("person_id"));
$where=new clause("CONCAT_WS(\" \", lower(first_name), lower(last_name))" . (
$like ? " LIKE :name" : "=lower(:name)")
);
$qry->addParam(new param(":name", $like ? "%" . $name . "%" : $name, PDO::PARAM_STR));
$qry->where($where);
return static::getRecordsFromQuery($qry);
}
/**
* Get Top N people
*/
public static function getTopN() {
$user=user::getCurrent();
$qry=new select(array("ppl" => "people"));
$qry->addFields(array("person_id", "first_name", "last_name"));
$qry->addFunction(array("count" => "count(distinct pp.photo_id)"));
$qry->join(array("pp" => "photo_people"), "ppl.person_id=pp.person_id");
$qry->addGroupBy("ppl.person_id");
$qry->addOrder("count DESC")->addOrder("ppl.last_name")->addOrder("ppl.first_name");
$qry->addLimit((int) $user->prefs->get("reports_top_n"));
$qry = selectHelper::expandQueryForUser($qry);
return parent::getTopNfromSQL($qry);
}
/**
* Get all people
* @param string part of name to search for
* @param bool Search for first name
*/
public static function getAll($search=null, $search_first = false) {
$user=user::getCurrent();
$where=null;
$qry=new select(array("ppl" => "people"));
$qry->addFields(array("ppl.*"), true);
if (!is_null($search)) {
$where=static::getWhereForSearch($search, $search_first);
$qry->addParam(new param("search", $search, PDO::PARAM_STR));
if ($search_first) {
$qry->addParam(new param("searchfirst", $search, PDO::PARAM_STR));
}
}
$qry->addOrder("last_name")->addOrder("called")->addOrder("first_name");
$qry = selectHelper::expandQueryForUser($qry);
if ($where instanceof clause) {
$qry->where($where);
}
if (!$user->canSeeAllPhotos() && $user->canEditOrganizers()) {
$subqry=new select(array("ppl" => "people"));
$subqry->addFields(array("ppl.*"), true);
$subwhere=new clause("ppl.createdby=:ownerid");
$subqry->addParam(new param(":ownerid", (int) $user->getId(), PDO::PARAM_INT));
if (!is_null($search)) {
$subwhere->addAnd(static::getWhereForSearch($search, $search_first, "subsearch"));
$subqry->addParam(new param("subsearch", $search, PDO::PARAM_STR));
if ($search_first) {
$subqry->addParam(new param("subsearchfirst", $search, PDO::PARAM_STR));
}
}
$subqry->where($subwhere);
$qry->union($subqry);
}
return static::getRecordsFromQuery($qry);
}
/**
* Get XML tree of people
* @param string string to search for
* @param DOMDocument XML document to add children too
* @param DOMElement root node
* @return DOMDocument XML Document
*/
public static function getXMLdata($search, DOMDocument $xml, DOMElement $rootnode) {
if ($search=="") {
$search=null;
}
$records=static::getAll($search,true);
$idname=static::$primaryKeys[0];
foreach ($records as $record) {
$record->lookup();
$newchild=$xml->createElement(static::XMLNODE);
$key=$xml->createElement("key");
$title=$xml->createElement("title");
$key->appendChild($xml->createTextNode($record->get($idname)));
$title->appendChild($xml->createTextNode($record->getName()));
$newchild->appendChild($key);
$newchild->appendChild($title);
$rootnode->appendChild($newchild);
}
$xml->appendChild($rootnode);
return $xml;
}
/**
* Get autocomplete preference for people for the current user
* @return bool whether or not to autocomplete
*/
public static function getAutocompPref() {
$user=user::getCurrent();
return ($user->prefs->get("autocomp_people") && conf::get("interface.autocomplete"));
}
/**
* Get array to build select box
* @return array
*/
public static function getSelectArray() {
if (isset(static::$sacache)) {
return static::$sacache;
}
$ppl[""] = "";
$people_array = static::getAll();
foreach ($people_array as $person) {
$person->lookup();
$ppl[$person->getId()] =
($person->get("last_name") ? $person->get("last_name") . ", " : "") .
($person->get("called") ? $person->get("called") : $person->get("first_name"));
}
return $ppl;
}
/**
* Get number of people for a specific user
* @return int count
*/
public static function getCountForUser() {
if (user::getCurrent()->canSeeAllPhotos()) {
return static::getCount();
} else {
$allowed=array();
$people=static::getAll();
$photographers=photographer::getAll();
foreach ($people as $person) {
$allowed[]=$person->getId();
}
foreach ($photographers as $photographer) {
$allowed[]=$photographer->getId();
}
$allowed=array_unique($allowed);
return count($allowed);
}
}
/**
* Get all people and all photographers for the current logged on user
* @param string only return people whose name starts with this string
* @return int count
*/
public static function getAllPeopleAndPhotographers($search = null) {
$user=user::getCurrent();
$allowed=array();
$qry=new select(array("ppl" => "people"));
$qry->addOrder("ppl.last_name")->addOrder("ppl.called")->addOrder("ppl.first_name");
if (!$user->canSeeAllPhotos()) {
$people=(array)static::getAll($search);
$photographers=(array)photographer::getAll($search);
foreach ($people as $person) {
$person->lookup();
$allowed[]=$person->getId();
}
foreach ($photographers as $photographer) {
$photographer->lookup();
$allowed[]=$photographer->getId();
}
$allowed=array_unique($allowed);
if (count($allowed)==0) {
return array();
}
$param=new param(":person_ids", $allowed, PDO::PARAM_INT);
$qry->where(clause::InClause("person_id", $param));
$qry->addParam($param);
} else if ($search!==null) {
if(trim($search) != "") {
$qry->addParam(new param("search", $search, PDO::PARAM_STR));
}
$qry->where(static::getWhereForSearch($search));
}
$all=static::getRecordsFromQuery($qry);
$ids=array();
foreach ($all as $person) {
$ids[$person->getId()]=$person;
}
// Add the person assigned to this user
$personId=$user->get("person_id");
if ($personId) {
$person=new person($personId);
$person->lookup();
$pattern="/^" . $search . "/i";
if (is_null($search) || preg_match($pattern, $person->get("last_name"))) {
$ids[$personId]=$person;
}
}
return $ids;
}
/**
* Get all people and all photographers for the currently logged on user
* that are NOT a member of a circle
*/
public static function getAllNoCircle() {
$all = static::getAllPeopleAndPhotographers();
$circles = circle::getRecords();
$return=array();
foreach ($all as $person) {
$return[$person->getId()] = $person;
}
foreach ($circles as $circle) {
$members=$circle->getMembers();
foreach ($members as $member) {
if (isset($return[$member->getId()])){
unset($return[$member->getId()]);
}
}
}
return $return;
}
/**
* Get SQL WHERE clause to search for people
* @param string search string
* @param bool search for first name
* @param string use this as parameter name - necessary when multiple people searches are used in one query
* for example for (person1 AND person2) searches.
*/
public static function getWhereForSearch($search, $search_first=false, $paramname="search") {
$where=null;
if ($search!==null) {
if (trim($search)==="") {
$where=new clause("ppl.last_name=''");
$where->addOr(new clause("ppl.last_name is null"));
} else {
$where=new clause("ppl.last_name like lower(concat(:" . $paramname . ",'%'))");
if ($search_first) {
$where->addOr(
new clause("ppl.first_name like lower(concat(:" . $paramname . "first, '%'))")
);
}
}
}
return $where;
}
}
?>
|