forked from Studio-42/elFinder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Jakefile.js
293 lines (269 loc) · 8.65 KB
/
Jakefile.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
/*
* This is build file for elFinder 2.x
* Build tool: https://github.com/mde/jake
* JS compressor: https://github.com/mishoo/UglifyJS/
* CSS optimizer: https://github.com/afelix/csso
*/
// if Jake fails to detect need libraries try running before: export NODE_PATH=`npm root`
var fs = require('fs'),
path = require('path'),
util = require('util'),
ugp = require('uglify-js').parser,
ugu = require('uglify-js').uglify,
csso = require('csso');
var dirmode = 0755,
src = __dirname,
version = null,
files = {
'elfinder.full.js':
[
path.join(src, 'js', 'elFinder.js'),
path.join(src, 'js', 'elFinder.version.js'),
path.join(src, 'js', 'jquery.elfinder.js'),
path.join(src, 'js', 'elFinder.options.js'),
path.join(src, 'js', 'elFinder.history.js'),
path.join(src, 'js', 'elFinder.command.js'),
path.join(src, 'js', 'elFinder.resources.js'),
path.join(src, 'js', 'jquery.dialogelfinder.js'),
path.join(src, 'js', 'i18n', 'elfinder.en.js')
]
.concat(grep(path.join(src, 'js', 'ui'), '\\.js$'))
.concat(grep(path.join(src, 'js', 'commands'), '\\.js$')),
'elfinder.full.css': grep(path.join(src, 'css'), '\\.css$', 'elfinder|theme'),
'images': grep(path.join(src, 'img'), '\\.png|\\.gif'),
'i18n': grep(path.join(src, 'js', 'i18n'), '\\.js', 'elfinder.en.js'),
'php':
[
path.join(src, 'php', 'elFinder.class.php'),
path.join(src, 'php', 'elFinderConnector.class.php'),
path.join(src, 'php', 'elFinderVolumeDriver.class.php'),
path.join(src, 'php', 'elFinderVolumeFTP.class.php'),
path.join(src, 'php', 'elFinderVolumeLocalFileSystem.class.php'),
path.join(src, 'php', 'elFinderVolumeMySQL.class.php'),
path.join(src, 'php', 'connector.minimal.php'),
path.join(src, 'php', 'mime.types'),
path.join(src, 'php', 'MySQLStorage.sql')
],
'misc':
[
path.join(src, 'js', 'proxy', 'elFinderSupportVer1.js'),
path.join(src, 'Changelog'),
path.join(src, 'README.md'),
path.join(src, 'elfinder.html')
]
};
// custom functions
function grep(prefix, mask, exculde) {
var m = new RegExp(mask);
var e = new RegExp(exculde);
var o = new Array();
var input = new Array();
try {
input = fs.readdirSync(prefix);
} catch (err) { }
for (i in input) {
if ((typeof exculde !== 'undefined') && (input[i].match(e))) {
//console.log('skip ' + input[i]);
continue;
}
if (input[i].match(m)) {
o.push(path.join(prefix, input[i]));
}
}
return o.sort();
}
function copyFile(from, to, overwrite) {
if (!overwrite && path.existsSync(to)) {
return false;
}
console.log('\t' + from);
var srcs = fs.createReadStream(from);
var dsts = fs.createWriteStream(to);
return util.pump(srcs, dsts);
}
function getComment() {
var ver = fs.readFileSync(path.join(src, 'js', 'elFinder.version.js')).toString();
ver = ver.match(/= '(.+)';/);
var d = new Date();
var bd = d.getFullYear() + '-' +
(d.getMonth() >= 9 ? '' : '0') + (d.getMonth() + 1) + '-' +
(d.getDate() >= 10 ? '' : '0') + d.getDate();
var comment =
'/*!\n' +
' * elFinder - file manager for web\n' +
' * Version ' + ver[1] + ' (' + bd + ')\n' +
' * http://elfinder.org\n' +
' * \n' +
' * Copyright 2009-2012, Studio 42\n' +
' * Licensed under a 3 clauses BSD license\n' +
' */\n';
return comment;
}
// tasks
desc('Help')
task('default', function(){
console.log(
"This is elFinder build script, run `jake --tasks` for more info, for a default build run:\n" +
" jake -C ./build elfinder"
);
});
desc('pre build task')
task('prebuild', function(){
console.log('build dir: ' + path.resolve());
console.log('src dir: ' + src);
var dir = ['css', 'js', 'img', path.join('js', 'i18n'), path.join('js', 'proxy'), 'php', 'files'];
for (d in dir) {
var bd = dir[d];
if (!path.existsSync(bd)) {
console.log('mkdir ' + bd);
fs.mkdirSync(bd, dirmode);
}
}
//jake.Task['elfinder'].invoke();
});
desc('build elFinder')
task({'elfinder': ['prebuild', 'css/elfinder.min.css', 'js/elfinder.min.js', 'misc']}, function(){
console.log('elFinder build done');
});
// CSS
desc('concat elfinder.full.css')
file({'css/elfinder.full.css': files['elfinder.full.css']}, function(){
console.log('concat ' + this.name)
var data = '';
for (f in this.prereqs) {
file = this.prereqs[f];
console.log('\t' + file);
data += '\n/* File: ' + file + ' */\n';
data += fs.readFileSync(file);
}
fs.writeFileSync(this.name, getComment() + data);
});
desc('optimize elfinder.min.css');
file({'css/elfinder.min.css': ['css/elfinder.full.css']}, function () {
console.log('optimize elfinder.min.css');
var css_optimized = csso.justDoIt(fs.readFileSync('css/elfinder.full.css').toString())
fs.writeFileSync(this.name, getComment() + css_optimized);
});
// JS
desc('concat elfinder.full.js')
file({'js/elfinder.full.js': files['elfinder.full.js']}, function(){
console.log('concat elfinder.full.js');
var strict = new RegExp('"use strict"\;?\n?');
var elf = files['elfinder.full.js'];
var data = '';
for (f in elf) {
file = elf[f];
console.log('\t' + file);
data += '\n\n/*\n * File: ' + file + '\n */\n\n';
data += fs.readFileSync(file);
data = data.replace(strict, '');
}
data = '(function($) {\n' + data + '\n})(jQuery);'; // add closure
fs.writeFileSync(this.name, getComment() + data);
});
desc('uglify elfinder.min.js');
file({'js/elfinder.min.js': ['js/elfinder.full.js']}, function () {
console.log('uglify elfinder.min.js');
var ast = ugp.parse(fs.readFileSync('js/elfinder.full.js').toString()); // parse code and get the initial AST
ast = ugu.ast_mangle(ast); // get a new AST with mangled names
ast = ugu.ast_squeeze(ast); // get an AST with compression optimizations
var result = ugu.split_lines(ugu.gen_code(ast), 1024 * 8); // insert new line every 8 kb
fs.writeFileSync(this.name, getComment() + result);
});
// IMG + I18N + PHP
desc('copy misc files')
task('misc', function(){
console.log('copy misc files');
var cf = files['images']
.concat(files['i18n'])
.concat(path.join(src, 'css', 'theme.css'))
.concat(files['php'])
.concat(files['misc']);
for (i in cf)
{
var dst = cf[i].replace(src, '').substr(1);
copyFile(cf[i], dst);
}
// elfinder.html
// var hs = path.join(src, 'build', 'elfinder.html');
// var hd = path.join('elfinder.html');
// copyFile(hs, hd);
// connector
var cs = path.join(src, 'php', 'connector.minimal.php');
var cd = path.join('php', 'connector.php');
copyFile(cs, cd);
});
// other
desc('clean build dir')
task('clean', function(){
console.log('cleaning the floor')
uf = ['js/elfinder.full.js', 'js/elfinder.min.js', 'css/elfinder.full.css', 'css/elfinder.min.css'];
// clean images, js/i18n and php only if we are not in src
if (src != path.resolve()) {
uf = uf
.concat(grep('img', '\\.png|\\.gif'))
.concat(grep(path.join('js', 'i18n')))
.concat(path.join('css', 'theme.css'))
.concat(grep('php'))
.concat([path.join('js', 'proxy', 'elFinderSupportVer1.js'), 'Changelog', 'README.md', 'elfinder.html', path.join('files', 'readme.txt')]);
}
for (f in uf) {
var file = uf[f];
if (path.existsSync(file)) {
console.log('\tunlink ' + file);
fs.unlinkSync(file);
}
}
// if (path.join(src, 'build') != path.resolve()) {
// fs.unlinkSync('elfinder.html');
// }
if (src != path.resolve()) {
var ud = ['css', path.join('js', 'proxy'), path.join('js', 'i18n'), 'js', 'img', 'php', 'files'];
for (d in ud) {
var dir = ud[d];
if (path.existsSync(dir)) {
console.log('\trmdir ' + dir);
fs.rmdirSync(dir);
}
}
}
});
desc('get current build version from git')
task('version', function(){
jake.exec(['git describe --tags > .version'], function(){
version = fs.readFileSync('.version').toString().replace(/\n$/, '');
fs.unlinkSync('.version');
console.log('Version: ' + version);
complete();
});
}, {async: true});
desc('create package task')
task('prepack', function(){
new jake.PackageTask('elfinder', version, function(){
var fls = (files['php'].concat(files['images']).concat(files['i18n']).concat(files['misc'])).map(function(i){
return i.substr(src.length + 1);
});
fls.push(path.join('css', 'elfinder.min.css'));
fls.push(path.join('css', 'theme.css'));
fls.push(path.join('js', 'elfinder.min.js'));
fls.push('files');
console.log('Including next files into release:');
console.log(fls);
this.packageFiles.items = fls;
this.needTarGz = true;
this.needZip = true;
});
});
desc('pack release')
task({'release': ['version']}, function(){
var prePack = jake.Task['prepack'];
prePack.addListener('complete', function() {
var pack = jake.Task['package'];
pack.addListener('complete', function() {
console.log('Created package for elFinder ' + version);
complete();
});
pack.invoke();
});
prePack.invoke();
}, {async: true});