- ✅ Ticket 1.1: Estructura Clean Architecture en backend - ✅ Ticket 1.2: Schemas Zod compartidos - ✅ Ticket 1.3: Refactorización drugs.ts (1362 → 8 archivos modulares) - ✅ Ticket 1.4: Refactorización procedures.ts (3583 → 6 archivos modulares) - ✅ Ticket 1.5: Eliminación de duplicidades (~50 líneas) Cambios principales: - Creada estructura Clean Architecture en backend/src/ - Schemas Zod compartidos en backend/src/shared/schemas/ - Refactorización modular de drugs y procedures - Utilidades genéricas en src/utils/ (filter, validation) - Eliminados scripts obsoletos y documentación antigua - Corregidos errores: QueryClient, import test-error-handling - Build verificado y funcionando correctamente
65 lines
1.6 KiB
JavaScript
65 lines
1.6 KiB
JavaScript
const {dirname} = require('path')
|
|
|
|
const mkdirpManual = (path, opts, made) => {
|
|
opts.recursive = false
|
|
const parent = dirname(path)
|
|
if (parent === path) {
|
|
return opts.mkdirAsync(path, opts).catch(er => {
|
|
// swallowed by recursive implementation on posix systems
|
|
// any other error is a failure
|
|
if (er.code !== 'EISDIR')
|
|
throw er
|
|
})
|
|
}
|
|
|
|
return opts.mkdirAsync(path, opts).then(() => made || path, er => {
|
|
if (er.code === 'ENOENT')
|
|
return mkdirpManual(parent, opts)
|
|
.then(made => mkdirpManual(path, opts, made))
|
|
if (er.code !== 'EEXIST' && er.code !== 'EROFS')
|
|
throw er
|
|
return opts.statAsync(path).then(st => {
|
|
if (st.isDirectory())
|
|
return made
|
|
else
|
|
throw er
|
|
}, () => { throw er })
|
|
})
|
|
}
|
|
|
|
const mkdirpManualSync = (path, opts, made) => {
|
|
const parent = dirname(path)
|
|
opts.recursive = false
|
|
|
|
if (parent === path) {
|
|
try {
|
|
return opts.mkdirSync(path, opts)
|
|
} catch (er) {
|
|
// swallowed by recursive implementation on posix systems
|
|
// any other error is a failure
|
|
if (er.code !== 'EISDIR')
|
|
throw er
|
|
else
|
|
return
|
|
}
|
|
}
|
|
|
|
try {
|
|
opts.mkdirSync(path, opts)
|
|
return made || path
|
|
} catch (er) {
|
|
if (er.code === 'ENOENT')
|
|
return mkdirpManualSync(path, opts, mkdirpManualSync(parent, opts, made))
|
|
if (er.code !== 'EEXIST' && er.code !== 'EROFS')
|
|
throw er
|
|
try {
|
|
if (!opts.statSync(path).isDirectory())
|
|
throw er
|
|
} catch (_) {
|
|
throw er
|
|
}
|
|
}
|
|
}
|
|
|
|
module.exports = {mkdirpManual, mkdirpManualSync}
|