18c2e8227SGreg Roach<?php 28c2e8227SGreg Roachnamespace Fisharebest\Webtrees; 38c2e8227SGreg Roach 48c2e8227SGreg Roach/** 58c2e8227SGreg Roach * webtrees: online genealogy 68c2e8227SGreg Roach * Copyright (C) 2015 webtrees development team 78c2e8227SGreg Roach * This program is free software: you can redistribute it and/or modify 88c2e8227SGreg Roach * it under the terms of the GNU General Public License as published by 98c2e8227SGreg Roach * the Free Software Foundation, either version 3 of the License, or 108c2e8227SGreg Roach * (at your option) any later version. 118c2e8227SGreg Roach * This program is distributed in the hope that it will be useful, 128c2e8227SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of 138c2e8227SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 148c2e8227SGreg Roach * GNU General Public License for more details. 158c2e8227SGreg Roach * You should have received a copy of the GNU General Public License 168c2e8227SGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>. 178c2e8227SGreg Roach */ 188c2e8227SGreg Roach 198c2e8227SGreg Roach/** 208c2e8227SGreg Roach * Class DescendancyModule 218c2e8227SGreg Roach */ 22e2a378d3SGreg Roachclass DescendancyModule extends AbstractModule implements ModuleSidebarInterface { 238c2e8227SGreg Roach /** {@inheritdoc} */ 248c2e8227SGreg Roach public function getTitle() { 258c2e8227SGreg Roach return /* I18N: Name of a module/sidebar */ 268c2e8227SGreg Roach I18N::translate('Descendants'); 278c2e8227SGreg Roach } 288c2e8227SGreg Roach 298c2e8227SGreg Roach /** {@inheritdoc} */ 308c2e8227SGreg Roach public function getDescription() { 318c2e8227SGreg Roach return /* I18N: Description of the “Descendants” module */ 328c2e8227SGreg Roach I18N::translate('A sidebar showing the descendants of an individual.'); 338c2e8227SGreg Roach } 348c2e8227SGreg Roach 358c2e8227SGreg Roach /** {@inheritdoc} */ 368c2e8227SGreg Roach public function modAction($modAction) { 3724ec66ceSGreg Roach global $WT_TREE; 3824ec66ceSGreg Roach 398c2e8227SGreg Roach header('Content-Type: text/html; charset=UTF-8'); 408c2e8227SGreg Roach 418c2e8227SGreg Roach switch ($modAction) { 428c2e8227SGreg Roach case 'search': 438c2e8227SGreg Roach $search = Filter::get('search'); 442622ba92SGreg Roach echo $this->search($search, $WT_TREE); 458c2e8227SGreg Roach break; 468c2e8227SGreg Roach case 'descendants': 4724ec66ceSGreg Roach $individual = Individual::getInstance(Filter::get('xref', WT_REGEX_XREF), $WT_TREE); 488c2e8227SGreg Roach if ($individual) { 498c2e8227SGreg Roach echo $this->loadSpouses($individual, 1); 508c2e8227SGreg Roach } 518c2e8227SGreg Roach break; 528c2e8227SGreg Roach default: 538c2e8227SGreg Roach http_response_code(404); 548c2e8227SGreg Roach break; 558c2e8227SGreg Roach } 568c2e8227SGreg Roach } 578c2e8227SGreg Roach 588c2e8227SGreg Roach /** {@inheritdoc} */ 598c2e8227SGreg Roach public function defaultSidebarOrder() { 608c2e8227SGreg Roach return 30; 618c2e8227SGreg Roach } 628c2e8227SGreg Roach 638c2e8227SGreg Roach /** {@inheritdoc} */ 648c2e8227SGreg Roach public function hasSidebarContent() { 658c2e8227SGreg Roach return !Auth::isSearchEngine(); 668c2e8227SGreg Roach } 678c2e8227SGreg Roach 688c2e8227SGreg Roach /** {@inheritdoc} */ 698c2e8227SGreg Roach public function getSidebarAjaxContent() { 708c2e8227SGreg Roach return ''; 718c2e8227SGreg Roach } 728c2e8227SGreg Roach 738c2e8227SGreg Roach /** {@inheritdoc} */ 748c2e8227SGreg Roach public function getSidebarContent() { 758c2e8227SGreg Roach global $controller; 768c2e8227SGreg Roach 778c2e8227SGreg Roach $controller->addInlineJavascript(' 788c2e8227SGreg Roach function dsearchQ() { 798c2e8227SGreg Roach var query = jQuery("#sb_desc_name").val(); 808c2e8227SGreg Roach if (query.length>1) { 818c2e8227SGreg Roach jQuery("#sb_desc_content").load("module.php?mod=' . $this->getName() . '&mod_action=search&search="+query); 828c2e8227SGreg Roach } 838c2e8227SGreg Roach } 848c2e8227SGreg Roach 858c2e8227SGreg Roach jQuery("#sb_desc_name").focus(function(){this.select();}); 868c2e8227SGreg Roach jQuery("#sb_desc_name").blur(function(){if (this.value=="") this.value="' . I18N::translate('Search') . '";}); 878c2e8227SGreg Roach var dtimerid = null; 888c2e8227SGreg Roach jQuery("#sb_desc_name").keyup(function(e) { 898c2e8227SGreg Roach if (dtimerid) window.clearTimeout(dtimerid); 908c2e8227SGreg Roach dtimerid = window.setTimeout("dsearchQ()", 500); 918c2e8227SGreg Roach }); 928c2e8227SGreg Roach 938c2e8227SGreg Roach jQuery("#sb_desc_content").on("click", ".sb_desc_indi", function() { 948c2e8227SGreg Roach var self = jQuery(this), 958c2e8227SGreg Roach state = self.children(".plusminus"), 968c2e8227SGreg Roach target = self.siblings("div"); 978c2e8227SGreg Roach if(state.hasClass("icon-plus")) { 988c2e8227SGreg Roach if (jQuery.trim(target.html())) { 998c2e8227SGreg Roach target.show("fast"); // already got content so just show it 1008c2e8227SGreg Roach } else { 1018c2e8227SGreg Roach target 1028c2e8227SGreg Roach .hide() 1038c2e8227SGreg Roach .load(self.attr("href"), function(response, status, xhr) { 1048c2e8227SGreg Roach if(status == "success" && response !== "") { 1058c2e8227SGreg Roach target.show("fast"); 1068c2e8227SGreg Roach } 1078c2e8227SGreg Roach }) 1088c2e8227SGreg Roach } 1098c2e8227SGreg Roach } else { 1108c2e8227SGreg Roach target.hide("fast"); 1118c2e8227SGreg Roach } 1128c2e8227SGreg Roach state.toggleClass("icon-minus icon-plus"); 1138c2e8227SGreg Roach return false; 1148c2e8227SGreg Roach }); 1158c2e8227SGreg Roach '); 1168c2e8227SGreg Roach 1178c2e8227SGreg Roach return 1188c2e8227SGreg Roach '<form method="post" action="module.php?mod=' . $this->getName() . '&mod_action=search" onsubmit="return false;">' . 1198c2e8227SGreg Roach '<input type="search" name="sb_desc_name" id="sb_desc_name" placeholder="' . I18N::translate('Search') . '">' . 1208c2e8227SGreg Roach '</form>' . 1218c2e8227SGreg Roach '<div id="sb_desc_content">' . 1228c2e8227SGreg Roach '<ul>' . $this->getPersonLi($controller->record, 1) . '</ul>' . 1238c2e8227SGreg Roach '</div>'; 1248c2e8227SGreg Roach } 1258c2e8227SGreg Roach 1268c2e8227SGreg Roach /** 1278c2e8227SGreg Roach * @param Individual $person 1288c2e8227SGreg Roach * @param integer $generations 1298c2e8227SGreg Roach * 1308c2e8227SGreg Roach * @return string 1318c2e8227SGreg Roach */ 1328c2e8227SGreg Roach public function getPersonLi(Individual $person, $generations = 0) { 1338c2e8227SGreg Roach $icon = $generations > 0 ? 'icon-minus' : 'icon-plus'; 1348c2e8227SGreg Roach $lifespan = $person->canShow() ? '(' . $person->getLifeSpan() . ')' : ''; 1358c2e8227SGreg Roach $spouses = $generations > 0 ? $this->loadSpouses($person, 0) : ''; 1362622ba92SGreg Roach 1372622ba92SGreg Roach return 1382622ba92SGreg Roach '<li class="sb_desc_indi_li">' . 1392622ba92SGreg Roach '<a class="sb_desc_indi" href="module.php?mod=' . $this->getName() . '&mod_action=descendants&xref=' . $person->getXref() . '">' . 1402622ba92SGreg Roach '<i class="plusminus ' . $icon . '"></i>' . 1412622ba92SGreg Roach $person->getSexImage() . $person->getFullName() . $lifespan . 1422622ba92SGreg Roach '</a>' . 1432622ba92SGreg Roach '<a class="icon-button_indi" href="' . $person->getHtmlUrl() . '"></a>' . 1442622ba92SGreg Roach '<div>' . $spouses . '</div>' . 1452622ba92SGreg Roach '</li>'; 1468c2e8227SGreg Roach } 1478c2e8227SGreg Roach 1488c2e8227SGreg Roach /** 1498c2e8227SGreg Roach * @param Family $family 1508c2e8227SGreg Roach * @param Individual $person 1518c2e8227SGreg Roach * @param integer $generations 1528c2e8227SGreg Roach * 1538c2e8227SGreg Roach * @return string 1548c2e8227SGreg Roach */ 1558c2e8227SGreg Roach public function getFamilyLi(Family $family, Individual $person, $generations = 0) { 1562622ba92SGreg Roach $spouse = $family->getSpouse($person); 1572622ba92SGreg Roach if ($spouse) { 1582622ba92SGreg Roach $spouse_name = $spouse->getSexImage() . $spouse->getFullName(); 1592622ba92SGreg Roach $spouse_link = '<a class="icon-button_indi" href="' . $spouse->getHtmlUrl() . '"></a>'; 1602622ba92SGreg Roach } else { 1612622ba92SGreg Roach $spouse_name = ''; 1622622ba92SGreg Roach $spouse_link = ''; 1632622ba92SGreg Roach } 1642622ba92SGreg Roach 1658c2e8227SGreg Roach $marryear = $family->getMarriageYear(); 1668c2e8227SGreg Roach $marr = $marryear ? '<i class="icon-rings"></i>' . $marryear : ''; 1672622ba92SGreg Roach 1682622ba92SGreg Roach return 1692622ba92SGreg Roach '<li class="sb_desc_indi_li">' . 1702622ba92SGreg Roach '<a class="sb_desc_indi" href="#"><i class="plusminus icon-minus"></i>' . $spouse_name . $marr . '</a>' . 1712622ba92SGreg Roach $spouse_link . 1722622ba92SGreg Roach '<a href="' . $family->getHtmlUrl() . '" class="icon-button_family"></a>' . 1732622ba92SGreg Roach '<div>' . $this->loadChildren($family, $generations) . '</div>' . 1742622ba92SGreg Roach '</li>'; 1758c2e8227SGreg Roach } 1768c2e8227SGreg Roach 1778c2e8227SGreg Roach /** 1782622ba92SGreg Roach * @param string $query Search for this term 1792622ba92SGreg Roach * @param Tree $tree Search in this tree 1808c2e8227SGreg Roach * 1818c2e8227SGreg Roach * @return string 1828c2e8227SGreg Roach */ 1832622ba92SGreg Roach public function search($query, Tree $tree) { 1848c2e8227SGreg Roach if (strlen($query) < 2) { 1858c2e8227SGreg Roach return ''; 1868c2e8227SGreg Roach } 1872622ba92SGreg Roach 1888c2e8227SGreg Roach $rows = Database::prepare( 1898c2e8227SGreg Roach "SELECT i_id AS xref" . 1902622ba92SGreg Roach " FROM `##individuals`" . 1912622ba92SGreg Roach " JOIN `##name` ON i_id = n_id AND i_file = n_file" . 1922622ba92SGreg Roach " WHERE n_sort LIKE CONCAT('%', :query, '%') AND i_file = :tree_id" . 1938c2e8227SGreg Roach " ORDER BY n_sort" 1942622ba92SGreg Roach )->execute(array( 1952622ba92SGreg Roach 'query' => $query, 1962622ba92SGreg Roach 'tree_id' => $tree->getTreeId(), 1972622ba92SGreg Roach ))->fetchAll(); 1988c2e8227SGreg Roach 1998c2e8227SGreg Roach $out = ''; 2008c2e8227SGreg Roach foreach ($rows as $row) { 2012622ba92SGreg Roach $person = Individual::getInstance($row->xref, $tree); 202*202f95afSGreg Roach if ($person && $person->canShowName()) { 2038c2e8227SGreg Roach $out .= $this->getPersonLi($person); 2048c2e8227SGreg Roach } 2058c2e8227SGreg Roach } 2068c2e8227SGreg Roach if ($out) { 2078c2e8227SGreg Roach return '<ul>' . $out . '</ul>'; 2088c2e8227SGreg Roach } else { 2098c2e8227SGreg Roach return ''; 2108c2e8227SGreg Roach } 2118c2e8227SGreg Roach } 2128c2e8227SGreg Roach 2138c2e8227SGreg Roach /** 2148c2e8227SGreg Roach * @param Individual $person 2158c2e8227SGreg Roach * @param integer $generations 2168c2e8227SGreg Roach * 2178c2e8227SGreg Roach * @return string 2188c2e8227SGreg Roach */ 2198c2e8227SGreg Roach public function loadSpouses(Individual $person, $generations) { 2208c2e8227SGreg Roach $out = ''; 2218c2e8227SGreg Roach if ($person && $person->canShow()) { 2228c2e8227SGreg Roach foreach ($person->getSpouseFamilies() as $family) { 2232622ba92SGreg Roach $out .= $this->getFamilyLi($family, $person, $generations - 1); 2248c2e8227SGreg Roach } 2258c2e8227SGreg Roach } 2268c2e8227SGreg Roach if ($out) { 2278c2e8227SGreg Roach return '<ul>' . $out . '</ul>'; 2288c2e8227SGreg Roach } else { 2298c2e8227SGreg Roach return ''; 2308c2e8227SGreg Roach } 2318c2e8227SGreg Roach } 2328c2e8227SGreg Roach 2338c2e8227SGreg Roach /** 2348c2e8227SGreg Roach * @param Family $family 2358c2e8227SGreg Roach * @param integer $generations 2368c2e8227SGreg Roach * 2378c2e8227SGreg Roach * @return string 2388c2e8227SGreg Roach */ 2398c2e8227SGreg Roach public function loadChildren(Family $family, $generations) { 2408c2e8227SGreg Roach $out = ''; 2418c2e8227SGreg Roach if ($family->canShow()) { 2428c2e8227SGreg Roach $children = $family->getChildren(); 2438c2e8227SGreg Roach if ($children) { 2448c2e8227SGreg Roach foreach ($children as $child) { 2458c2e8227SGreg Roach $out .= $this->getPersonLi($child, $generations - 1); 2468c2e8227SGreg Roach } 2478c2e8227SGreg Roach } else { 2488c2e8227SGreg Roach $out .= '<li class="sb_desc_none">' . I18N::translate('No children') . '</li>'; 2498c2e8227SGreg Roach } 2508c2e8227SGreg Roach } 2518c2e8227SGreg Roach if ($out) { 2528c2e8227SGreg Roach return '<ul>' . $out . '</ul>'; 2538c2e8227SGreg Roach } else { 2548c2e8227SGreg Roach return ''; 2558c2e8227SGreg Roach } 2568c2e8227SGreg Roach } 2578c2e8227SGreg Roach} 258