-
-
Notifications
You must be signed in to change notification settings - Fork 241
/
gulpfile.js
295 lines (261 loc) · 8.25 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
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
var gulp = require('gulp')
var fs = require('fs')
var webpack = require('webpack')
var config = require('./webpack.prod')
var devConfig = require('./webpack.dev')
var gulpZip = require('gulp-zip')
var crx3 = require('crx3')
var webstoreClient = require('chrome-webstore-upload')
var rename = require('gulp-rename')
var path = require('path')
// Provide a dummy credential file for third-party builders
try {
fs.accessSync('./google-api.credentials.json')
} catch (e) {
fs.writeFileSync('./google-api.credentials.json', JSON.stringify({
'web': {
'client_id': 'yourappidhere.apps.googleusercontent.com',
'project_id': 'YOUR PROJECT ID HERE',
'auth_uri': 'https://accounts.google.com/o/oauth2/auth',
'token_uri': 'https://oauth2.googleapis.com/token',
'auth_provider_x509_cert_url': 'https://www.googleapis.com/oauth2/v1/certs',
'client_secret': 'YOUR CLIENT SECRET HERE',
'redirect_uris': [
'https://yourappidhere.chromiumapp.org/',
'https://yourappidhere.extensions.allizom.org/'
]
}
}))
}
// eslint-disable-next-line @typescript-eslint/no-var-requires
const VERSION = require('./package.json').version
const paths = {
zip: [
'./**',
(process.env['CI'] ? './' : '!') + 'dist/js/test.js',
'!builds/**',
'!src/**',
'!node_modules/**',
'!img/**',
'!ISSUE_TEMPLATE.md',
'!gulpfile.js',
'!key.pem',
'!android/**',
'!ios/**',
'!manifest*.json'
],
views: './html/*.html',
nativeHTML: './html/index.html',
entries: 'src/entries/*.js',
js: 'src/**',
builds: './builds/',
icons: 'icons/*',
dist: './dist/**',
distJs: './dist/js',
}
paths.chromeZip = [...paths.zip, 'manifest.chrome.json']
paths.firefoxZip = [...paths.zip, 'manifest.firefox.json']
const WEBSTORE_ID = 'fnaicdffflnofjppbagibeoednhnbjhg'
let WEBSTORE_CREDENTIALS
let webstore
try {
WEBSTORE_CREDENTIALS = require('./builds/google-api.json')
webstore = webstoreClient(
Object.assign({}, WEBSTORE_CREDENTIALS, {
extensionId: WEBSTORE_ID,
})
)
} catch (e) {
// noop
}
const icons = function() {
return gulp.src(paths.icons).pipe(gulp.dest('./dist/icons/'))
}
const devjs = function() {
return new Promise((resolve) =>
webpack(devConfig, (err, stats) => {
if (err) console.log('Webpack', err)
console.log(
stats.toString({
/* stats options */
})
)
resolve()
})
)
}
const js = async function() {
fs.mkdirSync(paths.distJs,{ recursive: true })
await new Promise((resolve) =>
webpack(config, (err, stats) => {
console.log(
stats.toString({
/* stats options */
})
)
if (err) {
console.log('Webpack', err)
return
}
const statsJson = stats.toJson()
html(statsJson)
resolve()
})
)
}
const html = function(statsJson) {
fs.mkdirSync('dist/html/', { recursive: true })
let html, scripts, bgScript, addition
;['index.html', 'options.html', 'background.html', 'test.html'].forEach(htmlFile => {
switch (htmlFile) {
case 'index.html':
html = fs.readFileSync('html/' + htmlFile, 'utf8')
scripts = statsJson.entrypoints.native.assets.map(asset => `<script src="js/${asset.name}"></script>`).join('\n')
html = html.replace('{{ scripts }}', scripts)
fs.writeFileSync('dist/' + htmlFile, html)
break
case 'options.html':
html = fs.readFileSync('html/' + htmlFile, 'utf8')
scripts = statsJson.entrypoints.options.assets.map(asset => `<script src="../js/${asset.name}"></script>`).join('\n')
html = html.replace('{{ scripts }}', scripts)
console.log(statsJson.entrypoints.options.assets)
fs.writeFileSync('dist/html/' + htmlFile, html)
break
case 'test.html':
html = fs.readFileSync('html/' + htmlFile, 'utf8')
scripts = statsJson.entrypoints.test.assets.map(asset => `<script src="../js/${asset.name}"></script>`).join('\n')
html = html.replace('{{ scripts }}', scripts)
fs.writeFileSync('dist/html/' + htmlFile, html)
break
case 'background.html':
html = fs.readFileSync('html/' + htmlFile, 'utf8')
scripts = statsJson.entrypoints['background-script'].assets.map(asset => `<script src="../js/${asset.name}"></script>`).join('\n')
html = html.replace('{{ scripts }}', scripts)
fs.writeFileSync('dist/html/' + htmlFile, html)
bgScript = fs.readFileSync(paths.distJs + '/background-script.js', 'utf8')
addition = `
if ("undefined"!=typeof self && 'importScripts' in self) {
${statsJson.entrypoints['background-script'].assets.map(asset => asset.name !== 'background-script.js' ? `self.importScripts('./${asset.name}')` : '').join('\n')}
}
`
fs.writeFileSync(paths.distJs + '/background-script.js', addition + bgScript)
break
}
})
}
const mochajs = function() {
return gulp.src('./node_modules/mocha/mocha.js').pipe(gulp.dest('./dist/js/'))
}
const mochacss = function() {
return gulp
.src('./node_modules/mocha/mocha.css')
.pipe(gulp.dest('./dist/css/'))
}
const native = async function() {
const execa = (await import('execa')).execa
const {stdout} = await execa('cap', ['sync'])
console.log(stdout)
}
const cleanJs = async function() {
try {
fs.rmSync(paths.distJs, { recursive: true })
} catch (e) {
// noop
}
}
const mocha = gulp.parallel(mochajs, mochacss)
const thirdparty = gulp.parallel(mocha)
const assets = gulp.parallel(thirdparty, icons)
const build = gulp.series(cleanJs, js, assets)
const main = gulp.series(build, native)
const chromeZip = function() {
return gulp
.src(paths.chromeZip, { buffer: false })
.pipe(rename((path) => {
if (path.basename.startsWith('manifest') && path.extname === '.json') {
path.basename = 'manifest'
}
}))
.pipe(gulpZip(`floccus-build-v${VERSION}-chrome.zip`))
.pipe(gulp.dest(paths.builds))
}
const firefoxZip = function() {
return gulp
.src(paths.firefoxZip, { buffer: false })
.pipe(rename((path) => {
if (path.basename.startsWith('manifest') && path.extname === '.json') {
path.basename = 'manifest'
}
}))
.pipe(gulpZip(`floccus-build-v${VERSION}-firefox.zip`))
.pipe(gulp.dest(paths.builds))
}
const xpi = function() {
return gulp
.src(paths.firefoxZip, { buffer: false })
.pipe(rename((path) => {
if (path.basename.startsWith('manifest') && path.extname === '.json') {
path.basename = 'manifest'
}
}))
.pipe(gulpZip(`floccus-build-v${VERSION}.xpi`))
.pipe(gulp.dest(paths.builds))
}
const crx = function() {
return crx3(
fs.createReadStream(`${paths.builds}/floccus-build-v${VERSION}-chrome.zip`),
{
keyPath: 'key.pem',
crxPath: `${paths.builds}/floccus-build-v${VERSION}.crx`,
}
)
}
const release = gulp.series(main, gulp.parallel(firefoxZip, chromeZip, xpi), crx)
const publish = gulp.series(main, chromeZip, function() {
return webstore
.uploadExisting(
fs.createReadStream(`${paths.builds}floccus-build-v${VERSION}-chrome.zip`)
)
.then(function() {
return webstore.publish('default')
})
})
const watch = function() {
let jsWatcher = gulp.watch(paths.js, assets)
let nativeWatcher = gulp.watch(paths.dist, native)
jsWatcher.on('change', onWatchEvent)
nativeWatcher.on('change', onWatchEvent)
webpack(devConfig).watch({}, (err, stats) => {
if (err) {
console.log(err)
}
html({entrypoints: {
native: {assets: [{name: 'native.js'}]},
options: {assets: [{name: 'options.js'}]},
'background-script': {assets: [{name: 'background-script.js'}]},
'test': {assets: [{name: 'test.js'}]},
}})
console.log(stats.toString({
chunks: false,
colors: true
}))
})
}
function onWatchEvent(path) {
console.log(
'File ' + path + ' was changed, running tasks...'
)
}
exports.assets = assets
exports.js = js
exports.mocha = mocha
exports.release = release
exports.watch = gulp.series(cleanJs,gulp.parallel(assets, devjs), native, watch)
exports.publish = publish
exports.build = build
exports.native = native
exports.package = gulp.series(gulp.parallel(firefoxZip, chromeZip, xpi), crx)
/*
* Define default task that can be called by just running `gulp` from cli
*/
exports.default = main