Has Gradle download and install the browser rather than bundle it.

This is more flexible, and I couldn't exactly upload the Firefox installation to Git before.
This commit is contained in:
Markil3
2021-08-30 17:15:36 -06:00
parent b35e2eefd8
commit 5e4ae23978
13 changed files with 536 additions and 226 deletions

View File

@@ -0,0 +1,2 @@
pref("general.config.filename", "firefox.cfg");
pref("general.config.obscure_value", 0);

View File

@@ -0,0 +1,37 @@
{
"policies": {
"DisableAppUpdate": true,
"DisableFeedbackCommands": true,
"DisableFirefoxScreenshots": true,
"DisableFirefoxStudies": true,
"DisablePocket": true,
"DisableTelemetry": true,
"OverrideFirstRunPage": "about:home",
"OverridePostUpdatePage": "about:home",
"EnableTrackingProtection": {
"Value": true,
"Locked": false,
"Cryptomining": true,
"Fingerprinting": true
},
"DontCheckDefaultBrowser": true,
"Permissions": {
"Camera": {
"BlockNewRequests": true
},
"Microphone": {
"BlockNewRequests": true
},
"Location": {
"BlockNewRequests": true
},
"Notifications": {
"BlockNewRequests": true
},
"Autoplay": {
"Default": "allow-audio-video",
"Locked": true
}
}
}
}

View File

@@ -0,0 +1 @@
user_pref("xpinstall.signatures.required", false);

View File

@@ -0,0 +1,2 @@
// Hello!
defaultPref("xpinstall.signatures.required", false)

206
browser/build.gradle Normal file
View File

