wallet-core/gulpfile.js

354 lines
8.7 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
* dist/.
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 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");
const tar = require("gulp-tar");
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");
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");
2017-05-29 12:37:35 +02:00
const path = require("path");
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,js}",
2016-11-13 23:30:18 +01:00
"!src/**/*-test*.ts",
2016-01-18 22:41:25 +01:00
],
2016-11-13 23:30:18 +01:00
test: [
"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: [
"dist/*-bundle.js",
2017-05-29 14:59:45 +02:00
"dist/*-bundle.js.map",
"emscripten/taler-emscripten-lib.js",
2018-09-22 17:18:25 +02:00
"emscripten/taler-emscripten-lib.wasm",
"img/icon.png",
"img/logo.png",
2018-02-20 14:47:36 +01:00
"src/webex/**/*.{js,css,html}",
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: [
"AUTHORS",
"COPYING",
2016-03-17 20:38:37 +01:00
"Makefile",
"README",
2016-03-18 15:35:50 +01:00
"configure",
2016-03-17 13:25:52 +01:00
"gulpfile.js",
"manifest.json",
2016-03-17 13:25:52 +01:00
"package.json",
"src/i18n/*.po",
"src/i18n/*.pot",
"src/i18n/poheader",
"src/i18n/strings-prelude",
"tooling/**",
"tsconfig.json",
"webpack.config.js",
2016-03-17 13:25:52 +01:00
],
};
2016-01-18 22:28:19 +01:00
const tsBaseArgs = {
target: "es6",
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,
strict: true,
2018-09-20 02:56:13 +02:00
strictPropertyInitialization: false,
2019-08-14 18:25:30 +02:00
outDir: "dist/node",
2016-09-12 17:41:12 +02:00
noImplicitAny: true,
allowJs: true,
checkJs: true,
2019-07-21 23:50:10 +02:00
incremental: true,
esModuleInterop: 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
2019-05-07 23:46:50 +02:00
function concatStreams (...streams) {
var stream = new Stream();
stream.setMaxListeners(0); // allow adding more than 11 streams
var endCount = 0;
stream.writable = stream.readable = true;
2019-05-07 23:46:50 +02:00
streams.forEach(function (e) {
e.pipe(stream, {end: false});
var ended = false;
e.on('end', function () {
if (ended) return;
ended = true;
endCount++;
2019-05-07 23:46:50 +02:00
if (endCount == streams.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 () {
2019-05-07 23:46:50 +02:00
streams.forEach(function (e) {
if (e.destroy) e.destroy();
})
2016-10-05 00:09:54 +02:00
};
return stream;
}
2016-01-18 23:14:49 +01:00
2019-05-07 23:46:50 +02:00
function dist_prod() {
return vfs.src(paths.dist, {base: ".", stripBOM: false})
.pipe(gulp.dest("dist/ext/"));
2019-05-07 23:46:50 +02:00
}
2016-01-18 23:14:49 +01:00
2019-05-07 23:46:50 +02:00
function compile_prod(callback) {
let config = require("./webpack.config.js")({ prod: true });
webpack(config, function(err, stats) {
2017-07-20 04:16:50 +02:00
if (err) {
throw new gutil.PluginError("webpack", err);
}
2017-07-20 04:16:50 +02:00
if (stats.hasErrors() || stats.hasWarnins) {
2019-05-07 23:46:50 +02:00
console.log("[webpack]", stats.toString({
2017-07-20 04:16:50 +02:00
colors: true,
}));
}
2019-05-07 23:46:50 +02:00
if (stats.hasErrors()) {
callback(Error("webpack completed with errors"))
} else {
callback();
}
});
2019-05-07 23:46:50 +02:00
}
2016-01-18 22:28:19 +01:00
2019-05-07 23:46:50 +02:00
function manifest_stable() {
2016-02-09 22:17:24 +01:00
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("dist/ext/"));
2019-05-07 23:46:50 +02:00
}
2016-02-09 22:17:24 +01:00
2019-05-07 23:46:50 +02:00
function manifest_unstable() {
2016-02-09 22:17:24 +01:00
return gulp.src("manifest.json")
.pipe(jsonTransform((data) => {
data.name = "GNU Taler Wallet (unstable)";
return data;
}, 2))
.pipe(gulp.dest("dist/ext/"));
2019-05-07 23:46:50 +02:00
}
2016-02-09 22:17:24 +01:00
2019-05-07 23:46:50 +02:00
function package_stable () {
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";
return gulp.src("dist/ext/**", {buffer: false, stripBOM: false})
2016-02-09 22:17:24 +01:00
.pipe(zip(zipname))
.pipe(gulp.dest("dist/"));
2019-05-07 23:46:50 +02:00
}
2016-01-18 22:28:19 +01:00
2019-05-07 23:46:50 +02:00
function package_unstable () {
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";
return gulp.src("dist/ext/**", {buffer: false, stripBOM: false})
2016-01-18 23:14:49 +01:00
.pipe(zip(zipname))
.pipe(gulp.dest("dist/"));
2019-05-07 23:46:50 +02:00
}
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.
*/
2019-05-07 23:46:50 +02:00
function srcdist() {
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),
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("."));
2019-05-07 23:46:50 +02:00
}
2016-03-17 13:25:52 +01:00
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.
*/
2019-05-07 23:46:50 +02:00
function genTSConfig(confBase) {
2016-01-18 22:28:19 +01:00
let conf = {
compileOnSave: true,
2016-01-18 22:28:19 +01:00
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",
2019-05-07 23:46:50 +02:00
contents: Buffer.from(x),
2016-01-18 22:28:19 +01:00
});
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");
}
2019-05-07 23:46:50 +02:00
chunks.push(chunk);
2017-05-24 14:31:13 +02:00
});
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) {
2019-05-07 23:46:50 +02:00
console.log("processing file", file);
2017-05-24 14:31:13 +02:00
readContentsBuffer(file, function (buf, error) {
2019-05-07 23:46:50 +02:00
console.log("got contents");
2017-05-24 14:31:13 +02:00
if (error) {
throw error;
}
2017-05-29 12:37:35 +02:00
const lang = path.basename(file.path, ".po");
if (!lang) {
throw Error();
}
console.log("lang", lang);
2017-05-24 14:31:13 +02:00
const pojson = po2json.parse(buf, {format: "jed1.x", fuzzy: true});
outStream.write("strings['" + lang + "'] = " + JSON.stringify(pojson, null, " ") + ";\n");
2019-05-07 23:46:50 +02:00
console.log("...done");
2017-05-24 14:31:13 +02:00
cb();
});
}, function (cb) {
2019-05-07 23:46:50 +02:00
console.log("processing done");
outStream.end();
2017-05-24 14:31:13 +02:00
this.push(f);
2019-05-07 23:46:50 +02:00
cb();
2017-05-24 14:31:13 +02:00
});
}
2019-05-07 23:46:50 +02:00
function tsconfig() {
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),
2019-08-16 19:20:18 +02:00
vfs.src(paths.ts.test, opts));
2019-05-07 23:46:50 +02:00
return files.pipe(genTSConfig(tsBaseArgs))
2016-10-17 15:58:36 +02:00
.pipe(gulp.dest("."));
2019-05-07 23:46:50 +02:00
}
2016-01-18 22:28:19 +01:00
2019-05-07 23:46:50 +02:00
function po2js() {
2017-05-24 14:31:13 +02:00
return gulp.src("src/i18n/*.po", {base: "."})
.pipe(pofilesToJs("src/i18n/strings.ts"))
.pipe(gulp.dest("."));
2019-05-07 23:46:50 +02:00
}
2017-05-24 14:31:13 +02:00
2016-01-18 23:20:42 +01:00
2019-05-07 23:46:50 +02:00
exports.srcdist = srcdist
exports.tsconfig = tsconfig
exports.po2js = po2js
2019-05-08 07:01:17 +02:00
exports.stable = gulp.series(tsconfig, manifest_stable, compile_prod, dist_prod, package_stable)
2019-05-07 23:46:50 +02:00
exports.default = exports.stable