-
Notifications
You must be signed in to change notification settings - Fork 0
/
cli.js
226 lines (194 loc) · 7.41 KB
/
cli.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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
const path = require('path'),
fs = require('fs'),
commander = require('commander'),
_ = require('underscore'),
Maker = require('./maker'),
Logger = require('./logger'),
defaultConfigFile = 'definer.json';
commander
.version('0.0.4')
.usage('[options] <file>')
.option('-d, --directory <path1,pathN>', 'directory of modules, comma delimited', '.')
.option('-m, --module <name>', 'target module name')
.option('-i, --istanbul <name1,nameN>', 'names of modules to coverage by istanbul, comma delimited',
function(modules) { return modules.split(','); })
.option('-p, --postfix <postfix>', 'postfix to find files')
.option('-v, --verbose <modes>', 'l - log, i - info, w - warn, e - error',
function(modes) { return modes.split(''); })
.option('-c, --config <file>', 'json format config', defaultConfigFile)
.parse(process.argv);
/**
* Конструктор
* @constructor
*/
function Cli(filePath, options) {
var verbose = this.resolveVerboseTypes(options.verbose || []);
this.console = new Logger(verbose);
this.saveFilePath = this.getAbsolutePath(filePath);
this.options = _.extend(this.getConfig(options.config), this.cleanObject({
directory: this.getAbsolutePath(options.directory.split(',')),
module: options.module,
istanbul: options.istanbul,
postfix: options.postfix,
verbose: verbose
}));
}
Cli.prototype = {
/**
* Current working directory
* @private
* @type {String}
*/
cwd: process.cwd(),
/**
* Получить абсолютный путь из относительного
* @private
* @param {String|String[]} relativePaths Относительный путь или массив путей
* @returns {String|String[]}
*/
getAbsolutePath: function(relativePaths) {
return Array.isArray(relativePaths)
? relativePaths.map(function(relativePath) {
return path.join(this.cwd, relativePath);
}, this)
: path.join(this.cwd, relativePaths);
},
/**
* Удалить из объекта все неопределённые поля
* @private
* @param {Object} object Объект
* @returns {Object}
*/
cleanObject: function(object) {
Object.keys(object).forEach(function(key) {
if(!_.isUndefined(object[key])) return;
delete object[key];
});
return object;
},
/**
* Получить конфигурационный объект из файла
* @private
* @param {String} file Относительный путь до файла
* @returns {Object}
*/
getConfig: function(file) {
var configPath = path.join(this.cwd, file),
configExists = fs.existsSync(configPath),
config = configExists
? JSON.parse(fs.readFileSync(configPath, { encoding: 'UTF-8' }))
: {};
if(!configExists) {
if(file !== defaultConfigFile) {
this.console.error('Missed config', [configPath]);
}
return config;
}
return this.propertyModifier(['clean', 'jsdoc'], path.dirname(configPath), config);
},
/**
* Модифицировать поля конфигурационного объекта
* @private
* @param {String[]} properties Поля к модификации
* @param {String} basePath Абсолютный путь до директории с конфигурационным файлом
* @param {Object} config Конфигурационный объект
* @returns {*}
*/
propertyModifier: function(properties, basePath, config) {
properties.forEach(function(property) {
if(!config.hasOwnProperty(property)) return;
Object.keys(config[property]).forEach(function(key) {
config[property][key] = this.modifyProperty[property].call(
this, key, config[property][key], basePath
);
}, this);
}, this);
return config;
},
/**
* Методы модификации полей опций конфигурационного объекта
* @private
* @type {Function[]}
*/
modifyProperty: {
/**
* Модифицировать поля опции clean
* @param {String} module Имя модуля
* @param {String|Array} value Путь до файла или нескольких файлов
* @param {String} basePath Абсолютный путь до директории с конфигурационным файлом
* @returns {Array} Абсолютные пути до файлов модуля
*/
clean: function(module, value, basePath) {
var files = Array.isArray(value) ? value : [value],
filesFullPath = [];
files.forEach(function(file) {
filesFullPath.push(path.join(basePath, file));
});
return filesFullPath;
},
/**
* Модифицировать поля опции jsdoc
* @param {String} tag Имя тега
* @param {*} value Значение тега
* @param {String} basePath Абсолютный путь до директории с конфигурационным файлом
* @returns {String|boolean} Абсолютный путь до файла или поле без изменения
*/
jsdoc: function(tag, value, basePath) {
if(!_.isString(value)) return value;
var file = path.join(basePath, value);
return fs.existsSync(file) ? file : value;
}
},
/**
* Соответствие сокращённых и полных имён типов сообщений
* @private
* @type {Object}
*/
verboseAliases: {
l: 'log',
i: 'info',
w: 'warn',
e: 'error'
},
/**
* Развернуть сокращённые типы сообщений в полные
* @private
* @param {String[]} verbose Сокращённые типы сообщений
* @returns {String[]}
*/
resolveVerboseTypes: function(verbose) {
return verbose.map(function(type) {
return this.verboseAliases[type];
}.bind(this));
},
/**
* Запустить выполнение
*/
run: function() {
new Maker({
directory: this.options.directory,
module: this.options.module,
istanbul: this.options.istanbul,
postfix: this.options.postfix,
verbose: this.options.verbose,
clean: this.options.clean,
jsdoc: this.options.jsdoc
}).make(this.saveFilePath).then(function(saved) {
var log = { operation: 'save', path: this.saveFilePath };
saved ? this.console.info(log) : this.console.error(log);
}.bind(this)).done();
}
};
module.exports.run = function() {
if(!commander.args.length) {
return commander.outputHelp();
}
new Cli(commander.args[0], {
directory: commander.directory,
module: commander.module,
istanbul: commander.istanbul,
postfix: commander.postfix,
verbose: commander.verbose,
config: commander.config
}).run();
};