-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmakefile.js
executable file
·237 lines (208 loc) · 6.64 KB
/
makefile.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
var fs = require('fs'),
compressor = require('node-minify'),
severLang = '',
encoding = '';
function copy(src,dst,excludeFn){
if(fs.statSync(src).isDirectory()){
var dstlist = dst.split('/'),tmpPath = '';
for(var d= 0,dr;dr=dstlist[d++];){
tmpPath += dr + '/';
if(!fs.existsSync(tmpPath))
fs.mkdirSync(tmpPath,0755);
}
fs.readdirSync(src).forEach(function(name){
if(excludeFn && excludeFn(name)){
return;
}
var tsrc = src + '/' + name;
var tdst = dst + '/' + name;
if(fs.statSync(tsrc).isDirectory()){
copy(tsrc,tdst)
}else{
fs.writeFileSync(tdst,fs.readFileSync(tsrc))
}
})
}else{
fs.writeFileSync(dst,fs.readFileSync(src))
}
}
function move(src,dst){
if(!fs.statSync(src).isDirectory()){
fs.writeFileSync(dst,fs.readFileSync(src));
fs.unlinkSync(src);
}else{
var dstlist = dst.split('/'),tmpPath = '';
for(var d= 0,dr;dr=dstlist[d++];){
tmpPath += dr + '/';
if(!fs.existsSync(tmpPath))
fs.mkdirSync(tmpPath,0755);
}
if(fs.statSync(src).isDirectory()){
var filelist = fs.readdirSync(src);
for(var i= 0,ci;ci=filelist[i++];){
var tsrc = src + '/' + ci;
var tdst = dst + '/' + ci;
if(excludeFn && excludeFn(ci)){
continue;
}
if(fs.statSync(tsrc).isDirectory()){
move(tsrc,tdst)
}else{
fs.writeFileSync(tdst,fs.readFileSync(tsrc))
fs.unlinkSync(tsrc);
}
}
}
}
}
function del(path){
if(fs.statSync(path).isDirectory()){
fs.readdirSync(path).forEach(function(subpath){
subpath = path + '/' + subpath;
if(fs.statSync(subpath).isFile()){
try{
fs.unlinkSync(subpath)
}catch(e){}
}else{
del(subpath)
}
});
fs.rmdirSync(path)
}
}
//读取配置文件
var getConfigCont = function(){
var content;
return function(){
return content || (content = fs.readFileSync('makefile.config','utf8'))
}
}();
/**********main********/
////创建部署目录
createDeployDir();
////添加后台语言
addServerLang();
////合并css
mergeCss();
////添加样式
addtheme();
///添加语言
addFrontLang();
////合并js
mergeJs();
////添加dialog
addDialogs();
////添加config.js
addConfig();
////添加parse.js
addParse();
////添加第三方插件
addThirdParty();
/*******/
function createDeployDir(){
if(!fs.existsSync('ueditor'))
fs.mkdirSync('ueditor',0755);
}
function addServerLang(){
var content = getConfigCont();
severLang = content.match(/server\.lang\s*=\s*([^#\n\r\t]+)/)[1].replace(/\s*/g,'');
copy(severLang,'ueditor/'+severLang)
}
function addtheme(){
var content = getConfigCont(),
theme = content.match(/theme\s*=\s*([^#\n\r\t]+)/)[1].replace(/\s*/g,'');
copy('themes/' + theme,'ueditor/themes/' + theme,function(name){
return /^_/.test(name)
});
copy('themes/iframe.css','ueditor/themes/iframe.css');
del('themes/default/css')
}
function mergeCss(){
var content = [];
var csslist = fs.readFileSync('themes/default/_css/todc.css','utf8');
csslist = csslist.match(/\"([^\"]+)\"/g);
for(var i= 0,ci;ci=csslist[i++];){
console.log(ci.replace(/['"]/g,''));
content.push(fs.readFileSync('themes/default/_css/' + ci.replace(/['"]/g,''),'utf8'));
}
if(!fs.existsSync('themes/default/css')){
fs.mkdirSync('themes/default/css',0755);
}
fs.writeFileSync('themes/default/css/todc.css',content.join('\n'));
console.log('ueditor.css merge success');
new compressor.minify({
type: 'sqwish',
fileIn: 'themes/default/css/todc.css',
fileOut: 'themes/default/css/ueditor.min.css',
callback: function(err){
console.log('ueditor.min.css compress success');
}
});
}
function mergeJs(){
var jslist = fs.readFileSync('_examples/editor_api.js','utf8');
jslist = jslist.match(/\[([^\]]+)\]/)[1].match(/'[^']+'/g);
var content = [];
for(var i= 0,ci;ci=jslist[i++];){
console.log(ci.replace(/['"]/g,''));
content.push(fs.readFileSync('_src/' + ci.replace(/['"]/g,''),'utf8'));
}
//前后封装
content = '(function(){\n' + content.join('\n').replace('_css','css') + '})()';
try{
var jsp = require('uglify-js').parser,
pro = require('uglify-js').uglify;
var ast = jsp.parse(content);
fs.writeFileSync('ueditor.all.js',pro.gen_code(ast,{beautify:true}));
}catch(e){
fs.writeFileSync('ueditor.all.js',content);
}
console.log('ueditor.all.js create success');
new compressor.minify({
type: 'gcc',
fileIn: 'ueditor.all.js',
fileOut: 'ueditor.all.min.js',
callback: function(err){
if(err && /java/.test(err.toString())){
console.log('no java environment found,use uglifyjs for compression');
new compressor.minify({
type: 'uglifyjs',
fileIn: 'ueditor.all.js',
fileOut: 'ueditor.all.min.js',
callback: function(err){
console.log('ueditor.all.min.js compress success');
move('ueditor.all.min.js','ueditor/ueditor.all.min.js');
move('ueditor.all.js','ueditor/ueditor.all.js');
}
});
}else{
move('ueditor.all.min.js','ueditor/ueditor.all.min.js');
move('ueditor.all.js','ueditor/ueditor.all.js');
console.log('ueditor.all.min.js compress success');
}
}
});
}
function addDialogs(){
copy('dialogs','ueditor/dialogs')
}
function addConfig(){
var content = fs.readFileSync('ueditor.config.js','utf8');
switch(severLang){
case 'net':
content = content.replace(/\.php/g,'.ashx').replace(/php\//g,'net\/');
break;
case 'jsp':
content = content.replace(/\.php/g,'.jsp').replace(/php\//g,'jsp\/');
}
fs.writeFileSync('ueditor/ueditor.config.js',content);
}
function addParse(){
copy('ueditor.parse.js','ueditor/ueditor.parse.js')
}
function addThirdParty(){
copy('third-party','ueditor/third-party')
}
function addFrontLang(){
copy('lang','ueditor/lang')
}