@@ -0,0 +1,206 @@
/*
* Copyright (c) 2021 William Hubbard. All Rights Reserved.
*/
import org.apache.tools.ant.taskdefs.condition.Os
plugins {
id 'java'
id "de.undercouch.download" version "4.1.2"
}
// In this section you declare where to find the dependencies of your project
repositories {
mavenCentral()
def mozilla = ivy {
url 'https://download-installer.cdn.mozilla.net/'
patternLayout {
artifact '/pub/[module]/releases/[revision]/[classifier]/en-US/firefox-[revision].[ext]'
artifact '/pub/[module]/releases/[revision]/[classifier]/en-US/Firefox [revision].[ext]'
artifact '/pub/[module]/releases/[revision]/[classifier]/en-US/Firefox Setup [revision].[ext]'
}
metadataSources {
artifact()
}
}
flatDir {
dirs new File(rootDir, 'libs')
}
exclusiveContent {
forRepositories(mozilla)
filter {
includeGroup("firefox")
}
}
}
abstract class WriteBat extends DefaultTask {
@Input
final abstract Property<String> command = project.objects.property(String)
@OutputFile
final abstract RegularFileProperty outputFile = project.objects.fileProperty().convention(project.layout.buildDirectory.file('install.bat'))
@TaskAction
void join() {
outputFile.get().asFile.text = command.get()
}
}
def firefox_module = "devedition"
def firefox_revision = "92.0b7"
task bundleAddOn(type: Zip) {
setArchiveName "universalmusic@regis.edu.xpi"
setDestinationDir file("$rootDir/firefox/distribution/extensions")
from (files("$rootDir/add-on"))
}
task movePolicies(type: Copy) {
from files("browserConf")
into "$rootDir/firefox/"
}
task setupProfile {
doFirst {
mkdir "$rootDir/firefox/distribution"
mkdir "$rootDir/firefox/distribution/extensions"
}
finalizedBy movePolicies
finalizedBy bundleAddOn
}
task downloadWindows_x86_64(type: Download) {
src "https://download-installer.cdn.mozilla.net/pub/${firefox_module}/releases/${firefox_revision}/win64/en-US/Firefox%20Setup%20${firefox_revision}.msi"
dest layout.buildDirectory.file("installer.msi")
overwrite false
onlyIfModified true
}
task downloadWindows_x86(type: Download) {
src "https://download-installer.cdn.mozilla.net/pub/${firefox_module}/releases/${firefox_revision}/win32/en-US/Firefox%20Setup%20${firefox_revision}.msi"
dest layout.buildDirectory.file("installer.msi")
overwrite false
onlyIfModified true
}
task downloadLinux_x86_64(type: Download) {
src "https://download-installer.cdn.mozilla.net/pub/${firefox_module}/releases/${firefox_revision}/linux-x86_64/en-US/firefox-${firefox_revision}.tar.bz2"
dest layout.buildDirectory.file("installer.tar.bz2")
overwrite false
onlyIfModified true
}
task downloadLinux_i686(type: Download) {
src "https://download-installer.cdn.mozilla.net/pub/${firefox_module}/releases/${firefox_revision}/linux-i686/en-US/firefox-${firefox_revision}.tar.bz2"
dest layout.buildDirectory.file("installer.tar.bz2")
overwrite false
onlyIfModified true
}
task installWindows_x86_64(dependsOn: downloadWindows_x86_64, type: Exec) {
workingDir layout.buildDirectory
commandLine 'msiexec', '/i', '"' + downloadWindows_x86_64.dest + '"', '/li', '"install.log"', '/qb', "INSTALL_DIRECTORY_PATH=\"$rootDir\\firefox\"", 'TASKBAR_SHORTCUT=false', 'DESKTOP_SHORTCUT=false', 'INSTALL_MAINTENANCE_SERVICE=false'
outputs.file("$rootDir\\firefox\\firefox.exe")
}
//installWindows_x86_64.onlyIf { !layout.buildDirectory.file("browser/firefox.exe").get().asFile.exists() }
installWindows_x86_64.doFirst {
println "Administrator privileges needed for installing Firefox. Please confirm on the popup."
}
installWindows_x86_64.finalizedBy setupProfile
task installWindows_x86(dependsOn: downloadWindows_x86, type: Exec) {
workingDir layout.buildDirectory
commandLine 'msiexec', '/i', '"' + downloadWindows_x86.dest + '"', '/li', '"install.log"', '/qb', "INSTALL_DIRECTORY_PATH=\"$rootDir/firefox\"", 'TASKBAR_SHORTCUT=false', 'DESKTOP_SHORTCUT=false', 'INSTALL_MAINTENANCE_SERVICE=false'
outputs.file("$rootDir\\firefox\\firefox.exe")
}
//installWindows_x86.onlyIf { !layout.buildDirectory.file("browser/firefox.exe").get().asFile.exists() }
installWindows_x86.doFirst {
println "Administrator privileges needed for installing Firefox. Please confirm on the popup."
}
installWindows_x86.finalizedBy setupProfile
task deleteFirefoxWindows(type: Delete) {
delete "$rootDir/firefox"
}
task uninstallFirefoxWindows(type: Exec) {
workingDir layout.buildDirectory
commandLine 'cmd', '/c', "$rootDir\\firefox\\uninstall\\helper.exe", '/S'
}
uninstallFirefoxWindows.onlyIf { new File("$rootDir/firefox/firefox.exe").exists() }
uninstallFirefoxWindows.doFirst {
println "Administrator privileges needed for uninstalling Firefox. Please confirm on the popup."
}
uninstallFirefoxWindows.finalizedBy deleteFirefoxWindows
task installLinux_x86_64(dependsOn: downloadLinux_x86_64, type: Copy) {
from tarTree(downloadLinux_x86_64.dest)
into "$rootDir/firefox"
}
installLinux_x86_64.finalizedBy setupProfile
task installLinux_i686(dependsOn: downloadLinux_i686, type: Copy) {
from tarTree(downloadLinux_i686.dest)
into "$rootDir/firefox"
}
installLinux_i686.finalizedBy setupProfile
tasks.named('clean') {
dependsOn uninstallFirefoxWindows
}
dependencies {
implementation 'org.slf4j:slf4j-api:1.7.30'
implementation 'org.apache.logging.log4j:log4j-api:2.13.3'
implementation 'org.apache.logging.log4j:log4j-core:2.13.3'
implementation 'org.apache.logging.log4j:log4j-slf4j-impl:2.13.3'
implementation project(":browserCommands")
}
// In this section you declare the dependencies for your production and test code
if (Os.isFamily(Os.FAMILY_WINDOWS))
{
if (Os.isArch("x86_64") || Os.isArch("amd64"))
{
print("Windows x86_64")
processResources.finalizedBy installWindows_x86_64
}
else if (Os.isArch("x86") || Os.isArch("i386") || Os.isArch("i686"))
{
print("Windows x86")
processResources.finalizedBy installWindows_x86
}
else
{
printf("Unknown windows architecture %s!\n", System.getProperty("os.arch"))
}
}
else if (Os.isFamily(Os.FAMILY_MAC))
{
print("Mac")
processResources.finalizedBy {
api "firefox:devedition:92.0b7:mac@dmg"
}
}
else if (Os.isFamily(Os.FAMILY_UNIX))
{
if (Os.isArch("x86_64") || Os.isArch("amd64"))
{
processResources.finalizedBy installLinux_x86_64
}
else if (Os.isArch("x86") || Os.isArch("i386") || Os.isArch("i686"))
{
processResources.finalizedBy installLinux_i686
}
else
{
printf("Unknown Linux architecture %s!\n", System.getProperty("os.arch"))
}
}
else
{
printf("Unknown operating system %s!\n", System.getProperty("os.name"))
}

View File

