1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
use crateProgressCallback;
use cratePackageVulnerabilities;
use cratePackage;
use crateResult;
use async_trait;
/// Port for fetching vulnerability information from external sources
///
/// This trait defines the interface for querying vulnerability databases
/// (e.g., OSV API) to check if packages have known security vulnerabilities.
///
/// # Security Considerations
/// - Implementations must not send internal/private package names to public APIs
/// - Implementations should implement rate limiting to prevent DoS
/// - Implementations should have timeout mechanisms
///
/// # Implementation Notes
/// - Use batch API calls when possible for efficiency (OSV API provides batch endpoint)
/// - Filter results to only include packages with vulnerabilities
/// - Empty result indicates no vulnerabilities found (not an error condition)
/// - All methods are async for efficient parallel vulnerability fetching
///
/// # Example
/// ```no_run
/// # use uv_sbom::ports::outbound::VulnerabilityRepository;
/// # use uv_sbom::sbom_generation::domain::Package;
/// # use async_trait::async_trait;
/// # struct MockRepo;
/// # #[async_trait]
/// # impl VulnerabilityRepository for MockRepo {
/// # async fn fetch_vulnerabilities(
/// # &self,
/// # packages: Vec<Package>,
/// # ) -> uv_sbom::shared::Result<Vec<uv_sbom::sbom_generation::domain::vulnerability::PackageVulnerabilities>> {
/// # Ok(vec![])
/// # }
/// # }
/// # async fn example() -> uv_sbom::shared::Result<()> {
/// # let repo = MockRepo;
/// let packages = vec![
/// Package::new("requests".to_string(), "2.31.0".to_string())?,
/// Package::new("urllib3".to_string(), "1.26.0".to_string())?,
/// ];
///
/// let vulnerabilities = repo.fetch_vulnerabilities(packages).await?;
/// // vulnerabilities contains only packages with known vulnerabilities
/// # Ok(())
/// # }
/// ```
/// Dummy implementation of VulnerabilityRepository for unit type
/// This allows using Option<()> when no vulnerability checking is needed