forked from reTHINK-project/dev-service-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgulpfile.js
More file actions
executable file
·416 lines (334 loc) · 10.7 KB
/
Copy pathgulpfile.js
File metadata and controls
executable file
·416 lines (334 loc) · 10.7 KB
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
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
// jshint varstmt: false
var gulp = require('gulp');
var exec = require('child_process').exec;
var prompt = require('gulp-prompt');
// Gulp task to generate development documentation;
gulp.task('doc', function(done) {
console.log('Generating documentation...');
exec('node_modules/.bin/jsdoc -d api src/*', function(err) {
if (err) return done(err);
console.log('Documentation generated in "docs" directory');
done();
});
});
// Task and dependencies to distribute for all environments;
var babel = require('babelify');
var browserify = require('browserify');
var buffer = require('vinyl-buffer');
var source = require('vinyl-source-stream');
var replace = require('gulp-replace');
var insert = require('gulp-insert');
var uglify = require('gulp-uglify');
var bump = require('gulp-bump');
var argv = require('yargs').argv;
var gulpif = require('gulp-if');
var path = require('path');
var pkg = require('./package.json');
gulp.task('license', function() {
var clean = argv.clean;
if (!clean) clean = false;
return gulp.src(['src/**/*.js'])
.pipe(prependLicense(clean));
});
function prependLicense(clean) {
var license = `/**
* Copyright 2016 PT Inovação e Sistemas SA
* Copyright 2016 INESC-ID
* Copyright 2016 QUOBIS NETWORKS SL
* Copyright 2016 FRAUNHOFER-GESELLSCHAFT ZUR FOERDERUNG DER ANGEWANDTEN FORSCHUNG E.V
* Copyright 2016 ORANGE SA
* Copyright 2016 Deutsche Telekom AG
* Copyright 2016 Apizee
* Copyright 2016 TECHNISCHE UNIVERSITAT BERLIN
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
**/
`;
return through.obj(function(file, enc, cb) {
if (file.isNull()) {
return cb(new Error('Fil is null'));
}
if (file.isStream()) {
return cb(new Error('Streaming not supported'));
}
var dest = path.dirname(file.path);
return gulp.src(file.path)
.pipe(replace(license, ''))
.pipe(gulpif(!clean, insert.prepend(license)))
.pipe(gulp.dest(dest))
.on('end', function() {
cb();
});
});
}
gulp.task('dist', function() {
return browserify('./src/service-framework.js', {
standalone: 'service-framework', debug: false}
).transform(babel, {compact: false, optional: 'runtime'})
.bundle()
.on('error', function(err) {
console.error(err);
this.emit('end');
})
.pipe(source('service-framework.js'))
.pipe(buffer())
.pipe(uglify())
.pipe(insert.prepend('// Service Framework \n\n// version: {{version}}\n\n'))
.pipe(replace('{{version}}', pkg.version))
.pipe(gulp.dest('./dist'));
});
gulp.task('build', function() {
return browserify('./src/service-framework.js', {
standalone: 'service-framework',
debug: true
}).transform(babel, {compact: false, optional: 'runtime'})
.bundle()
.on('error', function(err) {
console.error(err);
this.emit('end');
})
.pipe(source('service-framework.js'))
.pipe(gulp.dest('./dist'));
});
/**
* Compile on specific file from ES6 to ES5
* @param {string} 'compile' task name
*
* How to use: gulp compile --file 'path/to/file';
*/
function compile(file, destination, cb) {
var filename = file;
var path = destination;
if (!filename) {
cb(new Error('No such file or directory'));
}
var splitIndex = filename.lastIndexOf('/') + 1;
var name = filename.substr(splitIndex).replace('.js', '');
console.log('Converting ' + filename + ' on ' + path + ' to ES5');
return browserify({
entries: [filename],
standalone: 'activate',
debug: false
}).transform(babel, {compact: false, optional: 'runtime'})
.bundle()
.on('error', function(err) {
console.error(err);
})
.pipe(source(name + '.js'))
.pipe(gulp.dest(path))
.pipe(buffer())
.pipe(encode(name, 'Hyperties'))
.pipe(source('Hyperties.json'))
.pipe(gulp.dest('resources/descriptors/'))
.on('end', function() {
console.log('File converted');
});
}
gulp.task('watch-hyperty', function(cb) {
var destination = argv.dest;
gulp.watch(['src/hyperty-connector/*.js', 'src/hyperty-chat/*.js'], function(event) {
var pathSplit = event.path.split('/');
var dir = pathSplit[pathSplit.length - 2];
switch (dir) {
case 'hyperty-chat':
return compile('src/' + dir + '/HypertyChat.js', destination, cb);
case 'hyperty-connector':
return compile('src/' + dir + '/HypertyConnector.js', destination, cb);
}
});
});
gulp.task('watch', function(cb) {
gulp.watch(['src/**/*.js'], ['dist'], cb);
});
var through = require('through2');
var Base64 = require('js-base64').Base64;
var fs = require('fs');
function encode(filename, descriptorName, configuration, isDefault) {
var descriptor = fs.readFileSync('resources/descriptors/' + descriptorName + '.json', 'utf8');
var json = JSON.parse(descriptor);
return through.obj(function(file, enc, cb) {
if (file.isNull()) {
return cb(null, file);
}
if (file.isStream()) {
return cb(new Error('Streaming not supported'));
}
var encoded = Base64.encode(file.contents);
var value = 'default';
if (isDefault) {
value = 'default';
} else {
value = filename;
}
if (!json.hasOwnProperty(value)) {
var newObject = {};
json[value] = newObject;
json[value].sourcePackage = {};
}
var language = 'javascript';
if (descriptorName === 'DataSchemas') {
language = 'JSON-Schema';
}
json[value].cguid = Math.floor(Math.random() + 1);
json[value].type = descriptorName;
json[value].version = '0.1';
json[value].description = 'Description of ' + filename;
json[value].objectName = filename;
json[value].configuration = configuration;
json[value].sourcePackageURL = '/sourcePackage';
json[value].sourcePackage.sourceCode = encoded;
json[value].sourcePackage.sourceCodeClassname = filename;
json[value].sourcePackage.encoding = 'base64';
json[value].sourcePackage.signature = '';
json[value].language = language;
json[value].signature = '';
json[value].messageSchemas = '';
json[value].dataObjects = [];
json[value].accessControlPolicy = 'somePolicy';
var newDescriptor = new Buffer(JSON.stringify(json, null, 2));
console.log(value);
cb(null, newDescriptor);
});
}
function resource(file, configuration, isDefault) {
var filename = file;
var splitIndex = filename.lastIndexOf('/') + 1;
var extension = filename.substr(filename.lastIndexOf('.') + 1);
switch (extension) {
case 'js':
filename = filename.substr(splitIndex).replace('.js', '');
break;
case 'json':
filename = filename.substr(splitIndex).replace('.json', '');
break;
}
var descriptorName;
if (filename.indexOf('Hyperty') !== -1) {
descriptorName = 'Hyperties';
} else if (filename.indexOf('ProtoStub') !== -1) {
descriptorName = 'ProtoStubs';
} else if (filename.indexOf('DataSchema')) {
descriptorName = 'DataSchemas';
}
console.log('DATA:', descriptorName);
if (extension === 'js') {
return browserify({
entries: ['resources/' + filename + '.js'],
standalone: 'activate',
debug: false
})
.transform(babel)
.bundle()
.pipe(source('bundle.js'))
.pipe(gulp.dest('resources/'))
.pipe(buffer())
.pipe(encode(filename, descriptorName, configuration, isDefault))
.pipe(source(descriptorName + '.json'))
.pipe(gulp.dest('resources/descriptors/'));
} else if (extension === 'json') {
return gulp.src(['resources/' + filename + '.json'])
.pipe(gulp.dest('resources/'))
.pipe(buffer())
.pipe(encode(filename, descriptorName, configuration, isDefault))
.pipe(source(descriptorName + '.json'))
.pipe(gulp.dest('resources/descriptors/'));
}
}
gulp.task('encode', function(done) {
var files = [];
var dirFiles = fs.readdirSync('resources');
files = dirFiles.filter(isFile);
files = files.map(function(file) {
return 'resources/' + file;
});
function isFile(file) {
if (file.indexOf('Hyperty') !== -1 || file.indexOf('ProtoStub') !== -1 || file.indexOf('DataSchema') !== -1){
return fs.statSync('resources/' + file).isFile();
}
}
gulp.src('./', {buffer:false})
.pipe(prompt.prompt([{
type: 'list',
name: 'file',
message: 'File to be converted:',
choices: files
},
{
type: 'input',
name: 'configuration',
message: 'ProtoStub Configuration, use something like:\n{"url": "wss://msg-node.localhost:9090/ws"}\nConfiguration:',
validate: function(value) {
try {
JSON.parse(value);
return true;
} catch (e) {
console.error('Check your configuration JSON\nShould be something like:\n{"url": "wss://msg-node.localhost:9090/ws"}');
return false;
}
}
},
{
type: 'list',
name: 'defaultFile',
message: 'This will be a default file to be loaded?',
choices: ['yes', 'no']
}], function(res) {
fs.access(res.file, fs.R_OK | fs.W_OK, function(err) {
if (err) done(new Error('No such file or directory'));
return;
});
var configuration = JSON.parse(res.configuration);
var isDefault = true;
if (res.defaultFile === 'no' || res.defaultFile === 'n') {
isDefault = false;
}
if (res.file) {
resource(res.file, configuration, isDefault);
}
})
);
});
/**
* Bumping version number and tagging the repository with it.
* Please read http://semver.org/
*
* You can use the commands
*
* gulp patch # makes v0.1.0 → v0.1.1
* gulp feature # makes v0.1.1 → v0.2.0
* gulp release # makes v0.2.1 → v1.0.0
*
* To bump the version numbers accordingly after you did a patch,
* introduced a feature or made a backwards-incompatible release.
*/
function inc(importance) {
// get all the files to bump version in
return gulp.src(['./package.json'])
// bump the version number in those files
.pipe(bump({type: importance}))
// save it back to filesystem
.pipe(gulp.dest('./'));
}
gulp.task('patch', ['test'], function() { return inc('patch'); });
gulp.task('feature', ['test'], function() { return inc('minor'); });
gulp.task('release', ['test'], function() { return inc('major'); });
var Server = require('karma').Server;
/**
* Run test once and exit
*/
gulp.task('test', function(done) {
new Server({
configFile: __dirname + '/karma.conf.js',
singleRun: true
}, done).start();
});