1<?php 2/** 3 * webtrees: online genealogy 4 * Copyright (C) 2019 webtrees development team 5 * This program is free software: you can redistribute it and/or modify 6 * it under the terms of the GNU General Public License as published by 7 * the Free Software Foundation, either version 3 of the License, or 8 * (at your option) any later version. 9 * This program is distributed in the hope that it will be useful, 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 * GNU General Public License for more details. 13 * You should have received a copy of the GNU General Public License 14 * along with this program. If not, see <http://www.gnu.org/licenses/>. 15 */ 16declare(strict_types=1); 17 18namespace Fisharebest\Webtrees\Module; 19 20use Fisharebest\Webtrees\Auth; 21use Fisharebest\Webtrees\Carbon; 22use Fisharebest\Webtrees\Family; 23use Fisharebest\Webtrees\GedcomRecord; 24use Fisharebest\Webtrees\I18N; 25use Fisharebest\Webtrees\Individual; 26use Fisharebest\Webtrees\Tree; 27use Illuminate\Database\Capsule\Manager as DB; 28use Illuminate\Database\Query\JoinClause; 29use Illuminate\Support\Collection; 30use Illuminate\Support\Str; 31use Symfony\Component\HttpFoundation\Request; 32 33/** 34 * Class ResearchTaskModule 35 */ 36class ResearchTaskModule extends AbstractModule implements ModuleBlockInterface 37{ 38 use ModuleBlockTrait; 39 40 private const DEFAULT_SHOW_OTHER = '1'; 41 private const DEFAULT_SHOW_UNASSIGNED = '1'; 42 private const DEFAULT_SHOW_FUTURE = '1'; 43 44 /** 45 * How should this module be identified in the control panel, etc.? 46 * 47 * @return string 48 */ 49 public function title(): string 50 { 51 /* I18N: Name of a module. Tasks that need further research. */ 52 return I18N::translate('Research tasks'); 53 } 54 55 /** 56 * A sentence describing what this module does. 57 * 58 * @return string 59 */ 60 public function description(): string 61 { 62 /* I18N: Description of “Research tasks” module */ 63 return I18N::translate('A list of tasks and activities that are linked to the family tree.'); 64 } 65 66 /** 67 * Generate the HTML content of this block. 68 * 69 * @param Tree $tree 70 * @param int $block_id 71 * @param string $ctype 72 * @param string[] $cfg 73 * 74 * @return string 75 */ 76 public function getBlock(Tree $tree, int $block_id, string $ctype = '', array $cfg = []): string 77 { 78 $show_other = $this->getBlockSetting($block_id, 'show_other', self::DEFAULT_SHOW_OTHER); 79 $show_unassigned = $this->getBlockSetting($block_id, 'show_unassigned', self::DEFAULT_SHOW_UNASSIGNED); 80 $show_future = $this->getBlockSetting($block_id, 'show_future', self::DEFAULT_SHOW_FUTURE); 81 82 extract($cfg, EXTR_OVERWRITE); 83 84 $end_jd = $show_future ? Carbon::maxValue()->julianDay() : Carbon::now()->julianDay(); 85 $individuals = $this->individualsWithTasks($tree, $end_jd); 86 $families = $this->familiesWithTasks($tree, $end_jd); 87 88 /** @var GedcomRecord[] $records */ 89 $records = $individuals->merge($families); 90 91 $tasks = []; 92 93 foreach ($records as $record) { 94 foreach ($record->facts(['_TODO']) as $task) { 95 $user_name = $task->attribute('_WT_USER'); 96 97 if ($user_name === Auth::user()->userName() || empty($user_name) && $show_unassigned || !empty($user_name) && $show_other) { 98 $tasks[] = $task; 99 } 100 } 101 } 102 103 if (empty($records)) { 104 $content = '<p>' . I18N::translate('There are no research tasks in this family tree.') . '</p>'; 105 } else { 106 $content = view('modules/todo/research-tasks', ['tasks' => $tasks]); 107 } 108 109 if ($ctype !== '') { 110 if ($ctype === 'gedcom' && Auth::isManager($tree)) { 111 $config_url = route('tree-page-block-edit', [ 112 'block_id' => $block_id, 113 'ged' => $tree->name(), 114 ]); 115 } elseif ($ctype === 'user' && Auth::check()) { 116 $config_url = route('user-page-block-edit', [ 117 'block_id' => $block_id, 118 'ged' => $tree->name(), 119 ]); 120 } else { 121 $config_url = ''; 122 } 123 124 return view('modules/block-template', [ 125 'block' => Str::kebab($this->name()), 126 'id' => $block_id, 127 'config_url' => $config_url, 128 'title' => $this->title(), 129 'content' => $content, 130 ]); 131 } 132 133 return $content; 134 } 135 136 /** {@inheritdoc} */ 137 public function loadAjax(): bool 138 { 139 return false; 140 } 141 142 /** {@inheritdoc} */ 143 public function isUserBlock(): bool 144 { 145 return true; 146 } 147 148 /** {@inheritdoc} */ 149 public function isTreeBlock(): bool 150 { 151 return true; 152 } 153 154 /** 155 * Update the configuration for a block. 156 * 157 * @param Request $request 158 * @param int $block_id 159 * 160 * @return void 161 */ 162 public function saveBlockConfiguration(Request $request, int $block_id): void 163 { 164 $this->setBlockSetting($block_id, 'show_other', $request->get('show_other', '')); 165 $this->setBlockSetting($block_id, 'show_unassigned', $request->get('show_unassigned', '')); 166 $this->setBlockSetting($block_id, 'show_future', $request->get('show_future', '')); 167 } 168 169 /** 170 * An HTML form to edit block settings 171 * 172 * @param Tree $tree 173 * @param int $block_id 174 * 175 * @return void 176 */ 177 public function editBlockConfiguration(Tree $tree, int $block_id): void 178 { 179 $show_other = $this->getBlockSetting($block_id, 'show_other', self::DEFAULT_SHOW_OTHER); 180 $show_unassigned = $this->getBlockSetting($block_id, 'show_unassigned', self::DEFAULT_SHOW_UNASSIGNED); 181 $show_future = $this->getBlockSetting($block_id, 'show_future', self::DEFAULT_SHOW_FUTURE); 182 183 echo view('modules/todo/config', [ 184 'show_future' => $show_future, 185 'show_other' => $show_other, 186 'show_unassigned' => $show_unassigned, 187 ]); 188 } 189 190 /** 191 * @param Tree $tree 192 * @param int $max_julian_day 193 * 194 * @return Collection 195 */ 196 private function familiesWithTasks(Tree $tree, int $max_julian_day): Collection 197 { 198 return DB::table('families') 199 ->join('dates', function (JoinClause $join): void { 200 $join 201 ->on('f_file', '=', 'd_file') 202 ->on('f_id', '=', 'd_gid'); 203 }) 204 ->where('f_file', '=', $tree->id()) 205 ->where('d_fact', '=', '_TODO') 206 ->where('d_julianday1', '<', $max_julian_day) 207 ->select(['families.*']) 208 ->distinct() 209 ->get() 210 ->map(Family::rowMapper()) 211 ->filter(GedcomRecord::accessFilter()); 212 } 213 214 /** 215 * @param Tree $tree 216 * @param int $max_julian_day 217 * 218 * @return Collection 219 */ 220 private function individualsWithTasks(Tree $tree, int $max_julian_day): Collection 221 { 222 return DB::table('individuals') 223 ->join('dates', function (JoinClause $join): void { 224 $join 225 ->on('i_file', '=', 'd_file') 226 ->on('i_id', '=', 'd_gid'); 227 }) 228 ->where('i_file', '=', $tree->id()) 229 ->where('d_fact', '=', '_TODO') 230 ->where('d_julianday1', '<', $max_julian_day) 231 ->select(['individuals.*']) 232 ->distinct() 233 ->get() 234 ->map(Individual::rowMapper()) 235 ->filter(GedcomRecord::accessFilter()); 236 } 237} 238