forked from Hubs-Foundation/hubs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
597 lines (547 loc) · 18 KB
/
webpack.config.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
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
const dotenv = require("dotenv");
const fs = require("fs");
const path = require("path");
const selfsigned = require("selfsigned");
const webpack = require("webpack");
const cors = require("cors");
const HTMLWebpackPlugin = require("html-webpack-plugin");
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
const CopyWebpackPlugin = require("copy-webpack-plugin");
const BundleAnalyzerPlugin = require("webpack-bundle-analyzer").BundleAnalyzerPlugin;
const TOML = require("@iarna/toml");
const fetch = require("node-fetch");
const packageLock = require("./package-lock.json");
const request = require("request");
function createHTTPSConfig() {
// Generate certs for the local webpack-dev-server.
if (fs.existsSync(path.join(__dirname, "certs"))) {
const key = fs.readFileSync(path.join(__dirname, "certs", "key.pem"));
const cert = fs.readFileSync(path.join(__dirname, "certs", "cert.pem"));
return { key, cert };
} else {
const pems = selfsigned.generate(
[
{
name: "commonName",
value: "localhost"
}
],
{
days: 365,
keySize: 2048,
algorithm: "sha256",
extensions: [
{
name: "subjectAltName",
altNames: [
{
type: 2,
value: "localhost"
},
{
type: 2,
value: "hubs.local"
}
]
}
]
}
);
fs.mkdirSync(path.join(__dirname, "certs"));
fs.writeFileSync(path.join(__dirname, "certs", "cert.pem"), pems.cert);
fs.writeFileSync(path.join(__dirname, "certs", "key.pem"), pems.private);
return {
key: pems.private,
cert: pems.cert
};
}
}
function getModuleDependencies(moduleName) {
const deps = packageLock.dependencies;
const arr = [];
const gatherDeps = name => {
arr.push(path.join(__dirname, "node_modules", name) + path.sep);
const moduleDef = deps[name];
if (moduleDef && moduleDef.requires) {
for (const requiredModuleName in moduleDef.requires) {
gatherDeps(requiredModuleName);
}
}
};
gatherDeps(moduleName);
return arr;
}
function deepModuleDependencyTest(modulesArr) {
const deps = [];
for (const moduleName of modulesArr) {
const moduleDependencies = getModuleDependencies(moduleName);
deps.push(...moduleDependencies);
}
return module => {
if (!module.nameForCondition) {
return false;
}
const name = module.nameForCondition();
return deps.some(depName => name.startsWith(depName));
};
}
function createDefaultAppConfig() {
const schemaPath = path.join(__dirname, "src", "schema.toml");
const schemaString = fs.readFileSync(schemaPath).toString();
let appConfigSchema;
try {
appConfigSchema = TOML.parse(schemaString);
} catch (e) {
console.error("Error parsing schema.toml on line " + e.line + ", column " + e.column + ": " + e.message);
throw e;
}
const appConfig = {};
for (const [categoryName, category] of Object.entries(appConfigSchema)) {
appConfig[categoryName] = {};
// Enable all features with a boolean type
if (categoryName === "features") {
for (const [key, schema] of Object.entries(category)) {
if (key === "require_account_for_join" || key === "disable_room_creation") {
appConfig[categoryName][key] = false;
} else {
appConfig[categoryName][key] = schema.type === "boolean" ? true : null;
}
}
}
}
return appConfig;
}
async function fetchAppConfigAndEnvironmentVars() {
if (!fs.existsSync(".ret.credentials")) {
throw new Error("Not logged in to Hubs Cloud. Run `npm run login` first.");
}
const { host, token } = JSON.parse(fs.readFileSync(".ret.credentials"));
const headers = {
Authorization: `Bearer ${token}`,
"Content-Type": "application/json"
};
// Load the Hubs Cloud instance's app config in development
const appConfigsResponse = await fetch(`https://${host}/api/v1/app_configs`, { headers });
if (!appConfigsResponse.ok) {
throw new Error(`Error fetching Hubs Cloud config "${appConfigsResponse.statusText}"`);
}
const appConfig = await appConfigsResponse.json();
// dev.reticulum.io doesn't run ita
if (host === "dev.reticulum.io") {
return appConfig;
}
const hubsConfigsResponse = await fetch(`https://${host}/api/ita/configs/hubs`, { headers });
const hubsConfigs = await hubsConfigsResponse.json();
if (!hubsConfigsResponse.ok) {
throw new Error(`Error fetching Hubs Cloud config "${hubsConfigsResponse.statusText}"`);
}
const { shortlink_domain, thumbnail_server } = hubsConfigs.general;
process.env.RETICULUM_SERVER = host;
process.env.SHORTLINK_DOMAIN = shortlink_domain;
process.env.CORS_PROXY_SERVER = "localhost:8080/cors-proxy";
process.env.THUMBNAIL_SERVER = thumbnail_server;
process.env.NON_CORS_PROXY_DOMAINS = "hubs.local,localhost";
return appConfig;
}
module.exports = async (env, argv) => {
env = env || {};
// Load environment variables from .env files.
// .env takes precedent over .defaults.env
// Previously defined environment variables are not overwritten
dotenv.config({ path: ".env" });
dotenv.config({ path: ".defaults.env" });
let appConfig = undefined;
/**
* Initialize the Webpack build envrionment for the provided environment.
*/
if (argv.mode !== "production" || env.bundleAnalyzer) {
if (env.loadAppConfig || process.env.LOAD_APP_CONFIG) {
if (!env.localDev) {
// Load and set the app config and environment variables from the remote server.
// A Hubs Cloud server or dev.reticulum.io can be used.
appConfig = await fetchAppConfigAndEnvironmentVars();
}
} else {
if (!env.localDev) {
// Use the default app config with all features enabled.
appConfig = createDefaultAppConfig();
}
}
if (env.localDev) {
// Local Dev Environment (npm run local)
Object.assign(process.env, {
HOST: "hubs.local",
RETICULUM_SOCKET_SERVER: "hubs.local",
CORS_PROXY_SERVER: "hubs-proxy.local:4000",
NON_CORS_PROXY_DOMAINS: "hubs.local,dev.reticulum.io",
BASE_ASSETS_PATH: "https://hubs.local:8080/",
RETICULUM_SERVER: "hubs.local:4000",
POSTGREST_SERVER: "",
ITA_SERVER: ""
});
}
}
// In production, the environment variables are defined in CI or loaded from ita and
// the app config is injected into the head of the page by Reticulum.
const host = process.env.HOST_IP || env.localDev || env.remoteDev ? "hubs.local" : "localhost";
const legacyBabelConfig = {
presets: ["@babel/react", ["@babel/env", { targets: { ie: 11 } }]],
plugins: [
"@babel/proposal-class-properties",
"@babel/proposal-object-rest-spread",
"@babel/plugin-transform-async-to-generator"
]
};
return {
node: {
// need to specify this manually because some random lodash code will try to access
// Buffer on the global object if it exists, so webpack will polyfill on its behalf
Buffer: false,
fs: "empty"
},
entry: {
support: path.join(__dirname, "src", "support.js"),
index: path.join(__dirname, "src", "index.js"),
hub: path.join(__dirname, "src", "hub.js"),
scene: path.join(__dirname, "src", "scene.js"),
avatar: path.join(__dirname, "src", "avatar.js"),
link: path.join(__dirname, "src", "link.js"),
discord: path.join(__dirname, "src", "discord.js"),
cloud: path.join(__dirname, "src", "cloud.js"),
signin: path.join(__dirname, "src", "signin.js"),
verify: path.join(__dirname, "src", "verify.js"),
"whats-new": path.join(__dirname, "src", "whats-new.js")
},
output: {
filename: "assets/js/[name]-[chunkhash].js",
publicPath: process.env.BASE_ASSETS_PATH || ""
},
devtool: argv.mode === "production" ? "source-map" : "inline-source-map",
devServer: {
https: createHTTPSConfig(),
host: "0.0.0.0",
public: `${host}:8080`,
useLocalIp: true,
allowedHosts: [host, "hubs.local"],
headers: {
"Access-Control-Allow-Origin": "*"
},
inline: !env.bundleAnalyzer,
historyApiFallback: {
rewrites: [
{ from: /^\/signin/, to: "/signin.html" },
{ from: /^\/discord/, to: "/discord.html" },
{ from: /^\/cloud/, to: "/cloud.html" },
{ from: /^\/verify/, to: "/verify.html" },
{ from: /^\/whats-new/, to: "/whats-new.html" }
]
},
before: function(app) {
// Local CORS proxy
app.all("/cors-proxy/*", (req, res) => {
res.header("Access-Control-Allow-Origin", "*");
res.header("Access-Control-Allow-Methods", "GET, HEAD, OPTIONS");
res.header("Access-Control-Allow-Headers", "Range");
res.header(
"Access-Control-Expose-Headers",
"Accept-Ranges, Content-Encoding, Content-Length, Content-Range, Hub-Name, Hub-Entity-Type"
);
res.header("Vary", "Origin");
res.header("X-Content-Type-Options", "nosniff");
const redirectLocation = req.header("location");
if (redirectLocation) {
res.header("Location", "https://localhost:8080/cors-proxy/" + redirectLocation);
}
if (req.method === "OPTIONS") {
res.send();
} else {
const url = req.path.replace("/cors-proxy/", "");
request({ url, method: req.method }, error => {
if (error) {
console.error(`cors-proxy: error fetching "${url}"\n`, error);
return;
}
}).pipe(res);
}
});
// be flexible with people accessing via a local reticulum on another port
app.use(cors({ origin: /hubs\.local(:\d*)?$/ }));
// networked-aframe makes HEAD requests to the server for time syncing. Respond with an empty body.
app.head("*", function(req, res, next) {
if (req.method === "HEAD") {
res.append("Date", new Date().toGMTString());
res.send("");
} else {
next();
}
});
}
},
performance: {
// Ignore media and sourcemaps when warning about file size.
assetFilter(assetFilename) {
return !/\.(map|png|jpg|gif|glb|webm)$/.test(assetFilename);
}
},
module: {
rules: [
{
test: /\.html$/,
loader: "html-loader",
options: {
// <a-asset-item>'s src property is overwritten with the correct transformed asset url.
attrs: ["img:src", "a-asset-item:src", "audio:src", "source:src"]
}
},
{
test: /\.worker\.js$/,
loader: "worker-loader",
options: {
name: "assets/js/[name]-[hash].js",
publicPath: "/",
inline: true
}
},
{
test: [
path.resolve(__dirname, "src", "utils", "configs.js"),
path.resolve(__dirname, "src", "utils", "i18n.js"),
path.resolve(__dirname, "src", "support.js")
],
loader: "babel-loader",
options: legacyBabelConfig
},
{
test: /\.js$/,
include: [path.resolve(__dirname, "src")],
// Exclude JS assets in node_modules because they are already transformed and often big.
exclude: [path.resolve(__dirname, "node_modules")],
loader: "babel-loader"
},
{
test: /\.(scss|css)$/,
use: [
{
loader: MiniCssExtractPlugin.loader
},
{
loader: "css-loader",
options: {
name: "[path][name]-[hash].[ext]",
localIdentName: "[name]__[local]__[hash:base64:5]",
camelCase: true
}
},
"sass-loader"
]
},
{
test: /\.(png|jpg|gif|glb|ogg|mp3|mp4|wav|woff2|svg|webm)$/,
use: {
loader: "file-loader",
options: {
// move required assets to output dir and add a hash for cache busting
name: "[path][name]-[hash].[ext]",
// Make asset paths relative to /src
context: path.join(__dirname, "src")
}
}
},
{
test: /\.(svgi)$/,
use: {
loader: "svg-inline-loader"
}
},
{
test: /\.(wasm)$/,
type: "javascript/auto",
use: {
loader: "file-loader",
options: {
outputPath: "assets/wasm",
name: "[name]-[hash].[ext]"
}
}
},
{
test: /\.(glsl|frag|vert)$/,
use: { loader: "raw-loader" }
}
]
},
optimization: {
splitChunks: {
maxAsyncRequests: 10,
maxInitialRequests: 10,
cacheGroups: {
frontend: {
test: deepModuleDependencyTest([
"react",
"react-dom",
"prop-types",
"raven-js",
"react-intl",
"classnames",
"react-router",
"@fortawesome/fontawesome-svg-core",
"@fortawesome/free-solid-svg-icons",
"@fortawesome/react-fontawesome"
]),
name: "frontend",
chunks: "initial",
priority: 40
},
engine: {
test: deepModuleDependencyTest(["aframe", "three"]),
name: "engine",
chunks: "initial",
priority: 30
},
store: {
test: deepModuleDependencyTest(["phoenix", "jsonschema", "event-target-shim", "jwt-decode", "js-cookie"]),
name: "store",
chunks: "initial",
priority: 20
},
hubVendors: {
test: /[\\/]node_modules[\\/]/,
name: "hub-vendors",
chunks: chunk => chunk.name === "hub",
priority: 10
}
}
}
},
plugins: [
new BundleAnalyzerPlugin({
analyzerMode: env && env.bundleAnalyzer ? "server" : "disabled"
}),
// Each output page needs a HTMLWebpackPlugin entry
new HTMLWebpackPlugin({
filename: "index.html",
template: path.join(__dirname, "src", "index.html"),
chunks: ["support", "index"],
chunksSortMode: "manual",
minify: {
removeComments: false
}
}),
new HTMLWebpackPlugin({
filename: "hub.html",
template: path.join(__dirname, "src", "hub.html"),
chunks: ["support", "hub"],
chunksSortMode: "manual",
inject: "head",
minify: {
removeComments: false
}
}),
new HTMLWebpackPlugin({
filename: "scene.html",
template: path.join(__dirname, "src", "scene.html"),
chunks: ["support", "scene"],
chunksSortMode: "manual",
inject: "head",
minify: {
removeComments: false
}
}),
new HTMLWebpackPlugin({
filename: "avatar.html",
template: path.join(__dirname, "src", "avatar.html"),
chunks: ["support", "avatar"],
chunksSortMode: "manual",
inject: "head",
minify: {
removeComments: false
}
}),
new HTMLWebpackPlugin({
filename: "link.html",
template: path.join(__dirname, "src", "link.html"),
chunks: ["support", "link"],
chunksSortMode: "manual",
minify: {
removeComments: false
}
}),
new HTMLWebpackPlugin({
filename: "discord.html",
template: path.join(__dirname, "src", "discord.html"),
chunks: ["discord"],
minify: {
removeComments: false
}
}),
new HTMLWebpackPlugin({
filename: "whats-new.html",
template: path.join(__dirname, "src", "whats-new.html"),
chunks: ["whats-new"],
inject: "head",
minify: {
removeComments: false
}
}),
new HTMLWebpackPlugin({
filename: "cloud.html",
template: path.join(__dirname, "src", "cloud.html"),
chunks: ["cloud"],
inject: "head",
minify: {
removeComments: false
}
}),
new HTMLWebpackPlugin({
filename: "signin.html",
template: path.join(__dirname, "src", "signin.html"),
chunks: ["signin"],
minify: {
removeComments: false
}
}),
new HTMLWebpackPlugin({
filename: "verify.html",
template: path.join(__dirname, "src", "verify.html"),
chunks: ["verify"],
minify: {
removeComments: false
}
}),
new CopyWebpackPlugin([
{
from: "src/hub.service.js",
to: "hub.service.js"
}
]),
new CopyWebpackPlugin([
{
from: "src/schema.toml",
to: "schema.toml"
}
]),
// Extract required css and add a content hash.
new MiniCssExtractPlugin({
filename: "assets/stylesheets/[name]-[contenthash].css",
disable: argv.mode !== "production"
}),
// Define process.env variables in the browser context.
new webpack.DefinePlugin({
"process.env": JSON.stringify({
NODE_ENV: argv.mode,
SHORTLINK_DOMAIN: process.env.SHORTLINK_DOMAIN,
RETICULUM_SERVER: process.env.RETICULUM_SERVER,
RETICULUM_SOCKET_SERVER: process.env.RETICULUM_SOCKET_SERVER,
THUMBNAIL_SERVER: process.env.THUMBNAIL_SERVER,
CORS_PROXY_SERVER: process.env.CORS_PROXY_SERVER,
NON_CORS_PROXY_DOMAINS: process.env.NON_CORS_PROXY_DOMAINS,
BUILD_VERSION: process.env.BUILD_VERSION,
SENTRY_DSN: process.env.SENTRY_DSN,
GA_TRACKING_ID: process.env.GA_TRACKING_ID,
POSTGREST_SERVER: process.env.POSTGREST_SERVER,
APP_CONFIG: appConfig
})
})
]
};
};