-
Notifications
You must be signed in to change notification settings - Fork 3
/
gulpfile.js
168 lines (145 loc) · 5.55 KB
/
gulpfile.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
const fs = require("fs");
const path = require("path");
const gulp = require("gulp");
const gulp_replace = require("gulp-replace");
const gulp_sourcemaps = require("gulp-sourcemaps");
const gulp_concat = require("gulp-concat");
const gulp_uglify = require("gulp-uglify");
const gulp_minify = require("gulp-clean-css");
const gulp_rename = require("gulp-rename");
const exec = require('child_process').exec;
const lunzip = require("lunzip-stream");
const downloader = require("./lib/download");
// config
const paths = {
css: [
'node_modules/dc/dc.css',
'node_modules/bootstrap/dist/css/bootstrap.css',
'node_modules/d3-tip/examples/example-styles.css',
// 'node_modules/bootstrap/dist/css/bootstrap-theme.css',
'node_modules/bootstrap-material-design/dist/css/bootstrap-material-design.css',
],
scripts: [
'node_modules/jquery/dist/jquery.js',
'node_modules/blueimp-tmpl/js/tmpl.js',
// 'node_modules/lodash/lodash.js',
'node_modules/d3/d3.js',
'node_modules/d3-tip/index.js',
'node_modules/crossfilter2/crossfilter.js',
'node_modules/reductio/reductio.js',
'node_modules/dc/dc.js',
'node_modules/bootstrap/dist/js/bootstrap.js',
// 'node_modules/jquery-lazyload/jquery.lazyload.js',
'node_modules/moment/moment.js',
]
};
// tasks
const download = exports.download = function download(done){
return downloader([
{ file: "eugroup.json", url: "https://www.epnewshub.eu/v1/contributor/?type=grouppress&pageSize=50&search-value=&search-type=contributor" },
{ file: "seats.json", url: "https://www.europarl.europa.eu/erpl-public/hemicycle//str/en.json" },
{ file: "mepid.xml", url: "https://www.europarl.europa.eu/meps/en/full-list/xml" },
{ file: "extra_csv.csv", url: "https://raw.githubusercontent.com/eliflab/European-Parliament-Open-Data/master/meps_full_list_with_twitter_accounts.csv" },
{ file: "incoming.xml", url: "https://www.europarl.europa.eu/meps/en/incoming-outgoing/incoming/xml" },
{ file: "outgoing.xml", url: "https://www.europarl.europa.eu/meps/en/incoming-outgoing/outgoing/xml" },
{ file: "ep_meps_current.json.lz", url: "https://parltrack.org/dumps/ep_meps.json.lz" },
{ file: "epnewshub.json", url: "https://www.epnewshub.eu/v1/contributor/?type=mep&pageSize=1000&search-value=&search-type=contributor" },
].map(function(src){
src.file = path.resolve(__dirname,"data/mirror",src.file);
return src;
}), function(){
done();
});
};
const decompress = exports.decompress = function decompress(done) {
return fs.createReadStream('data/mirror/ep_meps_current.json.lz').pipe(lunzip()).pipe(fs.createWriteStream("data/mirror/ep_meps_current.json").on("end", done));
};
const mepid = exports.mepid = function mepid(done) {
require("./script/update-meps.js")(done);
};
const inout = exports.inout = function inout(done) {
require("./script/inout.js")(done);
};
const transform = exports.transform = function transform(done) {
require("./script/transform.js")(done);
};
const alias = exports.alias = function alias(done) {
require("./script/aliases.js")(done);
};
const html = exports.html = function html(done) {
return gulp
.src(['src/index.html'])
.pipe(gulp_replace("$UPDATE_DATE", new Date().toISOString().slice(0, 10)))
.pipe(gulp_replace("../data/",'data/'))
.pipe(gulp_replace("../build/",'build/'))
.pipe(gulp.dest(".").on("end", done));
};
const css = exports.css = function css(done){
return gulp
.src(paths.css)
.pipe(gulp_sourcemaps.init())
.pipe(gulp_concat('all.css'))
.pipe(gulp_minify({
level: {
1: {
specialComments: 0
}
}
}))
.pipe(gulp_sourcemaps.write('.'))
.pipe(gulp.dest('build/css').on("end", done));
};
const js = exports.js = function js(done){
return gulp
.src(paths.scripts)
.pipe(gulp_sourcemaps.init())
.pipe(gulp_concat('all.js'))
.pipe(gulp.dest('build/js'))
.pipe(gulp_uglify())
.pipe(gulp_rename({
extname: '.min.js'
}))
.pipe(gulp_sourcemaps.write('.'))
.pipe(gulp.dest('build/js').on("end", done));
};
const genderify = exports.genderify = function genderify(done){
const through2 = require("through2");
const gender = function(content) {
let nogender = "epid,gender,first_name,last_name";
JSON.parse(content).forEach(function(d){
if (!d.Gender) nogender += "\n"+[d.epid,"",d.first_name,d.last_name].join(",");
});
return nogender;
}
return gulp
.src("data/meps.json")
.pipe(through2.obj(function(file, enc, cb) {
file.contents = new Buffer.from(gender(file.contents.toString(enc)));
cb(null, file);
}))
.pipe(gulp_rename({
extname: '.new.nogender.csv'
}))
.pipe(through2.obj(function(file, enc, cb) {
console.log("add the missing genders to " +file.path);
// ("http://www.europarl.europa.eu/meps/en/incoming-outgoing.html");
cb(null, file);
}))
.pipe(gulp.dest('data').on("end", done));
// .pipe(process.stdout);
// .pipe(tf('utf-8',gender))
};
const party = exports.party = (done) => {
console.log("not working");
exec('q "select party,country,eugroup, count(*) meps from data/meps.csv group by party,country,eugroup order by meps desc" -d, -H -O | ./csv2json.py > data/parties.json', function (err, stdout, stderr) {
console.log("done",err);
console.log(stdout);
console.log(stderr);
done();
});
//exec('q "select country, count(*) meps from data/meps.csv group by country order by meps desc" -d, -H -O | ./csv2json.py > data/countries.json');
//exec ('q "select eugroup, count(*) meps from data/meps.csv group by eugroup order by meps desc" -d, -H -O | ./csv2json.py > data/eugroups.json');
}
// aliases
exports.build = gulp.parallel(css, js);
exports.default = exports.update = gulp.series(download, decompress, inout, mepid, transform, alias, html);