Protokoll #3245

ID3245
Zeitstempel2025-12-22 02:10:28.593279
Clientroot
IP145.224.96.190
Modellclaude-sonnet-4-20250514
Statuscompleted
Tokens3,740 (Input: 393, Output: 3,347)
Dauer93 ms
Request-Zeit2025-12-22 02:10:28.593279
Response-Zeit2025-12-22 02:10:28.685819

Request

{
    "event": "PreToolUse",
    "tool_name": "Edit",
    "tool_input": {
        "file_path": "\/var\/www\/dev.campus.systemische-tools.de\/src\/Controller\/ContentController.php",
        "old_string": "    \/**\n     * Render version partial\n     *\/\n    private function renderVersionPartial(array $result): void\n    {\n        $content = $result['content'] ?? '';\n        $sources = $result['sources'] ?? [];\n\n        echo '<div class=\"version-content\">';\n        echo '<div class=\"version-header\">';\n        echo '<span class=\"version-number\">Version ' . ($result['version_number'] ?? '?') . '<\/span>';\n        echo '<span class=\"badge success\">Generiert<\/span>';\n        echo '<\/div>';\n        echo '<div class=\"content-text\">' . nl2br(htmlspecialchars($content)) . '<\/div>';\n\n        if (count($sources) > 0) {\n            echo '<div class=\"sources\">';\n            echo '<strong>Quellen:<\/strong><ul>';\n            foreach ($sources as $src) {\n                $score = round(($src['score'] ?? 0) * 100);\n                echo '<li>' . htmlspecialchars($src['source'] ?? '') . ' (' . $score . '%)<\/li>';\n            }\n            echo '<\/ul><\/div>';\n        }\n\n        echo '<\/div>';\n    }",
        "new_string": "    \/**\n     * Render version partial\n     *\/\n    private function renderVersionPartial(array $result): void\n    {\n        $this->view('content.partials.version', [\n            'content' => $result['content'] ?? '',\n            'sources' => $result['sources'] ?? [],\n            'versionNumber' => $result['version_number'] ?? '?',\n        ]);\n    }"
    }
}

Response

