{
"event": "PreToolUse",
"tool_name": "Read",
"tool_input": {
"file_path": "\/var\/www\/dev.campus.systemische-tools.de\/src\/Controller\/ContentController.php",
"offset": 60,
"limit": 80
}
}
{
"tool_response": {
"type": "text",
"file": {
"filePath": "\/var\/www\/dev.campus.systemische-tools.de\/src\/Controller\/ContentController.php",
"content": " 'defaultContractId' => $lastSettings['contract_id'],\n 'defaultStructureId' => $lastSettings['structure_id'],\n ]);\n }\n\n \/**\n * POST \/content - Store new order\n *\/\n public function store(): void\n {\n $this->requireCsrf();\n\n $isHtmx = $this->isHtmxRequest();\n $command = CreateContentOrderCommand::fromRequest($_POST);\n $errors = $command->validate();\n\n if ($errors !== []) {\n if ($isHtmx) {\n $this->htmxError(implode(' ', $errors));\n\n return;\n }\n $_SESSION['error'] = implode(' ', $errors);\n $this->redirect('\/content\/new');\n }\n\n \/\/ Validate collections\n $result = $this->collectionService->validateWithCompatibility($command->collections);\n if (!$result['valid']) {\n if ($isHtmx) {\n $this->htmxError('Collection-Fehler: ' . $result['error']);\n\n return;\n }\n $_SESSION['error'] = 'Collection-Fehler: ' . $result['error'];\n $this->redirect('\/content\/new');\n }\n\n $orderId = $this->repository->createOrder([\n 'title' => $command->title,\n 'briefing' => $command->briefing,\n 'author_profile_id' => $command->authorProfileId,\n 'contract_id' => $command->contractId ?? $this->getFirstContractId(),\n 'structure_id' => $command->structureId,\n 'model' => $this->modelRegistry->isValid($command->model) ? $command->model : $this->modelRegistry->getDefaultChatModel(),\n 'collections' => json_encode($result['collections']),\n 'context_limit' => $command->contextLimit,\n ]);\n\n if ($command->shouldGenerate()) {\n \/\/ Start async generation (non-blocking)\n $this->repository->updateGenerationStatus($orderId, 'generating');\n $this->generateUseCase->generateAsync(\n $orderId,\n $this->modelRegistry->isValid($command->model) ? $command->model : $this->modelRegistry->getDefaultChatModel(),\n $result['collections'][0] ?? 'documents',\n $command->contextLimit\n );\n }\n\n if ($isHtmx) {\n $this->htmxRedirect('\/content\/' . $orderId);\n\n return;\n }\n\n $this->redirect('\/content\/' . $orderId);\n }\n\n \/**\n * GET \/content\/{id} - Show order details\n *\/\n public function show(int $id): void\n {\n $order = $this->repository->findOrder($id);\n if ($order === null) {\n $this->notFound('Auftrag nicht gefunden');\n }\n\n $versions = $this->repository->findVersionsByOrder($id);",
"numLines": 80,
"startLine": 60,
"totalLines": 417
}
}
}