{
"event": "PreToolUse",
"tool_name": "Write",
"tool_input": {
"file_path": "\/var\/www\/dev.campus.systemische-tools.de\/crawler\/src\/domain\/value_objects\/http_status.py",
"content": "from __future__ import annotations\n\nfrom dataclasses import dataclass\n\nINFO_MIN, INFO_MAX = 100, 199\nSUCCESS_MIN, SUCCESS_MAX = 200, 299\nREDIRECT_MIN, REDIRECT_MAX = 300, 399\nCLIENT_MIN, CLIENT_MAX = 400, 499\nSERVER_MIN, SERVER_MAX = 500, 599\n\n\n@dataclass(frozen=True, slots=True)\nclass HttpStatus:\n code: int\n\n def __post_init__(self) -> None:\n if not INFO_MIN <= self.code <= SERVER_MAX:\n raise ValueError(f\"invalid HTTP status: {self.code}\")\n\n @property\n def is_success(self) -> bool:\n return SUCCESS_MIN <= self.code <= SUCCESS_MAX\n\n @property\n def is_redirect(self) -> bool:\n return REDIRECT_MIN <= self.code <= REDIRECT_MAX\n\n @property\n def is_client_error(self) -> bool:\n return CLIENT_MIN <= self.code <= CLIENT_MAX\n\n @property\n def is_server_error(self) -> bool:\n return SERVER_MIN <= self.code <= SERVER_MAX\n\n @property\n def is_error(self) -> bool:\n return self.is_client_error or self.is_server_error\n"
}
}
{
"tool_response": {
"type": "create",
"filePath": "\/var\/www\/dev.campus.systemische-tools.de\/crawler\/src\/domain\/value_objects\/http_status.py",
"content": "from __future__ import annotations\n\nfrom dataclasses import dataclass\n\nINFO_MIN, INFO_MAX = 100, 199\nSUCCESS_MIN, SUCCESS_MAX = 200, 299\nREDIRECT_MIN, REDIRECT_MAX = 300, 399\nCLIENT_MIN, CLIENT_MAX = 400, 499\nSERVER_MIN, SERVER_MAX = 500, 599\n\n\n@dataclass(frozen=True, slots=True)\nclass HttpStatus:\n code: int\n\n def __post_init__(self) -> None:\n if not INFO_MIN <= self.code <= SERVER_MAX:\n raise ValueError(f\"invalid HTTP status: {self.code}\")\n\n @property\n def is_success(self) -> bool:\n return SUCCESS_MIN <= self.code <= SUCCESS_MAX\n\n @property\n def is_redirect(self) -> bool:\n return REDIRECT_MIN <= self.code <= REDIRECT_MAX\n\n @property\n def is_client_error(self) -> bool:\n return CLIENT_MIN <= self.code <= CLIENT_MAX\n\n @property\n def is_server_error(self) -> bool:\n return SERVER_MIN <= self.code <= SERVER_MAX\n\n @property\n def is_error(self) -> bool:\n return self.is_client_error or self.is_server_error\n",
"structuredPatch": [],
"originalFile": null,
"userModified": false
}
}