{
    "tool_response": {
        "filePath": "\/var\/www\/dev.campus.systemische-tools.de\/src\/Controller\/ContentController.php",
        "oldString": "    \/**\n     * Render version partial\n     *\/\n    private function renderVersionPartial(array $result): void\n    {\n        $content = $result['content'] ?? '';\n        $sources = $result['sources'] ?? [];\n\n        echo '<div class=\"version-content\">';\n        echo '<div class=\"version-header\">';\n        echo '<span class=\"version-number\">Version ' . ($result['version_number'] ?? '?') . '<\/span>';\n        echo '<span class=\"badge success\">Generiert<\/span>';\n        echo '<\/div>';\n        echo '<div class=\"content-text\">' . nl2br(htmlspecialchars($content)) . '<\/div>';\n\n        if (count($sources) > 0) {\n            echo '<div class=\"sources\">';\n            echo '<strong>Quellen:<\/strong><ul>';\n            foreach ($sources as $src) {\n                $score = round(($src['score'] ?? 0) * 100);\n                echo '<li>' . htmlspecialchars($src['source'] ?? '') . ' (' . $score . '%)<\/li>';\n            }\n            echo '<\/ul><\/div>';\n        }\n\n        echo '<\/div>';\n    }",
        "newString": "    \/**\n     * Render version partial\n     *\/\n    private function renderVersionPartial(array $result): void\n    {\n        $this->view('content.partials.version', [\n            'content' => $result['content'] ?? '',\n            'sources' => $result['sources'] ?? [],\n            'versionNumber' => $result['version_number'] ?? '?',\n        ]);\n    }",
        "originalFile": "<?php\n\nnamespace Controller;\n\nuse Framework\\Controller;\nuse Infrastructure\\AI\\ModelConfig;\nuse Infrastructure\\Persistence\\CollectionRepository;\nuse Infrastructure\\Persistence\\ContentRepository;\nuse Infrastructure\\Validation\\CollectionValidator;\n\nclass ContentController extends Controller\n{\n    private ContentRepository $repository;\n    private CollectionRepository $collectionRepository;\n    private CollectionValidator $collectionValidator;\n    private string $pipelinePath = '\/opt\/scripts\/pipeline';\n    private string $pythonPath;\n\n    public function __construct()\n    {\n        $this->repository = new ContentRepository();\n        $this->collectionRepository = new CollectionRepository();\n        $this->collectionValidator = new CollectionValidator($this->collectionRepository);\n        $this->pythonPath = $this->pipelinePath . '\/venv\/bin\/python';\n    }\n\n    \/**\n     * GET \/content\n     * List all content orders\n     *\/\n    public function index(): void\n    {\n        $filters = [];\n        if (isset($_GET['status']) && $_GET['status'] !== '') {\n            $filters['status'] = $_GET['status'];\n        }\n\n        $orders = $this->repository->findAllOrders($filters);\n        $stats = $this->repository->getStatistics();\n\n        $this->view('content.index', [\n            'title' => 'Content Studio',\n            'orders' => $orders,\n            'stats' => $stats,\n            'currentStatus' => $_GET['status'] ?? '',\n        ]);\n    }\n\n    \/**\n     * GET \/content\/new\n     * Show create form\n     *\/\n    public function contentNew(): void\n    {\n        $collections = $this->getAvailableCollections();\n        $lastSettings = $this->repository->getLastOrderSettings();\n\n        $this->view('content.new', [\n            'title' => 'Neuer Content-Auftrag',\n            'profiles' => $this->repository->findAllProfiles(),\n            'contracts' => $this->repository->findAllContracts(),\n            'structures' => $this->repository->findAllStructures(),\n            'models' => ModelConfig::getAll(),\n            'collections' => $collections,\n            \/\/ Defaults from last order\n            'defaultModel' => $lastSettings['model'],\n            'defaultCollections' => $lastSettings['collections'],\n            'defaultContextLimit' => $lastSettings['context_limit'],\n            'defaultProfileId' => $lastSettings['author_profile_id'],\n            'defaultContractId' => $lastSettings['contract_id'],\n            'defaultStructureId' => $lastSettings['structure_id'],\n        ]);\n    }\n\n    \/**\n     * POST \/content\n     * Store new order\n     *\/\n    public function store(): void\n    {\n        $this->requireCsrf();\n\n        $title = trim($_POST['title'] ?? '');\n        $briefing = trim($_POST['briefing'] ?? '');\n\n        if ($title === '' || $briefing === '') {\n            $_SESSION['error'] = 'Titel und Briefing sind erforderlich.';\n            header('Location: \/content\/new');\n            exit;\n        }\n\n        \/\/ Auto-apply first active contract if none selected\n        $contractId = $_POST['contract_id'] ?? null;\n        if ($contractId === null || $contractId === '') {\n            $contracts = $this->repository->findAllContracts();\n            if ($contracts !== []) {\n                $contractId = $contracts[0]['id'];\n            }\n        }\n\n        \/\/ Process collections (multi-select)\n        $collections = $_POST['collections'] ?? ['documents'];\n        if (!is_array($collections)) {\n            $collections = [$collections];\n        }\n\n        \/\/ Validate collection compatibility\n        $collections = $this->validateCollections($collections);\n        $compatibility = $this->validateCollectionCompatibility($collections);\n        if (!$compatibility['valid']) {\n            $_SESSION['error'] = 'Collection-Fehler: ' . $compatibility['error'];\n            header('Location: \/content\/new');\n            exit;\n        }\n\n        $model = ModelConfig::validate($_POST['model'] ?? ModelConfig::DEFAULT_MODEL);\n        $contextLimit = (int) ($_POST['context_limit'] ?? 5);\n\n        $orderId = $this->repository->createOrder([\n            'title' => $title,\n            'briefing' => $briefing,\n            'author_profile_id' => $_POST['author_profile_id'] ?? null,\n            'contract_id' => $contractId,\n            'structure_id' => $_POST['structure_id'] ?? null,\n            'model' => $model,\n            'collections' => json_encode($collections),\n            'context_limit' => $contextLimit,\n        ]);\n\n        \/\/ If \"generate\" action: generate content immediately\n        if (($_POST['action'] ?? 'save') === 'generate') {\n            $collection = $collections[0] ?? 'documents';\n            $result = $this->callPython('generate', $orderId, [$model, $collection, $contextLimit]);\n\n            if (isset($result['error'])) {\n                $_SESSION['error'] = 'Generierung fehlgeschlagen: ' . $result['error'];\n            } else {\n                $_SESSION['success'] = 'Content wurde generiert.';\n            }\n        }\n\n        header('Location: \/content\/' . $orderId);\n        exit;\n    }\n\n    \/**\n     * GET \/content\/{id}\n     * Show order details\n     *\/\n    public function show(int $id): void\n    {\n        $order = $this->repository->findOrder($id);\n\n        if ($order === null) {\n            $this->notFound('Auftrag nicht gefunden');\n        }\n\n        $versions = $this->repository->findVersionsByOrder($id);\n        $latestVersion = $versions[0] ?? null;\n        $critiques = $latestVersion ? $this->repository->findCritiquesByVersion($latestVersion['id']) : [];\n        $sources = $this->repository->findSourcesByOrder($id);\n\n        \/\/ Get available collections for the dropdown\n        $availableCollections = $this->getAvailableCollections();\n\n        $this->view('content.show', [\n            'title' => $order['title'],\n            'order' => $order,\n            'versions' => $versions,\n            'latestVersion' => $latestVersion,\n            'critiques' => $critiques,\n            'sources' => $sources,\n            'models' => ModelConfig::getAll(),\n            'availableCollections' => $availableCollections,\n        ]);\n    }\n\n    \/**\n     * GET \/content\/{id}\/edit\n     * Show edit form\n     *\/\n    public function edit(int $id): void\n    {\n        $order = $this->repository->findOrder($id);\n\n        if ($order === null) {\n            $this->notFound('Auftrag nicht gefunden');\n        }\n\n        $this->view('content.edit', [\n            'title' => 'Auftrag bearbeiten',\n            'order' => $order,\n            'profiles' => $this->repository->findAllProfiles(),\n            'contracts' => $this->repository->findAllContracts(),\n            'structures' => $this->repository->findAllStructures(),\n        ]);\n    }\n\n    \/**\n     * POST \/content\/{id}\/generate\n     * Generate content (HTMX)\n     *\/\n    public function generate(int $id): void\n    {\n        $this->requireCsrf();\n\n        $model = $_POST['model'] ?? 'claude-opus-4-5-20251101';\n        $collection = $_POST['collection'] ?? 'documents';\n        $limit = (int) ($_POST['context_limit'] ?? 5);\n\n        \/\/ Validate collection\n        $collections = $this->validateCollections([$collection]);\n        if (empty($collections)) {\n            echo '<div class=\"alert error\">Ungültige Collection: ' . htmlspecialchars($collection) . '<\/div>';\n\n            return;\n        }\n        $collection = $collections[0];\n\n        \/\/ Validate compatibility (single collection always valid, but check exists)\n        $compatibility = $this->validateCollectionCompatibility($collections);\n        if (!$compatibility['valid']) {\n            echo '<div class=\"alert error\">' . htmlspecialchars($compatibility['error']) . '<\/div>';\n\n            return;\n        }\n\n        $result = $this->callPython('generate', $id, [$model, $collection, $limit]);\n\n        if (isset($result['error'])) {\n            echo '<div class=\"alert error\">Fehler: ' . htmlspecialchars($result['error']) . '<\/div>';\n\n            return;\n        }\n\n        \/\/ Return updated content section\n        $this->renderVersionPartial($result);\n    }\n\n    \/**\n     * POST \/content\/{id}\/critique\n     * Run critique round (HTMX)\n     *\/\n    public function critique(int $id): void\n    {\n        $this->requireCsrf();\n\n        \/\/ Get latest version\n        $version = $this->repository->findLatestVersion($id);\n\n        if ($version === null) {\n            echo '<div class=\"alert error\">Keine Version vorhanden.<\/div>';\n\n            return;\n        }\n\n        $model = $_POST['model'] ?? 'claude-opus-4-5-20251101';\n        $result = $this->callPython('critique', $version['id'], [$model]);\n\n        if (isset($result['error'])) {\n            echo '<div class=\"alert error\">Fehler: ' . htmlspecialchars($result['error']) . '<\/div>';\n\n            return;\n        }\n\n        \/\/ Return critique results\n        $this->renderCritiquePartial($result);\n    }\n\n    \/**\n     * POST \/content\/{id}\/revise\n     * Create revision (HTMX)\n     *\/\n    public function revise(int $id): void\n    {\n        $this->requireCsrf();\n\n        $version = $this->repository->findLatestVersion($id);\n\n        if ($version === null) {\n            echo '<div class=\"alert error\">Keine Version vorhanden.<\/div>';\n\n            return;\n        }\n\n        $model = $_POST['model'] ?? 'claude-opus-4-5-20251101';\n        $result = $this->callPython('revise', $version['id'], [$model]);\n\n        if (isset($result['error'])) {\n            echo '<div class=\"alert error\">Fehler: ' . htmlspecialchars($result['error']) . '<\/div>';\n\n            return;\n        }\n\n        $this->renderVersionPartial($result);\n    }\n\n    \/**\n     * POST \/content\/{id}\/approve\n     * Approve content\n     *\/\n    public function approve(int $id): void\n    {\n        $this->requireCsrf();\n\n        $this->repository->updateOrderStatus($id, 'approve');\n        echo '<div class=\"alert success\">Content genehmigt!<\/div>';\n        echo '<script>setTimeout(() => window.location.reload(), 1000);<\/script>';\n    }\n\n    \/**\n     * POST \/content\/{id}\/... [TRUNCATED-f96751f539b80d7c]",
        "structuredPatch": [
            {
                "oldStart": 387,
                "oldLines": 27,
                "newStart": 387,
                "newLines": 11,
                "lines": [
                    "      *\/",
                    "     private function renderVersionPartial(array $result): void",
                    "     {",
                    "-        $content = $result['content'] ?? '';",
                    "-        $sources = $result['sources'] ?? [];",
                    "-",
                    "-        echo '<div class=\"version-content\">';",
                    "-        echo '<div class=\"version-header\">';",
                    "-        echo '<span class=\"version-number\">Version ' . ($result['version_number'] ?? '?') . '<\/span>';",
                    "-        echo '<span class=\"badge success\">Generiert<\/span>';",
                    "-        echo '<\/div>';",
                    "-        echo '<div class=\"content-text\">' . nl2br(htmlspecialchars($content)) . '<\/div>';",
                    "-",
                    "-        if (count($sources) > 0) {",
                    "-            echo '<div class=\"sources\">';",
                    "-            echo '<strong>Quellen:<\/strong><ul>';",
                    "-            foreach ($sources as $src) {",
                    "-                $score = round(($src['score'] ?? 0) * 100);",
                    "-                echo '<li>' . htmlspecialchars($src['source'] ?? '') . ' (' . $score . '%)<\/li>';",
                    "-            }",
                    "-            echo '<\/ul><\/div>';",
                    "-        }",
                    "-",
                    "-        echo '<\/div>';",
                    "+        $this->view('content.partials.version', [",
                    "+            'content' => $result['content'] ?? '',",
                    "+            'sources' => $result['sources'] ?? [],",
                    "+            'versionNumber' => $result['version_number'] ?? '?',",
                    "+        ]);",
                    "     }",
                    " ",
                    "     \/**"
                ]
            }
        ],
        "userModified": false,
        "replaceAll": false
    }
}
← Vorheriger Zur Liste Nächster →