|
| 1 | +export interface ScanConfig { |
| 2 | + includePaths: string[]; |
| 3 | + excludePaths: string[]; |
| 4 | +} |
| 5 | + |
| 6 | +function validatePath(path: string): boolean { |
| 7 | + // Add any path validation logic you need |
| 8 | + return path.startsWith('/') && !path.includes('..'); |
| 9 | +} |
| 10 | + |
| 11 | +export function getScanConfig(): ScanConfig { |
| 12 | + const scanPaths = process.env.SCAN_PATHS?.split(',').filter(Boolean) || ['/scan_dir']; |
| 13 | + const excludePaths = process.env.EXCLUDE_PATHS?.split(',').filter(Boolean) || []; |
| 14 | + |
| 15 | + // Validate paths |
| 16 | + const validIncludePaths = scanPaths.filter((path) => { |
| 17 | + const isValid = validatePath(path); |
| 18 | + if (!isValid) { |
| 19 | + console.warn(`Invalid include path: ${path}`); |
| 20 | + } |
| 21 | + return isValid; |
| 22 | + }); |
| 23 | + |
| 24 | + const validExcludePaths = excludePaths.filter((path) => { |
| 25 | + const isValid = validatePath(path); |
| 26 | + if (!isValid) { |
| 27 | + console.warn(`Invalid exclude path: ${path}`); |
| 28 | + } |
| 29 | + return isValid; |
| 30 | + }); |
| 31 | + |
| 32 | + if (validIncludePaths.length === 0) { |
| 33 | + console.warn('No valid scan paths provided, defaulting to /scan_dir'); |
| 34 | + validIncludePaths.push('/scan_dir'); |
| 35 | + } |
| 36 | + |
| 37 | + console.log('Scan configuration:', { |
| 38 | + includePaths: validIncludePaths, |
| 39 | + excludePaths: validExcludePaths, |
| 40 | + }); |
| 41 | + |
| 42 | + return { |
| 43 | + includePaths: validIncludePaths, |
| 44 | + excludePaths: validExcludePaths, |
| 45 | + }; |
| 46 | +} |
0 commit comments