-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
92 lines (72 loc) · 2.15 KB
/
index.js
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
var path = require('path')
var Promise = require('bluebird')
var cmd = require('node-cmd')
var excelNormalizer = {}
const getAsyncCommand = Promise.promisify(cmd.get, { multiArgs: true, context: cmd })
function detect(options) {
var inputFile = ''
var headerFile = ''
var extension = 'csv'
options.extension = options.extension || extension
try{
inputFile = path.relative(__dirname, options.inputFile)
} catch (error){
console.error(error)
}
try{
headerFile = path.resolve(options.headersFile)
} catch (error){
console.error(error)
}
if (options.extension.indexOf('openxml') > 0){
extension = 'xlsx'
} else if (options.extension.indexOf('excel') > 0){
extension = 'xls'
}
var args = [
'-i', '"' + inputFile + '"',
'-ex', '"' + extension + '"',
'-d', '"true"',
'-hf', '"' + headerFile +'"'
];
var command = 'python ' + __dirname + '/convert.py ' + args.join(' ')
return getAsyncCommand(command)
};
function to_csv(options) {
var inputFile = ''
var outputFile = ''
var headerFile = ''
var extension = 'csv'
options.extension = options.extension || extension
try{
inputFile = path.relative(__dirname, options.inputFile)
} catch (error){
console.error(error)
}
try{
outputFile = path.resolve(options.outputFile)
} catch (error){
console.error('No se ha especificado el fichero de salida.')
}
try{
headerFile = path.resolve(options.headersFile)
} catch (error){
console.error(error)
}
if (options.extension.indexOf('openxml') > 0){
extension = 'xlsx'
} else if (options.extension.indexOf('excel') > 0){
extension = 'xls'
}
var args = [
'-i', '"' + inputFile + '"',
'-ex', '"' + extension + '"',
'-o', '"' + outputFile +'"',
'-hf', '"' + headerFile +'"'
];
var command = 'python ' + __dirname + '/convert.py ' + args.join(' ')
return getAsyncCommand(command)
};
excelNormalizer.to_csv = to_csv
excelNormalizer.detect = detect
module.exports = excelNormalizer;