. */ declare(strict_types=1); namespace Fisharebest\Webtrees\Http\RequestHandlers; use Fisharebest\Webtrees\Auth; use Fisharebest\Webtrees\Contracts\UserInterface; use Fisharebest\Webtrees\Family; use Fisharebest\Webtrees\Html; use Fisharebest\Webtrees\Http\ViewResponseTrait; use Fisharebest\Webtrees\I18N; use Fisharebest\Webtrees\Individual; use Fisharebest\Webtrees\Module\ModuleReportInterface; use Fisharebest\Webtrees\Report\ReportParserSetup; use Fisharebest\Webtrees\Services\ModuleService; use Fisharebest\Webtrees\Source; use Fisharebest\Webtrees\Tree; use Psr\Http\Message\ResponseInterface; use Psr\Http\Message\ServerRequestInterface; use Psr\Http\Server\RequestHandlerInterface; use function assert; use function redirect; use function route; /** * Get parameters for a report. */ class ReportSetupPage implements RequestHandlerInterface { use ViewResponseTrait; /** * @var ModuleService */ private $module_service; /** * ReportEngineController constructor. * * @param ModuleService $module_service */ public function __construct(ModuleService $module_service) { $this->module_service = $module_service; } /** * @param ServerRequestInterface $request * * @return ResponseInterface */ public function handle(ServerRequestInterface $request): ResponseInterface { $tree = $request->getAttribute('tree'); assert($tree instanceof Tree); $user = $request->getAttribute('user'); assert($user instanceof UserInterface); $report = $request->getAttribute('report'); $module = $this->module_service->findByName($report); if (!$module instanceof ModuleReportInterface) { return redirect(route(ReportListPage::class, ['tree' => $tree->name()])); } Auth::checkComponentAccess($module, 'report', $tree, $user); $xref = $request->getQueryParams()['xref'] ?? ''; $xml_filename = $module->resourcesFolder() . $module->xmlFilename(); $report_array = (new ReportParserSetup($xml_filename))->reportProperties(); $description = $report_array['description']; $title = $report_array['title']; $inputs = []; foreach ($report_array['inputs'] ?? [] as $n => $input) { $input += [ 'type' => 'text', 'default' => '', 'lookup' => '', 'extra' => '', ]; $attributes = [ 'id' => 'input-' . $n, 'name' => 'vars[' . $input['name'] . ']', ]; switch ($input['lookup']) { case 'INDI': $input['control'] = view('components/select-individual', [ 'id' => 'input-' . $n, 'name' => 'vars[' . $input['name'] . ']', 'individual' => Individual::getInstance($xref, $tree), 'tree' => $tree, 'required' => true, ]); break; case 'FAM': $input['control'] = view('components/select-family', [ 'id' => 'input-' . $n, 'name' => 'vars[' . $input['name'] . ']', 'family' => Family::getInstance($xref, $tree), 'tree' => $tree, 'required' => true, ]); break; case 'SOUR': $input['control'] = view('components/select-source', [ 'id' => 'input-' . $n, 'name' => 'vars[' . $input['name'] . ']', 'family' => Source::getInstance($xref, $tree), 'tree' => $tree, 'required' => true, ]); break; case 'DATE': $attributes += [ 'type' => 'text', 'value' => $input['default'], 'dir' => 'ltr', ]; $input['control'] = ''; $input['extra'] = '' . view('icons/calendar') . '' . '
'; break; default: switch ($input['type']) { case 'text': $attributes += [ 'type' => 'text', 'value' => $input['default'], ]; $input['control'] = ''; break; case 'checkbox': $attributes += [ 'type' => 'checkbox', 'checked' => (bool) $input['default'], ]; $input['control'] = ''; break; case 'select': $options = []; foreach (explode('|', $input['options']) as $option) { [$key, $value] = explode('=>', $option); if (preg_match('/^I18N::number\((.+?)(,([\d+]))?\)$/', $value, $match)) { $number = (float) $match[1]; $precision = (int) ($match[3] ?? 0); $options[$key] = I18N::number($number, $precision); } elseif (preg_match('/^I18N::translate\(\'(.+)\'\)$/', $value, $match)) { $options[$key] = I18N::translate($match[1]); } elseif (preg_match('/^I18N::translateContext\(\'(.+)\', *\'(.+)\'\)$/', $value, $match)) { $options[$key] = I18N::translateContext($match[1], $match[2]); } } $input['control'] = view('components/select', ['name' => 'vars[' . $input['name'] . ']', 'id' => 'input-' . $n, 'selected' => $input['default'], 'options' => $options]); break; } } $inputs[] = $input; } $destination = $user->getPreference('default-report-destination', 'view'); $format = $user->getPreference('default-report-format', 'PDF'); return $this->viewResponse('report-setup-page', [ 'description' => $description, 'destination' => $destination, 'format' => $format, 'inputs' => $inputs, 'report' => $report, 'title' => $title, 'tree' => $tree, ]); } }