- ✅ 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
34 lines
863 B
JavaScript
34 lines
863 B
JavaScript
'use strict'
|
|
|
|
var bufferFrom = Buffer.from || Buffer
|
|
|
|
module.exports = function parseBytea (input) {
|
|
if (/^\\x/.test(input)) {
|
|
// new 'hex' style response (pg >9.0)
|
|
return bufferFrom(input.substr(2), 'hex')
|
|
}
|
|
var output = ''
|
|
var i = 0
|
|
while (i < input.length) {
|
|
if (input[i] !== '\\') {
|
|
output += input[i]
|
|
++i
|
|
} else {
|
|
if (/[0-7]{3}/.test(input.substr(i + 1, 3))) {
|
|
output += String.fromCharCode(parseInt(input.substr(i + 1, 3), 8))
|
|
i += 4
|
|
} else {
|
|
var backslashes = 1
|
|
while (i + backslashes < input.length && input[i + backslashes] === '\\') {
|
|
backslashes++
|
|
}
|
|
for (var k = 0; k < Math.floor(backslashes / 2); ++k) {
|
|
output += '\\'
|
|
}
|
|
i += Math.floor(backslashes / 2) * 2
|
|
}
|
|
}
|
|
}
|
|
return bufferFrom(output, 'binary')
|
|
}
|