-
Notifications
You must be signed in to change notification settings - Fork 41
/
index.js
340 lines (248 loc) · 7.9 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
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
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
// jscs:disable jsDoc
'use strict';
var _ = require('underscore'),
path = require('path'),
fs = require('fs-extended'),
async = require('async'),
config = require('./lib/config'),
constants = require('./lib/constants'),
logger = require('./lib/logger'),
jobs = require('./lib/jobs'),
gm = require('gm');
/**
* Generates icons
* @param {Object} opts options
* @param {Function} callback callback(err, output)
*/
exports.icons = function(opts, callback) {
opts = opts || {};
opts.type = 'icon';
// config
config(opts, function(err, cfg) {
if (err) {
return callback(err);
}
// create tasks
jobs.createTasks(cfg, function(err, tasks) {
if (err) {
return callback(err);
}
if (cfg.cli) {
logger.info('Starting ' + _.size(tasks) + ' jobs');
}
// run tasks
async.parallel(tasks, callback);
});
});
};
/**
* Generates adaptiveicons
* @param {Object} opts options
* @param {Function} callback callback(err, output)
*/
exports.adaptiveicons = function(opts, callback) {
opts = opts || {};
opts.type = 'icon-foreground';
// config
config(opts, function(err, cfg) {
if (err) {
return callback(err);
}
// create tasks
jobs.createTasks(cfg, function(err, tasks) {
if (err) {
return callback(err);
}
if (cfg.cli) {
logger.info('Starting ' + _.size(tasks) + ' jobs');
}
// run tasks
async.parallel(tasks, callback);
});
});
};
/**
* Generates splashes
* @param {Object} opts options
* @param {Function} callback callback(err, output)
*/
exports.splashes = function(opts, callback) {
opts = opts || {};
opts.type = 'splash';
// config
config(opts, function(err, cfg) {
if (err) {
return callback(err);
}
// create tasks
jobs.createTasks(cfg, function(err, tasks) {
if (err) {
return callback(err);
}
if (cfg.cli) {
logger.info('Starting ' + _.size(tasks) + ' jobs');
}
// run tasks
async.parallel(tasks, callback);
});
});
};
/**
* Generates assets
* @param {Object} opts options
* @param {Function} callback callback(err, output)
*/
exports.assets = function(opts, callback) {
opts = opts || {};
opts.type = 'asset';
// config
config(opts, function(err, cfg) {
if (err) {
return callback(err);
}
var stat = fs.statSync(cfg.input);
var files = [];
var inputIsUnderOutput = cfg.input.indexOf(path.join(cfg.outputDir, cfg.assetsDir)) === 0;
jobs.getSpecs(cfg, function(err, specs) {
var outputSpecs = {};
var inputSpec;
_.each(specs, function(spec, name) {
if (!inputSpec) {
var re = new RegExp((spec.suffix || '') + '\.(png|jpg)$');
// if input is not under output
if (!inputIsUnderOutput) {
// and the user has specified dpi
if (cfg.origDpi) {
// and this spec matches
if (spec.dpi === cfg.origDpi) {
inputSpec = spec;
}
} else {
// if this spec has a suffix we can and do match
if (spec.suffix && stat.isFile() && cfg.input.match(re)) {
inputSpec = spec;
}
}
// since our input is not under ouput, we need to override the output path
if (inputSpec) {
inputSpec = _.defaults({
output: stat.isFile() ? path.dirname(cfg.input) : cfg.input
}, inputSpec);
}
} else {
// our input is under this specific spec path
if (cfg.input.substr(0, spec.output.length) === spec.output) {
// this spec has NO suffix we need to match as well
if (!spec.suffix) {
inputSpec = spec;
return; // skip this spec as output
}
// the input is a file
if (stat.isFile()) {
// which matches the suffix
if (cfg.input.match(re)) {
inputSpec = spec;
return; // skip this spec as output
}
} else {
// see if there are files under the path that match the suffix
var suffixFiles = fs.listFilesSync(cfg.input, {
recursive: true,
prependDir: true,
filter: function(itemPath, itemStat) {
return itemPath.match(re);
}
});
// there are
if (suffixFiles.length > 0) {
inputSpec = spec;
return; // skip this spec as output
}
}
}
}
}
// include this spec in the output
outputSpecs[name] = spec;
});
if (!inputSpec) {
return callback('Could not identify input density.');
}
if (outputSpecs['android-res-mdpi'] && outputSpecs['ios-images']) {
delete outputSpecs['android-res-mdpi'];
}
if (stat.isDirectory()) {
files = fs.listFilesSync(cfg.input, {
recursive: true,
prependDir: true,
filter: function(itemPath, itemStat) {
// only filter on suffix if our input is in our output dir
return itemPath.match(new RegExp(((!inputIsUnderOutput || !inputSpec.suffix) ? '' : inputSpec.suffix) + '\.(png|jpg)$'));
}
});
} else {
files.push(cfg.input);
}
if (files.length === 0) {
return callback('Could not find input images.');
}
var tasks = [];
_.each(files, function(source) {
var sourceTime = fs.statSync(source).mtime;
var relativePath = source.substr(inputSpec.output.length);
// replace any suffixes from our source
relativePath = relativePath.replace(/(?:@[0-9]x|~[a-z]+)(\.[a-z]+)$/, '$1');
_.each(outputSpecs, function(spec, n) {
if (spec.dpi > inputSpec.dpi) {
logger.info('Skipped higher dpi: ' + spec.name.cyan);
return;
}
var target = path.join(spec.output, relativePath);
if (spec.suffix) {
target = target.replace(/(\.(png|jpg)+)$/i, spec.suffix + '$1');
}
if (!fs.existsSync(target.replace(/(\.png)$/, '.9$1')) && (!fs.existsSync(target) || (sourceTime > fs.statSync(target).mtime))) {
tasks.push(function(callback) {
if (inputSpec.dpi === spec.dpi) {
fs.copyFileSync(source, target);
// async feedback for CLI
if (cfg.cli) {
logger.info('Copied: ' + target.cyan);
}
return callback(null, target);
}
fs.createDirSync(path.dirname(target));
var im = gm.subClass({
imageMagick: true
});
// read
var convert = im(source);
// resize
convert.in('-resize', ((spec.dpi / inputSpec.dpi) * 100) + '%');
// show command
if (cfg.trace) {
logger.debug('Executing: ' + convert.args().join(' ').cyan);
}
convert.write(target, function(err) {
if (err) {
return callback(err);
}
// async feedback for CLI
if (cfg.cli) {
logger.info('Generated: ' + target.cyan);
}
// pass back output
callback(null, target);
});
// show command
if (cfg.trace && cfg.cli) {
logger.debug('Executing: ' + convert.args().join(' ').cyan);
}
});
}
});
});
async.series(tasks, callback);
});
});
};