{
"event": "PreToolUse",
"tool_name": "Edit",
"tool_input": {
"file_path": "\/var\/www\/dev.campus.systemische-tools.de\/src\/Controller\/OntologyController.php",
"old_string": " \/**\n * POST \/semantic-explorer\/ontologie\n *\/\n public function store(): void\n {\n $input = $this->getJsonInput();\n\n $name = trim($input['name'] ?? '');\n $parentId = isset($input['parent_class_id']) && $input['parent_class_id'] !== '' ? (int) $input['parent_class_id'] : null;\n $description = trim($input['description'] ?? '') ?: null;\n $properties = $input['properties'] ?? [];\n\n if ($name === '') {\n $this->json($this->apiFormatter->validationError('Name ist erforderlich', ['name' => 'Pflichtfeld']), 400);\n\n return;\n }\n\n try {\n $id = $this->repository->create($name, $parentId, $description, $properties);\n\n \/\/ Audit log\n $this->audit->logCreate(\n table: 'ontology_classes',\n id: $id,\n data: ['name' => $name, 'parent_class_id' => $parentId, 'description' => $description],\n actor: 'user',\n actorType: 'user'\n );\n\n $this->json($this->apiFormatter->created($id, 'Ontologie-Klasse erstellt'));\n } catch (\\Exception $e) {\n $this->json($this->apiFormatter->error($e->getMessage(), 'SERVER_ERROR'), 500);\n }\n }",
"new_string": " \/**\n * POST \/semantic-explorer\/ontologie\n *\/\n public function store(): void\n {\n $this->requireCsrf();\n\n $input = $this->getJsonInput();\n if (empty($input)) {\n $input = $_POST;\n }\n\n $name = trim($input['name'] ?? '');\n $parentId = isset($input['parent_class_id']) && $input['parent_class_id'] !== '' ? (int) $input['parent_class_id'] : null;\n $description = trim($input['description'] ?? '') ?: null;\n $properties = $input['properties'] ?? [];\n\n if ($name === '') {\n if ($this->isHtmxRequest()) {\n $this->htmxError('Name ist erforderlich');\n\n return;\n }\n $this->json($this->apiFormatter->validationError('Name ist erforderlich', ['name' => 'Pflichtfeld']), 400);\n\n return;\n }\n\n try {\n $id = $this->repository->create($name, $parentId, $description, $properties);\n\n \/\/ Audit log\n $this->audit->logCreate(\n table: 'ontology_classes',\n id: $id,\n data: ['name' => $name, 'parent_class_id' => $parentId, 'description' => $description],\n actor: 'user',\n actorType: 'user'\n );\n\n if ($this->isHtmxRequest()) {\n $this->htmxRedirect('\/semantic-explorer\/ontologie\/' . $id);\n\n return;\n }\n\n $this->json($this->apiFormatter->created($id, 'Ontologie-Klasse erstellt'));\n } catch (\\Exception $e) {\n if ($this->isHtmxRequest()) {\n $this->htmxError($e->getMessage());\n\n return;\n }\n $this->json($this->apiFormatter->error($e->getMessage(), 'SERVER_ERROR'), 500);\n }\n }"
}
}
{
"tool_response": {
"filePath": "\/var\/www\/dev.campus.systemische-tools.de\/src\/Controller\/OntologyController.php",
"oldString": " \/**\n * POST \/semantic-explorer\/ontologie\n *\/\n public function store(): void\n {\n $input = $this->getJsonInput();\n\n $name = trim($input['name'] ?? '');\n $parentId = isset($input['parent_class_id']) && $input['parent_class_id'] !== '' ? (int) $input['parent_class_id'] : null;\n $description = trim($input['description'] ?? '') ?: null;\n $properties = $input['properties'] ?? [];\n\n if ($name === '') {\n $this->json($this->apiFormatter->validationError('Name ist erforderlich', ['name' => 'Pflichtfeld']), 400);\n\n return;\n }\n\n try {\n $id = $this->repository->create($name, $parentId, $description, $properties);\n\n \/\/ Audit log\n $this->audit->logCreate(\n table: 'ontology_classes',\n id: $id,\n data: ['name' => $name, 'parent_class_id' => $parentId, 'description' => $description],\n actor: 'user',\n actorType: 'user'\n );\n\n $this->json($this->apiFormatter->created($id, 'Ontologie-Klasse erstellt'));\n } catch (\\Exception $e) {\n $this->json($this->apiFormatter->error($e->getMessage(), 'SERVER_ERROR'), 500);\n }\n }",
"newString": " \/**\n * POST \/semantic-explorer\/ontologie\n *\/\n public function store(): void\n {\n $this->requireCsrf();\n\n $input = $this->getJsonInput();\n if (empty($input)) {\n $input = $_POST;\n }\n\n $name = trim($input['name'] ?? '');\n $parentId = isset($input['parent_class_id']) && $input['parent_class_id'] !== '' ? (int) $input['parent_class_id'] : null;\n $description = trim($input['description'] ?? '') ?: null;\n $properties = $input['properties'] ?? [];\n\n if ($name === '') {\n if ($this->isHtmxRequest()) {\n $this->htmxError('Name ist erforderlich');\n\n return;\n }\n $this->json($this->apiFormatter->validationError('Name ist erforderlich', ['name' => 'Pflichtfeld']), 400);\n\n return;\n }\n\n try {\n $id = $this->repository->create($name, $parentId, $description, $properties);\n\n \/\/ Audit log\n $this->audit->logCreate(\n table: 'ontology_classes',\n id: $id,\n data: ['name' => $name, 'parent_class_id' => $parentId, 'description' => $description],\n actor: 'user',\n actorType: 'user'\n );\n\n if ($this->isHtmxRequest()) {\n $this->htmxRedirect('\/semantic-explorer\/ontologie\/' . $id);\n\n return;\n }\n\n $this->json($this->apiFormatter->created($id, 'Ontologie-Klasse erstellt'));\n } catch (\\Exception $e) {\n if ($this->isHtmxRequest()) {\n $this->htmxError($e->getMessage());\n\n return;\n }\n $this->json($this->apiFormatter->error($e->getMessage(), 'SERVER_ERROR'), 500);\n }\n }",
"originalFile": "<?php\n\ndeclare(strict_types=1);\n\nnamespace Controller;\n\n\/\/ @responsibility: HTTP-Endpunkte für Semantic Explorer Ontologie (CRUD)\n\nuse Domain\\Repository\\OntologyRepositoryInterface;\nuse Framework\\Controller;\nuse Infrastructure\\Audit\\AuditService;\nuse Infrastructure\\Formatter\\ApiResponseFormatter;\n\nclass OntologyController extends Controller\n{\n private OntologyRepositoryInterface $repository;\n private ApiResponseFormatter $apiFormatter;\n private AuditService $audit;\n\n public function __construct(\n OntologyRepositoryInterface $repository,\n ApiResponseFormatter $apiFormatter,\n AuditService $audit\n ) {\n $this->repository = $repository;\n $this->apiFormatter = $apiFormatter;\n $this->audit = $audit;\n }\n\n \/**\n * GET \/semantic-explorer\/ontologie\n * Klassifizierte Entities mit Ontologie-Klassen und Verbindungen\n *\/\n public function index(): void\n {\n $search = $this->getString('search');\n $classFilter = $this->getString('class');\n $pagination = $this->getPagination(50);\n\n \/\/ Ontologie-Klassen für Filter-Dropdown\n $classes = $this->repository->findAll();\n foreach ($classes as &$class) {\n $class['properties_decoded'] = $this->decodeJson($class['properties'] ?? null);\n }\n\n \/\/ Klassifizierte Entities mit Relationen\n $totalCount = $this->repository->countClassifiedEntities($search, $classFilter);\n $entities = $this->repository->findClassifiedEntities($search, $classFilter, $pagination->limit, $pagination->offset);\n $pagination = $pagination->withTotal($totalCount);\n\n $stats = $this->repository->getStats();\n\n $this->view('semantic-explorer.ontologie', [\n 'title' => 'Ontologie',\n 'classes' => $classes,\n 'entities' => $entities,\n 'stats' => $stats,\n 'currentSearch' => $search,\n 'currentClass' => $classFilter,\n 'currentPage' => $pagination->page,\n 'totalCount' => $pagination->totalCount,\n 'totalPages' => $pagination->totalPages(),\n ]);\n }\n\n \/**\n * GET \/semantic-explorer\/ontologie\/new\n *\/\n public function create(): void\n {\n $this->view('semantic-explorer.ontologie.new', [\n 'title' => 'Neue Ontologie-Klasse',\n 'classes' => $this->repository->findForSelect(),\n ]);\n }\n\n \/**\n * POST \/semantic-explorer\/ontologie\n *\/\n public function store(): void\n {\n $input = $this->getJsonInput();\n\n $name = trim($input['name'] ?? '');\n $parentId = isset($input['parent_class_id']) && $input['parent_class_id'] !== '' ? (int) $input['parent_class_id'] : null;\n $description = trim($input['description'] ?? '') ?: null;\n $properties = $input['properties'] ?? [];\n\n if ($name === '') {\n $this->json($this->apiFormatter->validationError('Name ist erforderlich', ['name' => 'Pflichtfeld']), 400);\n\n return;\n }\n\n try {\n $id = $this->repository->create($name, $parentId, $description, $properties);\n\n \/\/ Audit log\n $this->audit->logCreate(\n table: 'ontology_classes',\n id: $id,\n data: ['name' => $name, 'parent_class_id' => $parentId, 'description' => $description],\n actor: 'user',\n actorType: 'user'\n );\n\n $this->json($this->apiFormatter->created($id, 'Ontologie-Klasse erstellt'));\n } catch (\\Exception $e) {\n $this->json($this->apiFormatter->error($e->getMessage(), 'SERVER_ERROR'), 500);\n }\n }\n\n \/**\n * GET \/semantic-explorer\/ontologie\/{id}\/edit\n *\/\n public function edit(int $id): void\n {\n $class = $this->repository->find($id);\n\n if ($class === null) {\n $this->notFound('Klasse nicht gefunden');\n }\n\n $this->view('semantic-explorer.ontologie.edit', [\n 'title' => 'Klasse bearbeiten',\n 'class' => $class,\n 'classes' => $this->repository->findForSelect(),\n ]);\n }\n\n \/**\n * POST \/semantic-explorer\/ontologie\/{id}\n *\/\n public function update(int $id): void\n {\n $input = $this->getJsonInput();\n\n $name = trim($input['name'] ?? '');\n $parentId = isset($input['parent_class_id']) && $input['parent_class_id'] !== '' ? (int) $input['parent_class_id'] : null;\n $description = trim($input['description'] ?? '') ?: null;\n $properties = $input['properties'] ?? [];\n\n if ($name === '') {\n $this->json($this->apiFormatter->validationError('Name ist erforderlich', ['name' => 'Pflichtfeld']), 400);\n\n return;\n }\n\n try {\n \/\/ Get old state for audit\n $oldClass = $this->repository->find($id);\n\n $this->repository->update($id, $name, $parentId, $description, $properties);\n\n \/\/ Audit log\n $this->audit->logUpdate(\n table: 'ontology_classes',\n id: $id,\n oldData: $oldClass !== null ? ['name' => $oldClass['name'], 'description' => $oldClass['description'] ?? null] : [],\n newData: ['name' => $name, 'parent_class_id' => $parentId, 'description' => $description],\n actor: 'user',\n actorType: 'user'\n );\n\n $this->json($this->apiFormatter->ok('Ontologie-Klasse aktualisiert'));\n } catch (\\Exception $e) {\n $this->json($this->apiFormatter->error($e->getMessage(), 'SERVER_ERROR'), 500);\n }\n }\n\n \/**\n * POST \/semantic-explorer\/ontologie\/{id}\/delete\n *\/\n public function destroy(int $id): void\n {\n try {\n \/\/ Get data before delete for audit\n $class = $this->repository->find($id);\n\n $success = $this->repository->delete($id);\n if ($success) {\n \/\/ Audit log\n $this->audit->logDelete(\n table: 'ontology_classes',\n id: $id,\n data: $class !== null ? ['name' => $class['name'], 'description' => $class['description'] ?? null] : [],\n reason: 'User deleted via UI',\n actor: 'user',\n actorType: 'user'\n );\n\n $this->json($this->apiFormatter->ok('Ontologie-Klasse gelöscht'));\n } else {\n $this->json($this->apiFormatter->error('Klasse hat noch Unterklassen', 'HAS_CHILDREN'), 400);\n }\n } catch (\\Exception $e) {\n $this->json($this->apiFormatter->error($e->getMessage(), 'SERVER_ERROR'), 500);\n }\n }\n}\n",
"structuredPatch": [
{
"oldStart": 79,
"oldLines": 7,
"newStart": 79,
"newLines": 12,
"lines": [
" *\/",
" public function store(): void",
" {",
"+ $this->requireCsrf();",
"+",
" $input = $this->getJsonInput();",
"+ if (empty($input)) {",
"+ $input = $_POST;",
"+ }",
" ",
" $name = trim($input['name'] ?? '');",
" $parentId = isset($input['parent_class_id']) && $input['parent_class_id'] !== '' ? (int) $input['parent_class_id'] : null;"
]
},
{
"oldStart": 87,
"oldLines": 6,
"newStart": 92,
"newLines": 11,
"lines": [
" $properties = $input['properties'] ?? [];",
" ",
" if ($name === '') {",
"+ if ($this->isHtmxRequest()) {",
"+ $this->htmxError('Name ist erforderlich');",
"+",
"+ return;",
"+ }",
" $this->json($this->apiFormatter->validationError('Name ist erforderlich', ['name' => 'Pflichtfeld']), 400);",
" ",
" return;"
]
},
{
"oldStart": 104,
"oldLines": 8,
"newStart": 114,
"newLines": 19,
"lines": [
" actorType: 'user'",
" );",
" ",
"+ if ($this->isHtmxRequest()) {",
"+ $this->htmxRedirect('\/semantic-explorer\/ontologie\/' . $id);",
"+",
"+ return;",
"+ }",
"+",
" $this->json($this->apiFormatter->created($id, 'Ontologie-Klasse erstellt'));",
" } catch (\\Exception $e) {",
"+ if ($this->isHtmxRequest()) {",
"+ $this->htmxError($e->getMessage());",
"+",
"+ return;",
"+ }",
" $this->json($this->apiFormatter->error($e->getMessage(), 'SERVER_ERROR'), 500);",
" }",
" }"
]
}
],
"userModified": false,
"replaceAll": false
}
}