wallet-core/gulpfile.js

361 lines
9.4 KiB
JavaScript
Raw Normal View History

2016-01-18 23:19:43 +01:00
/*
This file is part of TALER
2016-03-17 20:39:28 +01:00
(C) 2015-2016 GNUnet e.V.
2016-01-18 23:19:43 +01:00
TALER is free software; you can redistribute it and/or modify it under the
terms of the GNU General Public License as published by the Free Software
Foundation; either version 3, or (at your option) any later version.
TALER is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with
2016-07-07 17:59:29 +02:00
TALER; see the file COPYING. If not, see <http://www.gnu.org/licenses/>
2016-01-18 23:19:43 +01:00
*/
2016-01-18 22:28:19 +01:00
"use strict";
2016-01-18 23:19:43 +01:00
/**
* Run with
* $ gulp <taskname>
*
* The important tasks are:
* - tsconfig: generate tsconfig.json file for
* development
* - package: create Chrome extension zip file in
2016-02-26 17:44:13 +01:00
* build/.
2016-03-01 19:46:20 +01:00
*
* @author Florian Dold
2016-01-18 23:19:43 +01:00
*/
2016-01-18 22:28:19 +01:00
const gulp = require("gulp");
const gutil = require("gulp-util");
2016-01-18 22:28:19 +01:00
const map = require("map-stream");
const zip = require("gulp-zip");
2016-03-18 15:35:50 +01:00
const gzip = require("gulp-gzip");
const rename = require("gulp-rename");
2016-10-06 14:32:01 +02:00
const symlink = require("gulp-sym");
2016-03-18 15:35:50 +01:00
const tar = require("gulp-tar");
2016-03-17 20:38:37 +01:00
const concat = require("gulp-concat");
const ts = require("gulp-typescript");
const debug = require("gulp-debug");
2016-03-18 15:35:50 +01:00
const glob = require("glob");
2017-05-24 14:31:13 +02:00
const jsonTransform = require("gulp-json-transform");
2016-01-18 22:28:19 +01:00
const fs = require("fs");
const del = require("del");
2017-05-24 14:31:13 +02:00
const through = require("through2");
const File = require("vinyl");
const Stream = require("stream").Stream;
const vfs = require("vinyl-fs");
const webpack = require("webpack");
const po2json = require("po2json");
2016-01-18 22:28:19 +01:00
const paths = {
2016-01-18 22:41:25 +01:00
ts: {
2016-11-13 23:30:18 +01:00
src: [
"src/**/*.{ts,tsx}",
"!src/**/*-test*.ts",
2016-01-18 22:41:25 +01:00
],
2016-10-17 15:58:36 +02:00
decl: [
"decl/jed.d.ts",
2016-11-13 23:30:18 +01:00
"decl/chrome/chrome.d.ts",
"decl/urijs.d.ts",
2016-10-17 15:58:36 +02:00
],
2016-11-13 23:30:18 +01:00
test: [
2016-11-02 21:13:56 +01:00
"testlib/**/.ts",
2016-11-13 23:30:18 +01:00
"src/**/*-test*.ts",
2016-01-18 22:41:25 +01:00
],
},
2016-11-23 01:29:34 +01:00
// distributed in the chrome extension
2016-01-18 22:28:19 +01:00
dist: [
"img/icon.png",
"img/logo.png",
"src/**/*.{css,html}",
"src/emscripten/taler-emscripten-lib.js",
"dist/*-bundle.js",
2016-01-18 22:28:19 +01:00
],
2016-11-23 01:29:34 +01:00
// for the source distribution
2016-03-17 13:25:52 +01:00
extra: [
2016-11-23 01:29:34 +01:00
"scripts/prove-node",
"scripts/prove-selenium",
2016-11-13 23:30:18 +01:00
"src/i18n/*.po",
"src/i18n/*.pot",
"decl/**/*.d.ts",
2016-03-17 13:25:52 +01:00
"AUTHORS",
"README",
"COPYING",
2016-03-17 20:38:37 +01:00
"Makefile",
2016-03-18 15:35:50 +01:00
"configure",
2016-03-17 13:25:52 +01:00
"gulpfile.js",
"tsconfig.json",
"package.json",
"pogen/pogen.ts",
"pogen/tsconfig.json",
"pogen/example/test.ts",
2016-06-01 20:21:51 +02:00
// Only in extra, because the manifest is processed/generated
// targets other than "srcdist".
"manifest.json",
2016-03-17 13:25:52 +01:00
],
};
2016-01-18 22:28:19 +01:00
const tsBaseArgs = {
target: "es5",
2016-01-18 22:28:19 +01:00
jsx: "react",
reactNamespace: "React",
2016-01-18 22:28:19 +01:00
experimentalDecorators: true,
module: "commonjs",
2016-01-18 22:28:19 +01:00
sourceMap: true,
lib: ["ES6", "DOM"],
2016-02-10 02:03:31 +01:00
noImplicitReturns: true,
noFallthroughCasesInSwitch: true,
2016-09-12 17:41:12 +02:00
strictNullChecks: true,
noImplicitAny: true,
2017-02-14 18:02:19 +01:00
alwaysStrict: true,
2016-01-18 22:28:19 +01:00
};
2016-11-13 23:30:18 +01:00
const manifest = JSON.parse(fs.readFileSync("manifest.json", "utf8"));
2016-03-18 15:35:50 +01:00
// Concatenate node streams,
// taken from dominictarr's event-stream module
function concatStreams (/*streams...*/) {
var toMerge = [].slice.call(arguments);
if (toMerge.length === 1 && (toMerge[0] instanceof Array)) {
2016-11-13 23:30:18 +01:00
toMerge = toMerge[0]; // handle array as arguments object
}
var stream = new Stream();
stream.setMaxListeners(0); // allow adding more than 11 streams
var endCount = 0;
stream.writable = stream.readable = true;
toMerge.forEach(function (e) {
e.pipe(stream, {end: false});
var ended = false;
e.on('end', function () {
if (ended) return;
ended = true;
endCount++;
if (endCount == toMerge.length)
stream.emit('end');
})
2016-10-05 00:09:54 +02:00
});
stream.write = function (data) {
this.emit('data', data);
2016-10-05 00:09:54 +02:00
};
stream.destroy = function () {
toMerge.forEach(function (e) {
if (e.destroy) e.destroy();
})
2016-10-05 00:09:54 +02:00
};
return stream;
}
2016-01-18 23:19:43 +01:00
gulp.task("clean", function () {
2016-02-09 22:17:24 +01:00
return del("build/ext");
2016-01-18 22:28:19 +01:00
});
2016-01-18 23:14:49 +01:00
gulp.task("dist-prod", ["clean", "compile-prod"], function () {
return vfs.src(paths.dist, {base: ".", stripBOM: false})
2016-02-09 22:17:24 +01:00
.pipe(gulp.dest("build/ext/"));
2016-01-18 23:14:49 +01:00
});
gulp.task("compile-prod", function (callback) {
let config = require("./webpack.config.js")({prod: true});
webpack(config, function(err, stats) {
if(err) {
throw new gutil.PluginError("webpack", err);
}
callback();
});
2016-01-18 22:28:19 +01:00
});
2016-02-09 22:17:24 +01:00
gulp.task("manifest-stable", ["clean"], function () {
return gulp.src("manifest.json")
.pipe(jsonTransform((data) => {
2016-10-21 21:28:18 +02:00
data.name = "GNU Taler Wallet";
2016-02-09 22:17:24 +01:00
return data;
}, 2))
.pipe(gulp.dest("build/ext/"));
});
gulp.task("manifest-unstable", ["clean"], function () {
return gulp.src("manifest.json")
.pipe(jsonTransform((data) => {
data.name = "GNU Taler Wallet (unstable)";
return data;
}, 2))
.pipe(gulp.dest("build/ext/"));
});
gulp.task("package-stable", ["dist-prod", "manifest-stable"], function () {
2016-10-06 14:32:01 +02:00
let basename = String.prototype.concat("taler-wallet-stable-", manifest.version_name, "-", manifest.version);
let zipname = basename + ".zip";
let xpiname = basename + ".xpi";
2016-02-09 22:17:24 +01:00
return gulp.src("build/ext/**", {buffer: false, stripBOM: false})
.pipe(zip(zipname))
2016-10-06 14:32:01 +02:00
.pipe(gulp.dest("build/"))
.pipe(symlink("build/" + xpiname, {relative: true, force: true}));
2016-02-09 22:17:24 +01:00
});
2016-01-18 22:28:19 +01:00
gulp.task("package-unstable", ["dist-prod", "manifest-unstable"], function () {
2016-10-06 14:32:01 +02:00
let basename = String.prototype.concat("taler-wallet-unstable-", manifest.version_name, "-", manifest.version);
let zipname = basename + ".zip";
let xpiname = basename + ".xpi";
2016-02-09 22:17:24 +01:00
return gulp.src("build/ext/**", {buffer: false, stripBOM: false})
2016-01-18 23:14:49 +01:00
.pipe(zip(zipname))
2016-10-06 14:32:01 +02:00
.pipe(gulp.dest("build/"))
.pipe(symlink("build/" + xpiname, {relative: true, force: true}));
2016-01-18 22:28:19 +01:00
});
2016-01-18 23:19:43 +01:00
2016-03-17 13:25:52 +01:00
/**
* Create source distribution.
*/
gulp.task("srcdist", [], function () {
const name = String.prototype.concat("taler-wallet-webex-", manifest.version_name);
const opts = {buffer: false, stripBOM: false, base: "."};
// We can't just concat patterns due to exclude patterns
const files = concatStreams(
2016-11-13 23:30:18 +01:00
gulp.src(paths.ts.src, opts),
2016-10-17 15:58:36 +02:00
gulp.src(paths.ts.decl, opts),
2016-11-13 23:30:18 +01:00
gulp.src(paths.ts.test, opts),
gulp.src(paths.dist, opts),
gulp.src(paths.extra, opts));
return files
.pipe(rename(function (p) { p.dirname = name + "/" + p.dirname; }))
.pipe(tar(name + "-src.tar"))
.pipe(gzip())
.pipe(gulp.dest("."));
2016-03-17 13:25:52 +01:00
});
2016-03-17 13:40:12 +01:00
/**
* Compile po extraction script.
*/
gulp.task("pogenjs", [], function () {
var tsProject = ts.createProject("pogen/tsconfig.json");
return tsProject.src()
.pipe(ts(tsProject))
.pipe(gulp.dest("pogen"));
});
2016-03-17 20:38:37 +01:00
/**
* Extract .po files from source code
*/
2017-05-24 14:31:13 +02:00
gulp.task("pogen", function (cb) {
2016-03-18 15:35:50 +01:00
throw Error("not yet implemented");
2016-03-17 20:38:37 +01:00
});
2016-01-18 23:19:43 +01:00
/**
* Generate a tsconfig.json with the
* given compiler options that compiles
* all files piped into it.
*/
2016-01-18 22:28:19 +01:00
function tsconfig(confBase) {
let conf = {
compilerOptions: {},
files: []
};
Object.assign(conf.compilerOptions, confBase);
2017-05-24 14:31:13 +02:00
return through.obj(function (file, enc, cb) {
2016-01-18 22:28:19 +01:00
conf.files.push(file.relative);
cb();
2017-05-24 14:31:13 +02:00
}, function (cb) {
conf.files.sort();
2016-01-18 22:28:19 +01:00
let x = JSON.stringify(conf, null, 2);
let f = new File({
path: "tsconfig.json",
contents: new Buffer(x),
});
2016-10-05 00:09:54 +02:00
this.push(f);
2016-01-18 22:28:19 +01:00
cb();
});
}
2017-05-24 14:31:13 +02:00
/**
* Get the content of a Vinyl file object as a buffer.
*/
function readContentsBuffer(file, cb) {
if (file.isBuffer()) {
cb(file.contents);
return;
}
if (!file.isStream()) {
throw Error("file must be stream or buffer");
}
const chunks = [];
file.contents.on("data", function (chunk) {
if (!Buffer.isBuffer(chunk)) {
throw Error("stream data must be a buffer");
}
chunks.push(chunk);
});
file.contents.on("end", function (chunk) {
cb(Buffer.concat(chunks));
});
file.contents.on("error", function (err) {
cb(undefined, err);
});
}
/**
* Combine multiple translations (*.po files) into
* one JavaScript file.
*/
function pofilesToJs(targetPath) {
const outStream = through();
const f = new File({
path: targetPath,
contents: outStream,
});
const prelude = fs.readFileSync("./src/i18n/strings-prelude");
outStream.write(prelude);
return through.obj(function (file, enc, cb) {
readContentsBuffer(file, function (buf, error) {
if (error) {
throw error;
}
const lang = file.stem;
const pojson = po2json.parse(buf, {format: "jed1.x", fuzzy: true});
outStream.write("strings['" + lang + "'] = " + JSON.stringify(pojson, null, " ") + ";\n");
cb();
});
}, function (cb) {
this.push(f);
return cb();
});
}
2016-01-18 22:28:19 +01:00
// Generate the tsconfig file
// that should be used during development.
2017-05-24 14:31:13 +02:00
gulp.task("tsconfig", function () {
2016-10-17 15:58:36 +02:00
let opts = {base: "."};
const files = concatStreams(
2016-11-13 23:30:18 +01:00
vfs.src(paths.ts.src, opts),
vfs.src(paths.ts.test, opts),
vfs.src(paths.ts.decl, opts));
2016-10-17 15:58:36 +02:00
return files.pipe(tsconfig(tsBaseArgs))
.pipe(gulp.dest("."));
2016-01-18 22:28:19 +01:00
});
2017-05-24 14:31:13 +02:00
gulp.task("po2js", function () {
return gulp.src("src/i18n/*.po", {base: "."})
.pipe(pofilesToJs("src/i18n/strings.ts"))
.pipe(gulp.dest("."));
});
2016-01-18 23:20:42 +01:00
2016-02-09 22:17:24 +01:00
gulp.task("default", ["package-stable", "tsconfig"]);