model = $model; $this->relation = $relation; } public function __invoke(ServerRequest $request): void { global $cfg; /** @var string $exportType */ $exportType = $request->getParsedBodyParam('exportType', ''); /** @var string $templateName */ $templateName = $request->getParsedBodyParam('templateName', ''); /** @var string $templateData */ $templateData = $request->getParsedBodyParam('templateData', ''); /** @var string|null $templateId */ $templateId = $request->getParsedBodyParam('template_id'); $relationParameters = $this->relation->getRelationParameters(); if ( ! $relationParameters->hasExportTemplatesFeature() || $relationParameters->db === null || $relationParameters->exportTemplates === null ) { return; } $template = ExportTemplate::fromArray([ 'username' => $cfg['Server']['user'], 'exportType' => $exportType, 'name' => $templateName, 'data' => $templateData, ]); $result = $this->model->create($relationParameters->db, $relationParameters->exportTemplates, $template); if (is_string($result)) { $this->response->setRequestStatus(false); $this->response->addJSON('message', $result); return; } $templates = $this->model->getAll( $relationParameters->db, $relationParameters->exportTemplates, $template->getUsername(), $template->getExportType() ); $this->response->setRequestStatus(true); $this->response->addJSON( 'data', $this->template->render('export/template_options', [ 'templates' => is_array($templates) ? $templates : [], 'selected_template' => $templateId, ]) ); } }