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 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");
|
2016-03-17 20:38:37 +01:00
|
|
|
const jsonTransform = require('gulp-json-transform');
|
2016-01-18 22:28:19 +01:00
|
|
|
const fs = require("fs");
|
|
|
|
const del = require("del");
|
|
|
|
const through = require('through2');
|
|
|
|
const File = require('vinyl');
|
2016-10-04 19:00:40 +02:00
|
|
|
const Stream = require('stream').Stream;
|
|
|
|
const vfs = require('vinyl-fs');
|
2016-01-18 22:28:19 +01:00
|
|
|
|
|
|
|
const paths = {
|
2016-01-18 22:41:25 +01:00
|
|
|
ts: {
|
|
|
|
release: [
|
2016-01-20 18:09:58 +01:00
|
|
|
"lib/**/*.{ts,tsx}",
|
2016-01-18 22:41:25 +01:00
|
|
|
"background/*.{ts,tsx}",
|
|
|
|
"content_scripts/*.{ts,tsx}",
|
|
|
|
"popup/*.{ts,tsx}",
|
|
|
|
"pages/*.{ts,tsx}",
|
2016-03-18 14:40:35 +01:00
|
|
|
"!**/*.d.ts",
|
2016-11-08 16:52:03 +01:00
|
|
|
"!**/*-test*.ts",
|
2016-01-18 22:41:25 +01:00
|
|
|
],
|
2016-10-17 15:58:36 +02:00
|
|
|
decl: [
|
|
|
|
"lib/refs.d.ts",
|
|
|
|
],
|
2016-01-18 22:41:25 +01:00
|
|
|
dev: [
|
2016-11-02 21:13:56 +01:00
|
|
|
"testlib/**/.ts",
|
2016-11-08 16:52:03 +01:00
|
|
|
"**/*-test*.ts",
|
2016-01-18 22:41:25 +01:00
|
|
|
],
|
|
|
|
},
|
2016-01-18 22:28:19 +01:00
|
|
|
dist: [
|
2016-10-25 17:57:20 +02:00
|
|
|
"img/icon.png",
|
|
|
|
"img/logo.png",
|
2016-03-18 17:35:52 +01:00
|
|
|
"i18n/strings.js",
|
2016-10-14 02:15:56 +02:00
|
|
|
"lib/emscripten/taler-emscripten-lib.js",
|
2016-02-09 21:56:06 +01:00
|
|
|
"lib/module-trampoline.js",
|
2016-10-25 17:57:20 +02:00
|
|
|
"lib/vendor/*.js",
|
|
|
|
"style/*.css",
|
2016-02-09 21:56:06 +01:00
|
|
|
"popup/**/*.{html,css}",
|
|
|
|
"pages/**/*.{html,css}",
|
2016-09-28 11:53:30 +02:00
|
|
|
"background/*.html",
|
2016-01-18 22:28:19 +01:00
|
|
|
],
|
2016-03-17 13:25:52 +01:00
|
|
|
extra: [
|
2016-10-25 17:57:20 +02:00
|
|
|
"i18n/*.po",
|
|
|
|
"i18n/*.pot",
|
2016-10-17 15:58:36 +02:00
|
|
|
"lib/**/*.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-03-18 14:40:35 +01:00
|
|
|
/* French copyright application */
|
|
|
|
appdist: [
|
2016-03-18 17:35:52 +01:00
|
|
|
"i18n/*.po",
|
|
|
|
"i18n/*.pot",
|
2016-03-18 14:40:35 +01:00
|
|
|
"style/*.css",
|
|
|
|
"img/**",
|
|
|
|
"lib/**/*.{ts,tsx}",
|
|
|
|
"!lib/vendor/*",
|
|
|
|
"!**/*.d.ts",
|
|
|
|
"background/*.{ts,tsx}",
|
|
|
|
"content_scripts/*.{ts,tsx}",
|
|
|
|
"popup/*.{ts,tsx}",
|
|
|
|
"pages/*.{ts,tsx}",
|
|
|
|
"AUTHORS",
|
|
|
|
"README",
|
|
|
|
"COPYING",
|
|
|
|
"Makefile",
|
|
|
|
"gulpfile.js",
|
|
|
|
"test/tests/*.{ts,tsx}",
|
|
|
|
"pogen/pogen.ts",
|
|
|
|
"lib/module-trampoline.js",
|
|
|
|
"popup/**/*.{html,css}",
|
|
|
|
"pages/**/*.{html,css}",
|
|
|
|
],
|
2016-01-24 02:29:13 +01:00
|
|
|
};
|
2016-01-18 22:28:19 +01:00
|
|
|
|
|
|
|
|
|
|
|
const tsBaseArgs = {
|
2016-09-14 15:20:18 +02:00
|
|
|
target: "es6",
|
2016-01-18 22:28:19 +01:00
|
|
|
jsx: "react",
|
2016-10-05 17:38:02 +02:00
|
|
|
reactNamespace: "preact",
|
2016-01-18 22:28:19 +01:00
|
|
|
experimentalDecorators: true,
|
|
|
|
module: "system",
|
|
|
|
sourceMap: true,
|
|
|
|
noLib: true,
|
2016-02-10 02:03:31 +01:00
|
|
|
noImplicitReturns: true,
|
|
|
|
noFallthroughCasesInSwitch: true,
|
2016-09-12 17:41:12 +02:00
|
|
|
strictNullChecks: true,
|
|
|
|
noImplicitAny: true,
|
2016-01-18 22:28:19 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
let manifest;
|
|
|
|
(() => {
|
|
|
|
const f = fs.readFileSync("manifest.json", "utf8");
|
|
|
|
manifest = JSON.parse(f);
|
|
|
|
})();
|
|
|
|
|
|
|
|
|
2016-03-18 15:35:50 +01:00
|
|
|
/**
|
|
|
|
* File globbing that works just like
|
|
|
|
* gulp.src(...).
|
|
|
|
*/
|
|
|
|
function gglob(ps) {
|
|
|
|
let patPos = [];
|
|
|
|
let patNeg = [];
|
|
|
|
for (let x of ps) {
|
|
|
|
if (x.slice(0,1) === "!") {
|
|
|
|
patNeg.push(x.slice(1));
|
|
|
|
} else {
|
|
|
|
patPos.push(x);
|
|
|
|
console.log("Pattern", x);
|
2016-10-06 14:32:01 +02:00
|
|
|
}
|
2016-03-18 15:35:50 +01:00
|
|
|
}
|
|
|
|
let result = new Set();
|
|
|
|
for (let pat of patPos) {
|
|
|
|
let rs = glob.sync(pat, {ignore: patNeg});
|
|
|
|
for (let r of rs) {
|
|
|
|
result.add(r);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return Array.from(result);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-06-01 22:54:35 +02: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)) {
|
|
|
|
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
|
|
|
});
|
2016-06-01 22:54:35 +02:00
|
|
|
stream.write = function (data) {
|
|
|
|
this.emit('data', data);
|
2016-10-05 00:09:54 +02:00
|
|
|
};
|
2016-06-01 22:54:35 +02:00
|
|
|
stream.destroy = function () {
|
|
|
|
toMerge.forEach(function (e) {
|
|
|
|
if (e.destroy) e.destroy();
|
|
|
|
})
|
2016-10-05 00:09:54 +02:00
|
|
|
};
|
2016-06-01 22:54:35 +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"], function () {
|
2016-10-04 19:00:40 +02:00
|
|
|
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
|
|
|
});
|
|
|
|
|
2016-01-18 23:19:43 +01:00
|
|
|
gulp.task("compile-prod", ["clean"], function () {
|
2016-01-18 22:28:19 +01:00
|
|
|
const tsArgs = {};
|
|
|
|
Object.assign(tsArgs, tsBaseArgs);
|
|
|
|
tsArgs.typescript = require("typescript");
|
|
|
|
// relative to the gulp.dest
|
|
|
|
tsArgs.outDir = ".";
|
|
|
|
// We don't want source maps for production
|
|
|
|
tsArgs.sourceMap = undefined;
|
2016-10-17 15:58:36 +02:00
|
|
|
let opts = {base: "."};
|
|
|
|
const files = concatStreams(
|
|
|
|
gulp.src(paths.ts.release, opts),
|
|
|
|
gulp.src(paths.ts.decl, opts));
|
|
|
|
|
|
|
|
return files
|
2016-01-18 22:28:19 +01:00
|
|
|
.pipe(ts(tsArgs))
|
2016-02-09 22:17:24 +01:00
|
|
|
.pipe(gulp.dest("build/ext/"));
|
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", ["compile-prod", "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
|
|
|
|
2016-02-09 22:17:24 +01:00
|
|
|
gulp.task("package-unstable", ["compile-prod", "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 () {
|
2016-06-01 22:54:35 +02:00
|
|
|
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(
|
|
|
|
gulp.src(paths.ts.release, opts),
|
2016-10-17 15:58:36 +02:00
|
|
|
gulp.src(paths.ts.decl, opts),
|
2016-06-01 22:54:35 +02:00
|
|
|
gulp.src(paths.ts.dev, 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-18 14:40:35 +01:00
|
|
|
/**
|
|
|
|
* Create source distribution for
|
|
|
|
* French copyright application.
|
|
|
|
*/
|
|
|
|
gulp.task("appdist", [], function () {
|
2016-06-01 21:47:35 +02:00
|
|
|
let zipname = String.prototype.concat("taler-wallet-webex-", manifest.version_name, "-appsrc.zip");
|
2016-03-18 14:40:35 +01:00
|
|
|
return gulp.src(paths.appdist, {buffer: false, stripBOM: false, base: "."})
|
|
|
|
.pipe(zip(zipname))
|
|
|
|
.pipe(gulp.dest("."));
|
|
|
|
});
|
|
|
|
|
|
|
|
|
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
|
|
|
|
*/
|
2016-03-18 15:35:50 +01:00
|
|
|
gulp.task("pogen", ["pogenjs"], function (cb) {
|
|
|
|
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);
|
|
|
|
return through.obj(function(file, enc, cb) {
|
|
|
|
conf.files.push(file.relative);
|
|
|
|
cb();
|
|
|
|
}, function(cb) {
|
|
|
|
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();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Generate the tsconfig file
|
|
|
|
// that should be used during development.
|
|
|
|
gulp.task("tsconfig", function() {
|
2016-10-17 15:58:36 +02:00
|
|
|
let opts = {base: "."};
|
|
|
|
const files = concatStreams(
|
|
|
|
gulp.src(paths.ts.release, opts),
|
|
|
|
gulp.src(paths.ts.dev, opts),
|
|
|
|
gulp.src(paths.ts.decl, opts));
|
|
|
|
return files.pipe(tsconfig(tsBaseArgs))
|
|
|
|
.pipe(gulp.dest("."));
|
2016-01-18 22:28:19 +01:00
|
|
|
});
|
|
|
|
|
2016-01-18 23:20:42 +01:00
|
|
|
|
2016-02-09 22:17:24 +01:00
|
|
|
gulp.task("default", ["package-stable", "tsconfig"]);
|