{
"event": "PreToolUse",
"tool_name": "Read",
"tool_input": {
"file_path": "\/var\/www\/dev.campus.systemische-tools.de\/src\/Infrastructure\/Config\/CredentialService.php"
}
}
{
"tool_response": {
"type": "text",
"file": {
"filePath": "\/var\/www\/dev.campus.systemische-tools.de\/src\/Infrastructure\/Config\/CredentialService.php",
"content": "<?php\n\ndeclare(strict_types=1);\n\nnamespace Infrastructure\\Config;\n\nuse RuntimeException;\n\n\/**\n * Centralized credential management.\n *\n * Reads credentials from the secure credentials file and provides\n * typed accessors for different services.\n *\/\nfinal class CredentialService\n{\n private const string CREDENTIALS_FILE = '\/var\/www\/docs\/credentials\/credentials.md';\n\n private static ?array $cache = null;\n\n \/**\n * Gets the MariaDB root password.\n *\/\n public static function getMariaDbPassword(): string\n {\n return self::findCredential('MariaDB', 'root', 3);\n }\n\n \/**\n * Gets the Anthropic API key.\n *\/\n public static function getAnthropicApiKey(): string\n {\n return self::findCredential('Anthropic', 'API', 3);\n }\n\n \/**\n * Gets the Ollama host URL.\n *\/\n public static function getOllamaHost(): string\n {\n $host = self::findCredential('Ollama', 'Host', 3);\n\n return $host !== '' ? $host : 'http:\/\/localhost:11434';\n }\n\n \/**\n * Gets the Qdrant host URL.\n *\/\n public static function getQdrantHost(): string\n {\n $host = self::findCredential('Qdrant', 'Host', 3);\n\n return $host !== '' ? $host : 'http:\/\/localhost:6333';\n }\n\n \/**\n * Finds a credential by searching for matching keywords.\n *\n * @param string $keyword1 First keyword to match in the line\n * @param string $keyword2 Second keyword to match in the line\n * @param int $valueIndex Column index (0-based) containing the value\n *\/\n public static function findCredential(string $keyword1, string $keyword2, int $valueIndex): string\n {\n $lines = self::loadCredentials();\n\n foreach ($lines as $line) {\n if (str_contains($line, $keyword1) && str_contains($line, $keyword2)) {\n $parts = explode('|', $line);\n if (count($parts) > $valueIndex) {\n return trim($parts[$valueIndex]);\n }\n }\n }\n\n return '';\n }\n\n \/**\n * Clears the credential cache.\n *\/\n public static function clearCache(): void\n {\n self::$cache = null;\n }\n\n \/**\n * Loads and caches the credentials file.\n *\n * @return array<string>\n *\/\n private static function loadCredentials(): array\n {\n if (self::$cache !== null) {\n return self::$cache;\n }\n\n if (!file_exists(self::CREDENTIALS_FILE)) {\n throw new RuntimeException('Credentials file not found: ' . self::CREDENTIALS_FILE);\n }\n\n $content = file_get_contents(self::CREDENTIALS_FILE);\n\n if ($content === false) {\n throw new RuntimeException('Failed to read credentials file');\n }\n\n self::$cache = explode(\"\\n\", $content);\n\n return self::$cache;\n }\n}\n",
"numLines": 114,
"startLine": 1,
"totalLines": 114
}
}
}