2020-04-16 20:37:41 +02:00
|
|
|
// This is a JS script so that the directory is created in-process on Windows.
|
2020-04-20 17:46:52 +02:00
|
|
|
// If the script isn't run in-process, there's a risk of it racing or never running
|
|
|
|
// due to file associations in Windows.
|
2020-04-16 20:37:41 +02:00
|
|
|
// Sorry.
|
|
|
|
|
|
|
|
const fs = require("fs");
|
|
|
|
const path = require("path");
|
|
|
|
const mkdirp = require("mkdirp");
|
|
|
|
const fetch = require("node-fetch");
|
2020-10-16 14:48:28 +02:00
|
|
|
const ProxyAgent = require("simple-proxy-agent");
|
2020-04-16 20:37:41 +02:00
|
|
|
|
|
|
|
console.log("Making webapp directory");
|
|
|
|
mkdirp.sync("webapp");
|
|
|
|
|
2022-01-11 17:15:17 +01:00
|
|
|
// curl -s https://meet.element.io/libs/external_api.min.js > ./webapp/jitsi_external_api.min.js
|
2020-04-16 20:37:41 +02:00
|
|
|
console.log("Downloading Jitsi script");
|
|
|
|
const fname = path.join("webapp", "jitsi_external_api.min.js");
|
2020-10-16 14:48:28 +02:00
|
|
|
|
|
|
|
const options = {};
|
|
|
|
if (process.env.HTTPS_PROXY) {
|
2022-01-11 17:15:17 +01:00
|
|
|
options.agent = new ProxyAgent(process.env.HTTPS_PROXY, { tunnel: true });
|
2020-10-16 14:48:28 +02:00
|
|
|
}
|
|
|
|
|
2022-12-09 13:28:29 +01:00
|
|
|
fetch("https://meet.element.io/libs/external_api.min.js", options)
|
|
|
|
.then((res) => {
|
|
|
|
const stream = fs.createWriteStream(fname);
|
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
res.body.pipe(stream);
|
|
|
|
res.body.on("error", (err) => reject(err));
|
|
|
|
res.body.on("finish", () => resolve());
|
|
|
|
});
|
|
|
|
})
|
|
|
|
.then(() => console.log("Done with Jitsi download"));
|