mirror of
https://github.com/crewAIInc/crewAI.git
synced 2026-01-10 16:48:30 +00:00
- Replace Dict, List, Set, Tuple with dict, list, set, tuple throughout codebase - Add missing type annotations to crew_events.py methods - Add proper type annotations to test_crew_cancellation.py - Use type: ignore[method-assign] comments for mock assignments - Maintain backward compatibility while modernizing type hints This resolves lint and type-checker failures in CI while preserving the cancellation functionality. Co-Authored-By: João <joao@crewai.com>
136 lines
3.8 KiB
Python
136 lines
3.8 KiB
Python
"""
|
|
Path utilities for secure file operations in CrewAI flow module.
|
|
|
|
This module provides utilities for secure path handling to prevent directory
|
|
traversal attacks and ensure paths remain within allowed boundaries.
|
|
"""
|
|
|
|
import os
|
|
from pathlib import Path
|
|
from typing import Union
|
|
|
|
|
|
def safe_path_join(*parts: str, root: Union[str, Path, None] = None) -> str:
|
|
"""
|
|
Safely join path components and ensure the result is within allowed boundaries.
|
|
|
|
Parameters
|
|
----------
|
|
*parts : str
|
|
Variable number of path components to join.
|
|
root : Union[str, Path, None], optional
|
|
Root directory to use as base. If None, uses current working directory.
|
|
|
|
Returns
|
|
-------
|
|
str
|
|
String representation of the resolved path.
|
|
|
|
Raises
|
|
------
|
|
ValueError
|
|
If the resulting path would be outside the root directory
|
|
or if any path component is invalid.
|
|
"""
|
|
if not parts:
|
|
raise ValueError("No path components provided")
|
|
|
|
try:
|
|
# Convert all parts to strings and clean them
|
|
clean_parts = [str(part).strip() for part in parts if part]
|
|
if not clean_parts:
|
|
raise ValueError("No valid path components provided")
|
|
|
|
# Establish root directory
|
|
root_path = Path(root).resolve() if root else Path.cwd()
|
|
|
|
# Join and resolve the full path
|
|
full_path = Path(root_path, *clean_parts).resolve()
|
|
|
|
# Check if the resolved path is within root
|
|
if not str(full_path).startswith(str(root_path)):
|
|
raise ValueError(
|
|
f"Invalid path: Potential directory traversal. Path must be within {root_path}"
|
|
)
|
|
|
|
return str(full_path)
|
|
|
|
except Exception as e:
|
|
if isinstance(e, ValueError):
|
|
raise
|
|
raise ValueError(f"Invalid path components: {str(e)}")
|
|
|
|
|
|
def validate_path_exists(path: Union[str, Path], file_type: str = "file") -> str:
|
|
"""
|
|
Validate that a path exists and is of the expected type.
|
|
|
|
Parameters
|
|
----------
|
|
path : Union[str, Path]
|
|
Path to validate.
|
|
file_type : str, optional
|
|
Expected type ('file' or 'directory'), by default 'file'.
|
|
|
|
Returns
|
|
-------
|
|
str
|
|
Validated path as string.
|
|
|
|
Raises
|
|
------
|
|
ValueError
|
|
If path doesn't exist or is not of expected type.
|
|
"""
|
|
try:
|
|
path_obj = Path(path).resolve()
|
|
|
|
if not path_obj.exists():
|
|
raise ValueError(f"Path does not exist: {path}")
|
|
|
|
if file_type == "file" and not path_obj.is_file():
|
|
raise ValueError(f"Path is not a file: {path}")
|
|
elif file_type == "directory" and not path_obj.is_dir():
|
|
raise ValueError(f"Path is not a directory: {path}")
|
|
|
|
return str(path_obj)
|
|
|
|
except Exception as e:
|
|
if isinstance(e, ValueError):
|
|
raise
|
|
raise ValueError(f"Invalid path: {str(e)}")
|
|
|
|
|
|
def list_files(directory: Union[str, Path], pattern: str = "*") -> list[str]:
|
|
"""
|
|
Safely list files in a directory matching a pattern.
|
|
|
|
Parameters
|
|
----------
|
|
directory : Union[str, Path]
|
|
Directory to search in.
|
|
pattern : str, optional
|
|
Glob pattern to match files against, by default "*".
|
|
|
|
Returns
|
|
-------
|
|
list[str]
|
|
List of matching file paths.
|
|
|
|
Raises
|
|
------
|
|
ValueError
|
|
If directory is invalid or inaccessible.
|
|
"""
|
|
try:
|
|
dir_path = Path(directory).resolve()
|
|
if not dir_path.is_dir():
|
|
raise ValueError(f"Not a directory: {directory}")
|
|
|
|
return [str(p) for p in dir_path.glob(pattern) if p.is_file()]
|
|
|
|
except Exception as e:
|
|
if isinstance(e, ValueError):
|
|
raise
|
|
raise ValueError(f"Error listing files: {str(e)}")
|