Files
cad-data-router/services/folderProcessor.js

97 lines
2.6 KiB
JavaScript
Raw Normal View History

2026-03-05 14:45:06 +01:00
const fs = require('fs-extra');
const path = require('path');
const { getDestinationDecision, getCadInfo } = require('./router');
const { buildDestinationIndex } = require('./destinationIndex');
const { buildExistingCadKeyIndex, toCadKey } = require('./duplicateIndex');
const { getUnroutedTarget, getDuplicateTarget } = require('./unrouted');
async function collectFilesRecursively(rootDir) {
const files = [];
async function walk(currentDir) {
const entries = await fs.readdir(currentDir, { withFileTypes: true });
for (const entry of entries) {
const fullPath = path.join(currentDir, entry.name);
if (entry.isDirectory()) {
await walk(fullPath);
continue;
}
if (entry.isFile()) {
files.push({ fullPath, fileName: entry.name });
}
}
}
await walk(rootDir);
return files;
}
2026-03-05 14:45:06 +01:00
async function processFolder(folder, config) {
const files = await collectFilesRecursively(folder);
const destinationIndex = await buildDestinationIndex(config?.destination);
const existingCadKeys = await buildExistingCadKeyIndex(config?.destination);
2026-03-05 14:45:06 +01:00
const result = {
scanned: 0,
copied: 0,
skipped: 0,
unrouted: 0,
duplicates: 0,
2026-03-05 14:45:06 +01:00
details: [],
};
for (const { fullPath, fileName } of files) {
const file = fileName;
2026-03-05 14:45:06 +01:00
result.scanned += 1;
const cadInfo = getCadInfo(file);
if (!cadInfo) {
2026-03-05 14:45:06 +01:00
result.skipped += 1;
continue;
}
if (existingCadKeys.has(toCadKey(cadInfo))) {
const duplicateTarget = await getDuplicateTarget(file);
await fs.copy(fullPath, duplicateTarget.destinationPath, { overwrite: false });
result.copied += 1;
result.duplicates += 1;
result.details.push({
file,
destination: duplicateTarget.destinationDir,
reason: 'Duplicato gia presente prima dello smistamento',
});
continue;
}
const decision = getDestinationDecision(file, config, destinationIndex);
const destDir = decision.destination;
2026-03-05 14:45:06 +01:00
if (!destDir) {
const unroutedTarget = await getUnroutedTarget(file);
await fs.copy(fullPath, unroutedTarget.destinationPath, { overwrite: false });
result.copied += 1;
result.unrouted += 1;
result.details.push({
file,
destination: unroutedTarget.destinationDir,
reason: decision.reason || 'Nessuna regola trovata',
});
2026-03-05 14:45:06 +01:00
continue;
}
const dest = path.join(destDir, file);
await fs.copy(fullPath, dest, { overwrite: true });
2026-03-05 14:45:06 +01:00
result.copied += 1;
result.details.push({ file, destination: destDir });
}
return result;
}
module.exports = { processFolder };