Files
fx_cast/README.md
2022-04-21 14:17:59 +01:00

248 lines
8.4 KiB
Markdown

<img src="docs/images/preview-fg_dark@2x.png"
alt="Preview of cast device selection popup"
align="right"
width="462">
# fx_cast
A Firefox extension that implements the Chromecast API and exposes it to web apps to enable cast support. Communication with receiver devices is handled by a companion application (bridge).
## Installing
Install the Firefox extension (from within Firefox) and bridge application via the installer packages. These are two separate downloads that can be found on the [website](https://hensm.github.io/fx_cast/) or in the [GitHub releases](https://github.com/hensm/fx_cast/releases) section.
The bridge application is currently supported on Windows, macOS and Linux.
**Important**: On Linux platforms such as Arch, it may be necessary to [configure local hostname resolution](https://wiki.archlinux.org/index.php/avahi#Hostname_resolution)[^arch].
### Installing via package managers
**Note**: These packages are maintained by third parties and support likely will not be provided for any issues specific to these packages.
- **Arch Linux (AUR)**
- `fx_cast` — https://aur.archlinux.org/packages/fx_cast
- `fx_cast-bin` — https://aur.archlinux.org/packages/fx_cast-bin
### Daemon Configuration
<details>
<summary>Daemon configuration (systemd)</summary>
1. Create `fx_cast` user:
```sh
$ sudo useradd --system fx_cast
```
2. Create service file in `/etc/systemd/fx_cast.service`:
```
[Unit]
Description=fx_cast daemon
[Service]
User=fx_cast
ExecStart=/opt/fx_cast/fx_cast_bridge -d
Restart=always
[Install]
WantedBy=multi-user.target
```
3. Enable the service:
```sh
$ sudo systemctl enable --now fx_cast`
```
</details>
## Usage
Clicking on the toolbar button or `Cast...` menu item in the page context menu will open a popup that shows a list of receiver devices will allow you to start casting the currently detected app[^cast_app] or media.
### Site Whitelist
The extension provides a whitelist for ensuring only trusted sites are allowed to load the cast API and communicate with receiver devices.
Sites may be added to the whitelist, either by clicking one of the whitelist options in the toolbar button context menu whilst visiting the site, or by manually entering a valid [match pattern](https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/Match_patterns) on the options page.
Whitelisted sites should then display a cast button as in Chrome, provided they're compatible with the extension/Firefox.
## Building
### Requirements
* Node.js v16.x.x
* Native build tools (see [here](https://github.com/nodejs/node-gyp#installation))
* Bonjour/Avahi (on Windows/Linux respectively)
Cross-compiling native dependencies may be possible, but isn't tested or supported. Build script options are provided for building/packaging on other platforms, but assume they won't work. Packaging on Linux for other Linux package formats should work fine.
### Installing dependencies
#### Windows:
* [Bonjour SDK for Windows](https://developer.apple.com/download/more/?=Bonjour%20SDK%20for%20Windows)
* [NSIS](https://nsis.sourceforge.io/Download)
#### Debian / Ubuntu:
````sh
$ sudo apt install libavahi-compat-libdnssd-dev dpkg rpm
````
Runtime packages: `avahi-daemon`.
#### Fedora:
````sh
$ sudo dnf install avahi-compat-libdns_sd-devel dpkg rpm-build
````
Runtime packages: `avahi`, `nss-mdns`.
#### Arch Linux:
````sh
$ sudo pacman -S avahi dpkg rpm-tools
````
### Instructions
````sh
$ git clone https://github.com/hensm/fx_cast.git
$ cd fx_cast
$ npm install
$ npm run build
# Install manifest for dist/ build. Installs to
# user-specific location and overrides a system-wide
# install. Call `remove-manifest` to restore previous state.
$ npm run install-manifest
$ npm run remove-manifest
````
This will build the ext and app, outputting to `dist/`:
- `dist/app/`
... contains the built bridge with launcher script and manifest (with the path pointing that script). The `install-manifest` npm script copies this manifest to the proper location (or adds its current location to the registry on Windows).
- `dist/ext/`
... contains the unpacked extension.
Watching ext changes:
````sh
$ npm run watch --prefix ./ext
````
Launch Firefox with built extension (run in separate terminal):
````sh
$ npm run start --prefix ./ext
````
#### 32-bit on Windows
Building a 32-bit version is only supported for Windows. If you're building from a 64-bit system, you'll also need to rebuild any native dependencies as 32-bit.
````sh
$ npm clean-install --prefix ./app --arch=ia32 # If on a 64-bit system
# If building without packaging
$ npm run build:app -- -- --arch=x86 --usePkg
# If packaging
$ npm run package:app -- -- --arch=x86
````
### Build scripts
Extension build script (`build:ext`) arguments:
- `--package`
Should package with web-ext.
- `--watch`
Should run webpack in watch mode.
- `--mirroringAppId` `"<appID>"`
Provide an alternative default mirroring receiver app ID.
- `--mode` `"production"`, `"development"`
Run webpack in a different mode. Defaults to `"development"` unless combined with `--package`.
Bridge build script (`build:app`) arguments:
- `--usePkg`
Creates a single executable instead of a compiled JavaScript files and a launcher script.
- `--package`
Builds and creates installer packages for distribution.
- `--arch` `"x64"`,`"x86"`
Select platform arch to build for. Defaults to current platform arch.
### Packaging
Build and package extension and bridge application for current platform:
```sh
$ npm run package
```
- `dist/app/`
... contains the installer package: `fx_cast_bridge-<version>-<arch>.(pkg|deb|rpm|exe)`
- `dist/ext/`
... contains the built extension archive: `fx_cast-<version>.xpi`.
Packaging examples:
```sh
$ npm run package:ext # Packaging extension
$ npm run package:app # Packaging bridge application
# Linux platforms
$ npm run package:app -- -- --packageType=deb
$ npm run package:app -- -- --packageType=rpm
```
Bridge package script arguments (includes the build script arguments):
- `--packageType` `"deb"`,`"rpm"`
Select the package type. Defaults to `deb`. Only relevant when building for Linux.
### Testing
Testing requires geckodriver (or chromedriver for Chrome parity testing). See [selenium-webdriver](https://www.npmjs.com/package/selenium-webdriver#installation) installation instructions (ignore `npm install`).
The test script expects a compatible installed bridge version and a packaged extension archive at `dist/ext/`.
Test results will be displayed in the terminal and within the opened browser tab. Chrome may take some time to initialize the media router component before the cast API is available for testing.
```sh
$ npm run build --prefix ./app
$ npm run install-manifest
$ npm run package --prefix ./ext
$ npm test
# Or if testing in Chrome
$ SELENIUM_BROWSER=chrome npm test
```
## Video Demos
These are somewhat outdated now, but show the basic function of the extension:
[<img width="200" src="https://img.youtube.com/vi/Ex9dWKYguEE/0.jpg" alt="fx_cast Netflix" />](https://www.youtube.com/watch?v=Ex9dWKYguEE)
[<img width="200" src="https://img.youtube.com/vi/16r8lQKeEX8/0.jpg" alt="fx_cast HTML5" />](https://www.youtube.com/watch?v=16r8lQKeEX8)
## Credit
- [electron-chromecast](https://github.com/GPMDP/electron-chromecast)[^electron]
- Icons by [icons8](https://icons8.com/):
- `ext/src/ui/options/assets/icons8-cancel-120.png`
- `ext/src/ui/options/assets/icons8-ok-120.png`
- `ext/src/ui/options/assets/icons8-warn-120.png`
## Donations
### PayPal
<p style="float: left">
<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=3Z2FTMSG976WN&source=url">
<img src="https://www.paypal.com/en_US/i/btn/btn_donateCC_LG.gif" alt="Donate with PayPal button" align="middle">
</a>
<img alt="Donate with PayPal" src="https://i.imgur.com/oisL6Eo.png" align="middle">
</p>
[^arch]:
By default, Arch does not configure Avahi to resolve `.local` hostnames via the name service switch (NSS), and the underlying mdns module used by this project relies on [`getaddrinfo`](https://en.wikipedia.org/wiki/Getaddrinfo) to resolve these hostnames correctly.
[^cast_app]:
Some sites may only function properly when initiating casting from the in-page player buttons.
[^electron]:
Since it seems to be causing confusion, this project does not use electron. The electron-chromecast library was only used as a reference for the initial implementation of the API.