| 1 | # edit_work_dir_file.py DOX |
| 2 | |
| 3 | ## Purpose |
| 4 | |
| 5 | - Own the `edit_work_dir_file.py` API endpoint. |
| 6 | - This module handles workdir file operations for edit work dir file. |
| 7 | - Keep this file-level DOX profile synchronized with `edit_work_dir_file.py` because this directory is intentionally flat. |
| 8 | |
| 9 | ## Ownership |
| 10 | |
| 11 | - `edit_work_dir_file.py` owns the runtime implementation. |
| 12 | - `edit_work_dir_file.py.dox.md` owns durable notes about responsibilities, contracts, side effects, and verification for that implementation. |
| 13 | - Classes: |
| 14 | - `EditWorkDirFile` (`ApiHandler`) |
| 15 | - `get_methods(cls)` |
| 16 | - `async process(self, input: Input, request: Request) -> Output` |
| 17 | - Top-level functions: |
| 18 | - `async load_file(file_path: str) -> dict` |
| 19 | - `save_file(file_path: str, content: str) -> bool` |
| 20 | - Notable constants/configuration names: `MAX_EDIT_FILE_SIZE`, `BINARY_SAMPLE_SIZE`. |
| 21 | |
| 22 | ## Runtime Contracts |
| 23 | |
| 24 | - HTTP handlers must derive from `helpers.api.ApiHandler`; WebSocket handlers must derive from `helpers.ws.WsHandler`. |
| 25 | - Update this file whenever request payloads, authentication or CSRF requirements, response shapes, route side effects, or WebSocket event contracts change. |
| 26 | - `EditWorkDirFile` is an `ApiHandler`. |
| 27 | - `EditWorkDirFile` defines `process(...)`. |
| 28 | - `EditWorkDirFile` defines `get_methods(...)`. |
| 29 | - Observed side-effect areas: filesystem reads, filesystem writes. |
| 30 | - Imported dependency areas include: `helpers`, `helpers.api`, `helpers.file_browser`, `mimetypes`, `os`. |
| 31 | |
| 32 | ## Key Concepts |
| 33 | |
| 34 | - Important called helpers/classes observed in the source: `FileBrowser`, `browser.get_full_path`, `os.path.isdir`, `os.path.getsize`, `files.is_probably_binary_file`, `mimetypes.guess_type`, `browser.save_text_file`, `error_str.strip`, `Exception`, `os.path.basename`, `error_str.split`, `file.read`, `line.split.strip`, `file_path.startswith`, `content.encode`, `runtime.call_development_function`, `extension.call_extensions_async`, `self._extract_error_message`, `line.split`. |
| 35 | - Keep request/response, tool, or helper semantics documented here at the same time as source changes. |
| 36 | |
| 37 | ## Work Guidance |
| 38 | |
| 39 | - Preserve authentication, CSRF, loopback, and API-key checks unless the endpoint contract explicitly changes. |
| 40 | - Update frontend callers, plugin callers, and tests together when payload shape changes. |
| 41 | - Use `helpers.api.Response` for non-JSON responses, files, redirects, or status-specific replies. |
| 42 | |
| 43 | ## Verification |
| 44 | |
| 45 | - Run endpoint-specific or API/WebSocket tests for changed behavior; smoke-test browser callers when no focused test exists. |
| 46 | - No direct test reference was found by name search; choose the nearest behavioral test or perform a focused smoke check. |
| 47 | |
| 48 | ## Child DOX Index |
| 49 | |
| 50 | No child DOX files. |