18c2e8227SGreg Roach<?php 20e62c4b8SGreg Roachnamespace Fisharebest\Webtrees\Module; 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 190e62c4b8SGreg Roachuse Fisharebest\Webtrees\Auth; 200e62c4b8SGreg Roachuse Fisharebest\Webtrees\Database; 210e62c4b8SGreg Roachuse Fisharebest\Webtrees\Filter; 220e62c4b8SGreg Roachuse Fisharebest\Webtrees\FlashMessages; 230e62c4b8SGreg Roachuse Fisharebest\Webtrees\GedcomRecord; 240e62c4b8SGreg Roachuse Fisharebest\Webtrees\GedcomTag; 250e62c4b8SGreg Roachuse Fisharebest\Webtrees\I18N; 260e62c4b8SGreg Roachuse Fisharebest\Webtrees\Individual; 270e62c4b8SGreg Roachuse Fisharebest\Webtrees\Theme; 288c2e8227SGreg Roachuse PDO; 298c2e8227SGreg Roachuse PDOException; 308c2e8227SGreg Roachuse Rhumsaa\Uuid\Uuid; 318c2e8227SGreg Roach 328c2e8227SGreg Roach/** 338c2e8227SGreg Roach * Class FamilyTreeFavoritesModule 348c2e8227SGreg Roach * 358c2e8227SGreg Roach * Note that the user favorites module simply extends this module, so ensure that the 368c2e8227SGreg Roach * logic works for both. 378c2e8227SGreg Roach */ 38e2a378d3SGreg Roachclass FamilyTreeFavoritesModule extends AbstractModule implements ModuleBlockInterface { 398c2e8227SGreg Roach /** {@inheritdoc} */ 40*3bfb94b0SGreg Roach public function __construct($directory) { 41*3bfb94b0SGreg Roach parent::__construct($directory); 42*3bfb94b0SGreg Roach 43*3bfb94b0SGreg Roach // Create/update the database tables. 44*3bfb94b0SGreg Roach Database::updateSchema('\Fisharebest\Webtrees\Module\FamilyTreeFavorites\Schema', 'FV_SCHEMA_VERSION', 4); 45*3bfb94b0SGreg Roach } 46*3bfb94b0SGreg Roach 47*3bfb94b0SGreg Roach /** {@inheritdoc} */ 488c2e8227SGreg Roach public function getTitle() { 498c2e8227SGreg Roach return /* I18N: Name of a module */ I18N::translate('Favorites'); 508c2e8227SGreg Roach } 518c2e8227SGreg Roach 528c2e8227SGreg Roach /** {@inheritdoc} */ 538c2e8227SGreg Roach public function getDescription() { 548c2e8227SGreg Roach return /* I18N: Description of the “Favorites” module */ I18N::translate('Display and manage a family tree’s favorite pages.'); 558c2e8227SGreg Roach } 568c2e8227SGreg Roach 578c2e8227SGreg Roach /** {@inheritdoc} */ 588c2e8227SGreg Roach public function getBlock($block_id, $template = true, $cfg = null) { 594b9ff166SGreg Roach global $ctype, $controller, $WT_TREE; 608c2e8227SGreg Roach 618c2e8227SGreg Roach $action = Filter::get('action'); 628c2e8227SGreg Roach switch ($action) { 638c2e8227SGreg Roach case 'deletefav': 648c2e8227SGreg Roach $favorite_id = Filter::getInteger('favorite_id'); 658c2e8227SGreg Roach if ($favorite_id) { 668c2e8227SGreg Roach self::deleteFavorite($favorite_id); 678c2e8227SGreg Roach } 688c2e8227SGreg Roach break; 698c2e8227SGreg Roach case 'addfav': 708c2e8227SGreg Roach $gid = Filter::get('gid', WT_REGEX_XREF); 718c2e8227SGreg Roach $favnote = Filter::get('favnote'); 728c2e8227SGreg Roach $url = Filter::getUrl('url'); 738c2e8227SGreg Roach $favtitle = Filter::get('favtitle'); 748c2e8227SGreg Roach 758c2e8227SGreg Roach if ($gid) { 7624ec66ceSGreg Roach $record = GedcomRecord::getInstance($gid, $WT_TREE); 778c2e8227SGreg Roach if ($record && $record->canShow()) { 788c2e8227SGreg Roach self::addFavorite(array( 798c2e8227SGreg Roach 'user_id' => $ctype === 'user' ? Auth::id() : null, 8024ec66ceSGreg Roach 'gedcom_id' => $WT_TREE->getTreeId(), 818c2e8227SGreg Roach 'gid' => $record->getXref(), 828c2e8227SGreg Roach 'type' => $record::RECORD_TYPE, 838c2e8227SGreg Roach 'url' => null, 848c2e8227SGreg Roach 'note' => $favnote, 858c2e8227SGreg Roach 'title' => $favtitle, 868c2e8227SGreg Roach )); 878c2e8227SGreg Roach } 888c2e8227SGreg Roach } elseif ($url) { 898c2e8227SGreg Roach self::addFavorite(array( 908c2e8227SGreg Roach 'user_id' => $ctype === 'user' ? Auth::id() : null, 9124ec66ceSGreg Roach 'gedcom_id' => $WT_TREE->getTreeId(), 928c2e8227SGreg Roach 'gid' => null, 938c2e8227SGreg Roach 'type' => 'URL', 948c2e8227SGreg Roach 'url' => $url, 958c2e8227SGreg Roach 'note' => $favnote, 968c2e8227SGreg Roach 'title' => $favtitle ? $favtitle : $url, 978c2e8227SGreg Roach )); 988c2e8227SGreg Roach } 998c2e8227SGreg Roach break; 1008c2e8227SGreg Roach } 1018c2e8227SGreg Roach 102e2a378d3SGreg Roach $block = $this->getBlockSetting($block_id, 'block', '0'); 1038c2e8227SGreg Roach 1048c2e8227SGreg Roach if ($cfg) { 1058c2e8227SGreg Roach foreach (array('block') as $name) { 1068c2e8227SGreg Roach if (array_key_exists($name, $cfg)) { 1078c2e8227SGreg Roach $$name = $cfg[$name]; 1088c2e8227SGreg Roach } 1098c2e8227SGreg Roach } 1108c2e8227SGreg Roach } 1118c2e8227SGreg Roach 11224ec66ceSGreg Roach $userfavs = $this->getFavorites($ctype === 'user' ? Auth::id() : $WT_TREE->getTreeId()); 1138c2e8227SGreg Roach if (!is_array($userfavs)) { 1148c2e8227SGreg Roach $userfavs = array(); 1158c2e8227SGreg Roach } 1168c2e8227SGreg Roach 1178c2e8227SGreg Roach $id = $this->getName() . $block_id; 1188c2e8227SGreg Roach $class = $this->getName() . '_block'; 1198c2e8227SGreg Roach $title = $this->getTitle(); 1208c2e8227SGreg Roach 1218c2e8227SGreg Roach if (Auth::check()) { 1228c2e8227SGreg Roach $controller 1238c2e8227SGreg Roach ->addExternalJavascript(WT_AUTOCOMPLETE_JS_URL) 1248c2e8227SGreg Roach ->addInlineJavascript('autocomplete();'); 1258c2e8227SGreg Roach } 1268c2e8227SGreg Roach 1278c2e8227SGreg Roach $content = ''; 1288c2e8227SGreg Roach if ($userfavs) { 1298c2e8227SGreg Roach foreach ($userfavs as $key => $favorite) { 1308c2e8227SGreg Roach if (isset($favorite['id'])) { 1318c2e8227SGreg Roach $key = $favorite['id']; 1328c2e8227SGreg Roach } 1338c2e8227SGreg Roach $removeFavourite = '<a class="font9" href="index.php?ctype=' . $ctype . '&action=deletefav&favorite_id=' . $key . '" onclick="return confirm(\'' . I18N::translate('Are you sure you want to remove this item from your list of favorites?') . '\');">' . I18N::translate('Remove') . '</a> '; 1348c2e8227SGreg Roach if ($favorite['type'] == 'URL') { 1358c2e8227SGreg Roach $content .= '<div id="boxurl' . $key . '.0" class="person_box">'; 1364b9ff166SGreg Roach if ($ctype == 'user' || Auth::isManager($WT_TREE)) { 1378c2e8227SGreg Roach $content .= $removeFavourite; 1388c2e8227SGreg Roach } 1398c2e8227SGreg Roach $content .= '<a href="' . $favorite['url'] . '"><b>' . $favorite['title'] . '</b></a>'; 1408c2e8227SGreg Roach $content .= '<br>' . $favorite['note']; 1418c2e8227SGreg Roach $content .= '</div>'; 1428c2e8227SGreg Roach } else { 14324ec66ceSGreg Roach $record = GedcomRecord::getInstance($favorite['gid'], $WT_TREE); 1448c2e8227SGreg Roach if ($record && $record->canShow()) { 1458c2e8227SGreg Roach if ($record instanceof Individual) { 1468c2e8227SGreg Roach $content .= '<div id="box' . $favorite["gid"] . '.0" class="person_box action_header'; 1478c2e8227SGreg Roach switch ($record->getsex()) { 1488c2e8227SGreg Roach case 'M': 1498c2e8227SGreg Roach break; 1508c2e8227SGreg Roach case 'F': 1518c2e8227SGreg Roach $content .= 'F'; 1528c2e8227SGreg Roach break; 1538c2e8227SGreg Roach default: 1548c2e8227SGreg Roach $content .= 'NN'; 1558c2e8227SGreg Roach break; 1568c2e8227SGreg Roach } 1578c2e8227SGreg Roach $content .= '">'; 1584b9ff166SGreg Roach if ($ctype == "user" || Auth::isManager($WT_TREE)) { 1598c2e8227SGreg Roach $content .= $removeFavourite; 1608c2e8227SGreg Roach } 1618c2e8227SGreg Roach $content .= Theme::theme()->individualBoxLarge($record); 1628c2e8227SGreg Roach $content .= $favorite['note']; 1638c2e8227SGreg Roach $content .= '</div>'; 1648c2e8227SGreg Roach } else { 1658c2e8227SGreg Roach $content .= '<div id="box' . $favorite['gid'] . '.0" class="person_box">'; 1664b9ff166SGreg Roach if ($ctype == 'user' || Auth::isManager($WT_TREE)) { 1678c2e8227SGreg Roach $content .= $removeFavourite; 1688c2e8227SGreg Roach } 169e9165d70SGreg Roach $content .= $record->formatList('span'); 1708c2e8227SGreg Roach $content .= '<br>' . $favorite['note']; 1718c2e8227SGreg Roach $content .= '</div>'; 1728c2e8227SGreg Roach } 1738c2e8227SGreg Roach } 1748c2e8227SGreg Roach } 1758c2e8227SGreg Roach } 1768c2e8227SGreg Roach } 1774b9ff166SGreg Roach if ($ctype == 'user' || Auth::isManager($WT_TREE)) { 1788c2e8227SGreg Roach $uniqueID = Uuid::uuid4(); // This block can theoretically appear multiple times, so use a unique ID. 1798c2e8227SGreg Roach $content .= '<div class="add_fav_head">'; 1808c2e8227SGreg Roach $content .= '<a href="#" onclick="return expand_layer(\'add_fav' . $uniqueID . '\');">' . I18N::translate('Add a new favorite') . '<i id="add_fav' . $uniqueID . '_img" class="icon-plus"></i></a>'; 1818c2e8227SGreg Roach $content .= '</div>'; 1828c2e8227SGreg Roach $content .= '<div id="add_fav' . $uniqueID . '" style="display: none;">'; 1838c2e8227SGreg Roach $content .= '<form name="addfavform" method="get" action="index.php">'; 1848c2e8227SGreg Roach $content .= '<input type="hidden" name="action" value="addfav">'; 1858c2e8227SGreg Roach $content .= '<input type="hidden" name="ctype" value="' . $ctype . '">'; 18624ec66ceSGreg Roach $content .= '<input type="hidden" name="ged" value="' . $WT_TREE->getNameHtml() . '">'; 1878c2e8227SGreg Roach $content .= '<div class="add_fav_ref">'; 1888c2e8227SGreg Roach $content .= '<input type="radio" name="fav_category" value="record" checked onclick="jQuery(\'#gid' . $uniqueID . '\').removeAttr(\'disabled\'); jQuery(\'#url, #favtitle\').attr(\'disabled\',\'disabled\').val(\'\');">'; 1898c2e8227SGreg Roach $content .= '<label for="gid' . $uniqueID . '">' . I18N::translate('Enter an individual, family, or source ID') . '</label>'; 1908c2e8227SGreg Roach $content .= '<input class="pedigree_form" data-autocomplete-type="IFSRO" type="text" name="gid" id="gid' . $uniqueID . '" size="5" value="">'; 1918c2e8227SGreg Roach $content .= ' ' . print_findindi_link('gid' . $uniqueID); 1928c2e8227SGreg Roach $content .= ' ' . print_findfamily_link('gid' . $uniqueID); 1938c2e8227SGreg Roach $content .= ' ' . print_findsource_link('gid' . $uniqueID); 1948c2e8227SGreg Roach $content .= ' ' . print_findrepository_link('gid' . $uniqueID); 1958c2e8227SGreg Roach $content .= ' ' . print_findnote_link('gid' . $uniqueID); 1968c2e8227SGreg Roach $content .= ' ' . print_findmedia_link('gid' . $uniqueID); 1978c2e8227SGreg Roach $content .= '</div>'; 1988c2e8227SGreg Roach $content .= '<div class="add_fav_url">'; 1998c2e8227SGreg Roach $content .= '<input type="radio" name="fav_category" value="url" onclick="jQuery(\'#url, #favtitle\').removeAttr(\'disabled\'); jQuery(\'#gid' . $uniqueID . '\').attr(\'disabled\',\'disabled\').val(\'\');">'; 200764a01d9SGreg Roach $content .= '<input type="text" name="url" id="url" size="20" value="" placeholder="' . GedcomTag::getLabel('URL') . '" disabled> '; 2018c2e8227SGreg Roach $content .= '<input type="text" name="favtitle" id="favtitle" size="20" value="" placeholder="' . I18N::translate('Title') . '" disabled>'; 2028c2e8227SGreg Roach $content .= '<p>' . I18N::translate('Enter an optional note about this favorite') . '</p>'; 2038c2e8227SGreg Roach $content .= '<textarea name="favnote" rows="6" cols="50"></textarea>'; 2048c2e8227SGreg Roach $content .= '</div>'; 2058c2e8227SGreg Roach $content .= '<input type="submit" value="' . I18N::translate('Add') . '">'; 2068c2e8227SGreg Roach $content .= '</form></div>'; 2078c2e8227SGreg Roach } 2088c2e8227SGreg Roach 2098c2e8227SGreg Roach if ($template) { 2108c2e8227SGreg Roach if ($block) { 2118c2e8227SGreg Roach $class .= ' small_inner_block'; 2128c2e8227SGreg Roach } 213cbc1590aSGreg Roach 2148c2e8227SGreg Roach return Theme::theme()->formatBlock($id, $title, $class, $content); 2158c2e8227SGreg Roach } else { 2168c2e8227SGreg Roach return $content; 2178c2e8227SGreg Roach } 2188c2e8227SGreg Roach } 2198c2e8227SGreg Roach 2208c2e8227SGreg Roach /** {@inheritdoc} */ 2218c2e8227SGreg Roach public function loadAjax() { 2228c2e8227SGreg Roach return false; 2238c2e8227SGreg Roach } 2248c2e8227SGreg Roach 2258c2e8227SGreg Roach /** {@inheritdoc} */ 2268c2e8227SGreg Roach public function isUserBlock() { 2278c2e8227SGreg Roach return false; 2288c2e8227SGreg Roach } 2298c2e8227SGreg Roach 2308c2e8227SGreg Roach /** {@inheritdoc} */ 2318c2e8227SGreg Roach public function isGedcomBlock() { 2328c2e8227SGreg Roach return true; 2338c2e8227SGreg Roach } 2348c2e8227SGreg Roach 2358c2e8227SGreg Roach /** {@inheritdoc} */ 2368c2e8227SGreg Roach public function configureBlock($block_id) { 2378c2e8227SGreg Roach if (Filter::postBool('save') && Filter::checkCsrf()) { 238e2a378d3SGreg Roach $this->setBlockSetting($block_id, 'block', Filter::postBool('block')); 2398c2e8227SGreg Roach } 2408c2e8227SGreg Roach 241e2a378d3SGreg Roach $block = $this->getBlockSetting($block_id, 'block', '0'); 2428c2e8227SGreg Roach 2438c2e8227SGreg Roach echo '<tr><td class="descriptionbox wrap width33">'; 2448c2e8227SGreg Roach echo /* I18N: label for a yes/no option */ I18N::translate('Add a scrollbar when block contents grow'); 2458c2e8227SGreg Roach echo '</td><td class="optionbox">'; 2468c2e8227SGreg Roach echo edit_field_yes_no('block', $block); 2478c2e8227SGreg Roach echo '</td></tr>'; 2488c2e8227SGreg Roach } 2498c2e8227SGreg Roach 2508c2e8227SGreg Roach /** 2518c2e8227SGreg Roach * Delete a favorite from the database 2528c2e8227SGreg Roach * 253cbc1590aSGreg Roach * @param int $favorite_id 2548c2e8227SGreg Roach * 255cbc1590aSGreg Roach * @return bool 2568c2e8227SGreg Roach */ 2578c2e8227SGreg Roach public static function deleteFavorite($favorite_id) { 2588c2e8227SGreg Roach return (bool) 2598c2e8227SGreg Roach Database::prepare("DELETE FROM `##favorite` WHERE favorite_id=?") 2608c2e8227SGreg Roach ->execute(array($favorite_id)); 2618c2e8227SGreg Roach } 2628c2e8227SGreg Roach 2638c2e8227SGreg Roach /** 2648c2e8227SGreg Roach * Store a new favorite in the database 2658c2e8227SGreg Roach * 2668c2e8227SGreg Roach * @param $favorite 2678c2e8227SGreg Roach * 268cbc1590aSGreg Roach * @return bool 2698c2e8227SGreg Roach */ 2708c2e8227SGreg Roach public static function addFavorite($favorite) { 2718c2e8227SGreg Roach // -- make sure a favorite is added 2728c2e8227SGreg Roach if (empty($favorite['gid']) && empty($favorite['url'])) { 2738c2e8227SGreg Roach return false; 2748c2e8227SGreg Roach } 2758c2e8227SGreg Roach 2768c2e8227SGreg Roach //-- make sure this is not a duplicate entry 2778c2e8227SGreg Roach $sql = "SELECT SQL_NO_CACHE 1 FROM `##favorite` WHERE"; 2788c2e8227SGreg Roach if (!empty($favorite['gid'])) { 2798c2e8227SGreg Roach $sql .= " xref=?"; 2808c2e8227SGreg Roach $vars = array($favorite['gid']); 2818c2e8227SGreg Roach } else { 2828c2e8227SGreg Roach $sql .= " url=?"; 2838c2e8227SGreg Roach $vars = array($favorite['url']); 2848c2e8227SGreg Roach } 2858c2e8227SGreg Roach $sql .= " AND gedcom_id=?"; 2868c2e8227SGreg Roach $vars[] = $favorite['gedcom_id']; 2878c2e8227SGreg Roach if ($favorite['user_id']) { 2888c2e8227SGreg Roach $sql .= " AND user_id=?"; 2898c2e8227SGreg Roach $vars[] = $favorite['user_id']; 2908c2e8227SGreg Roach } else { 2918c2e8227SGreg Roach $sql .= " AND user_id IS NULL"; 2928c2e8227SGreg Roach } 2938c2e8227SGreg Roach 2948c2e8227SGreg Roach if (Database::prepare($sql)->execute($vars)->fetchOne()) { 2958c2e8227SGreg Roach return false; 2968c2e8227SGreg Roach } 2978c2e8227SGreg Roach 2988c2e8227SGreg Roach //-- add the favorite to the database 2998c2e8227SGreg Roach return (bool) 3008c2e8227SGreg Roach Database::prepare("INSERT INTO `##favorite` (user_id, gedcom_id, xref, favorite_type, url, title, note) VALUES (? ,? ,? ,? ,? ,? ,?)") 3018c2e8227SGreg Roach ->execute(array($favorite['user_id'], $favorite['gedcom_id'], $favorite['gid'], $favorite['type'], $favorite['url'], $favorite['title'], $favorite['note'])); 3028c2e8227SGreg Roach } 3038c2e8227SGreg Roach 3048c2e8227SGreg Roach /** 3058c2e8227SGreg Roach * Get favorites for a user or family tree 3068c2e8227SGreg Roach * 307cbc1590aSGreg Roach * @param int $gedcom_id 3088c2e8227SGreg Roach * 3098c2e8227SGreg Roach * @return string[][] 3108c2e8227SGreg Roach */ 3118c2e8227SGreg Roach public static function getFavorites($gedcom_id) { 3128c2e8227SGreg Roach return 3138c2e8227SGreg Roach Database::prepare( 3148c2e8227SGreg Roach "SELECT SQL_CACHE favorite_id AS id, user_id, gedcom_id, xref AS gid, favorite_type AS type, title, note, url" . 3158c2e8227SGreg Roach " FROM `##favorite` WHERE gedcom_id=? AND user_id IS NULL") 3168c2e8227SGreg Roach ->execute(array($gedcom_id)) 3178c2e8227SGreg Roach ->fetchAll(PDO::FETCH_ASSOC); 3188c2e8227SGreg Roach } 3198c2e8227SGreg Roach 3208c2e8227SGreg Roach /** 3218c2e8227SGreg Roach * Make sure the database structure is up-to-date. 3228c2e8227SGreg Roach */ 3238c2e8227SGreg Roach protected static function updateSchema() { 3248c2e8227SGreg Roach // Create tables, if not already present 3258c2e8227SGreg Roach try { 3268c2e8227SGreg Roach Database::updateSchema(WT_ROOT . WT_MODULES_DIR . 'gedcom_favorites/db_schema/', 'FV_SCHEMA_VERSION', 4); 3278c2e8227SGreg Roach } catch (PDOException $ex) { 3288c2e8227SGreg Roach // The schema update scripts should never fail. If they do, there is no clean recovery. 3298c2e8227SGreg Roach FlashMessages::addMessage($ex->getMessage(), 'danger'); 3308c2e8227SGreg Roach header('Location: ' . WT_BASE_URL . 'site-unavailable.php'); 3318c2e8227SGreg Roach throw $ex; 3328c2e8227SGreg Roach } 3338c2e8227SGreg Roach } 3348c2e8227SGreg Roach} 335