@@ -0,0 +1,218 @@
/*
* Copyright (c) 2021 William Hubbard. All Rights Reserved.
*/
package edu.regis.universeplayer.browser;
import edu.regis.universeplayer.browserCommands.BrowserConstants;
import edu.regis.universeplayer.browserCommands.MessageRunner;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.io.File;
import java.io.IOException;
import java.net.ConnectException;
import java.net.InetAddress;
import java.net.ServerSocket;
import java.net.Socket;
import java.util.Scanner;
import java.util.concurrent.atomic.AtomicBoolean;
public class Browser extends MessageRunner
{
private static final Logger logger = LoggerFactory.getLogger(Browser.class);
private static Browser INSTANCE;
private static final AtomicBoolean instanceWaiter = new AtomicBoolean();
public static Browser getInstance()
{
return INSTANCE;
}
private final Process process;
private final ServerSocket server;
private final Socket socket;
private boolean running = true;
public static Browser createBrowser() throws IOException, InterruptedException
{
if (INSTANCE != null)
{
return INSTANCE;
}
ServerSocket server = new ServerSocket(BrowserConstants.PORT, 50, InetAddress.getByName(null));
logger.debug("Server started.");
int startExit;
Process browserProcess = launchBrowser();
/*
* Wait for the browser to fully start.
*/
startExit = browserProcess.waitFor();
if (startExit != 0)
{
logger.error("Error in browser launch (exit code {})", startExit);
try (Scanner scanner = new Scanner(browserProcess.getErrorStream()))
{
while (scanner.hasNextLine())
{
logger.error(scanner.nextLine());
}
}
throw new IOException("Error in browser launch (exit code " + startExit + ")");
}
logger.debug("Browser started.");
ConnectException connErr = null;
logger.debug("Attempting connection");
Socket socket = server.accept();
if (!socket.isBound())
{
logger.error("Socket not bound");
}
else if (!socket.isConnected())
{
logger.error("Socket not connected");
}
else if (socket.isClosed())
{
logger.error("Socket prematurely closed");
}
else if (socket.isInputShutdown())
{
logger.error("Socket input prematurely closed.");
}
else if (socket.isOutputShutdown())
{
logger.error("Socket input prematurely closed.");
}
else
{
logger.debug("Connection established.");
}
INSTANCE = new Browser(socket, server, browserProcess);
instanceWaiter.set(true);
notifyAllInstance();
return INSTANCE;
}
private Browser(Socket socket, ServerSocket server, Process process) throws IOException
{
super("BrowserRunner", socket.getInputStream(), socket.getOutputStream());
this.socket = socket;
this.server = server;
this.process = process;
}
@Override
protected boolean onRun()
{
if (!socket.isConnected() || socket.isClosed() || socket.isInputShutdown() || socket.isOutputShutdown())
{
logger.debug("Socket closed, shutting down");
return true;
}
return !this.running;
}
@Override
protected void onClose()
{
logger.debug("Closing socket");
this.running = false;
try
{
this.socket.close();
}
catch (IOException e)
{
logger.error("Could not close socket", e);
}
finally
{
logger.debug("Closing server");
try
{
this.server.close();
}
catch (IOException e)
{
logger.error("Could not close server", e);
process.descendants().forEach(ProcessHandle::destroy);
process.destroy();
}
}
}
/**
* Utility method for launching a browser instance
*
* @throws IOException - Thrown if there is a problem launching the browser.
*/
private static Process launchBrowser() throws IOException
{
Process process = null;
String os = System.getProperty("os.name").toLowerCase();
String arch = System.getProperty("os.arch").toLowerCase();
String args;
File browserDir = new File(System.getProperty("user.dir"), "firefox");
args = " -profile \"" + System.getProperty("user.dir") + "/profile\"";
logger.info("Running on {} {}", os, arch);
// System.getProperties().entrySet().stream().forEach(entry -> logger.info("{}: {}", entry.getKey(), entry.getValue()));
if (os.contains("windows"))
{
process = Runtime.getRuntime().exec(new File(browserDir, "firefox.exe").getAbsolutePath() + args);
}
else if (os.contains("linux"))
{
process = Runtime.getRuntime().exec(new File(browserDir, "firefox").getAbsolutePath() + args);
}
if (process == null)
{
throw new IOException("Could not find Firefox installation for OS " + os + " " + arch);
}
return process;
}
public static void notifyInstance()
{
instanceWaiter.notify();
}
public static void notifyAllInstance()
{
synchronized (instanceWaiter)
{
instanceWaiter.notifyAll();
}
}
public static void waitInstance() throws InterruptedException
{
synchronized (instanceWaiter)
{
instanceWaiter.wait();
}
}
public static void waitInstance(long timeoutMillis) throws InterruptedException
{
synchronized (instanceWaiter)
{
instanceWaiter.wait(timeoutMillis);
}
}
public static void waitInstance(long timeoutMillis, int nanos) throws InterruptedException
{
synchronized (instanceWaiter)
{
instanceWaiter.wait(timeoutMillis, nanos);
}
}
}