9.8 KiB
Obtaining the LINE Chrome extension
For all modes of deploying the bridge, it is first required to manually download a .crx or .zip file of the LINE Chrome extension (current version: 2.4.5).
The recommended way of doing this is to use the CRX Extractor/Downloader extension for Chrome/Chromium:
- Install that extension in a Chrome/Chromium instance of your choice
- Navigate to the Web Store page for the LINE extension
- Click the "CRX" button in the browser toolbar
- Select "Download as CRX" or "Download as ZIP"
The downloaded .crx/.zip can then be extracted with unzip
or with a GUI tool like GNOME File Roller.
To install updated versions of the LINE extension, simply download the .crx/.zip of the latest version of the extension, and extract it in the same location as for initial setup.
Manual setup
These instructions describe how to install and run the bridge manually from a clone of this repository.
Minimum requirements
- Python 3.7
- Node 14
- yarn 1.22.x (from either your distribution or
npm
) - postgresql 11
- A LINE account on a smartphone (Android or iOS)
Optional requirements
xvfb-run
for easily running the Puppeteer module in a background X serverxdotool
for keeping the Puppeteer module responsive when run in a background X server (see puppet/README.md)- Native dependencies for end-to-bridge: https://docs.mau.fi/bridges/python/optional-dependencies.html#all-python-bridges
Initial setup
Puppeteer module
- Extract the downloaded .crx/.zip of the LINE Chrome extension to
puppet/extension_files
cd
to thepuppet
directory and runyarn --production
- Copy
puppet/example-config.json
topuppet/config.json
- If your system's CPU architecture is not x86_64/amd64, the version of Chromium bundled with Puppeteer will not work, and the following additional steps are required:
- Install Chrome/Chromium from your distribution's package manager
- Edit
puppet/package.json
to specify the version of Puppeteer that is compatible with the version of Chrome/Chromium that you just installed, and rerunyarn --production
(see Puppeteer documentation for a map of Puppeteer/Chromium compatibility) - Set
executable_path
inpuppet/config.json
to the path to the installed Chrome/Chromium binary
- Edit
puppet/config.json
with desired settings (see puppet/README.md for details)
Bridge module
cd
to the repository root and create a Python virtual environment withpython3 -m venv .venv
, and enter it withsource .venv/bin/activate
- Install Python requirements:
pip install -Ur requirements.txt
for base functionalitypip install -Ur optional-requirements.txt
for end-to-bridge encryption and metrics- Note that end-to-bridge encryption requires some native dependencies. For details, see https://docs.mau.fi/bridges/python/optional-dependencies.html#all-python-bridges
- Copy
matrix_puppeteer_line/example-config.yaml
toconfig.yaml
, and update it with the proper settings to connect to your homeserver- In particular, be sure to set the
puppeteer.connection
settings to use the socket you chose inpuppet/config.json
- In particular, be sure to set the
- Run
python -m matrix_puppeteer_line -g
to generate an appservice registration file, and update your homeserver configuration to accept it
Running manually
- In the
puppet
directory, launch the Puppeteer module withyarn start
ornode src/main.js
- In the project root directory, run the bridge module with
python -m matrix_puppeteer_line
- Start a chat with the bot, and use one of the
login-email
orlogin-qr
commands to sync your LINE account- Note that on first use, you must enter a verification code on a smartphone version of LINE in order for the login to complete
Running the Puppeteer module headless
Puppeteer cannot be run in headless mode when using Chrome/Chromium with extensions (including the LINE extension).
As a workaround, it may be run in a background X server. This allows running the Puppeteer module on a GUI-less server.
An easy way to do so is to install xvfb
from your distribution, and run the Puppeteer module with xvfb-run yarn start
.
systemd
The systemd directory provides sample service unit configuration files for running the bridge & Puppeteer modules:
matrix-puppeteer-line.service
for the bridge modulematrix-puppeteer-line-chrome.service
for the Puppeteer module
To use them as-is, follow these steps after initial setup:
- Install
xfvb-run
, ideally from your distribution - Place/link your clone of this repository in
/opt/matrix-puppeteer-line
- If moving your repo directory after having already created a Python virtual environment for the bridge module, re-create the virtual environment after moving to ensure its paths are up-to-date
- Alternatively, clone it to
/opt/matrix-puppeteer-line
in the first place
- Install the services as either system or user units
- To install as system units:
- Copy/link the service files to a directory in the system unit search path, such as
/etc/systemd/system/
- Create the services' configuration directory with
sudo mkdir /etc/matrix-puppeteer-line
- RECOMMENDED: Create the
matrix-puppeteer-line
user on your system withadduser
or an equivalent command, then uncomment theUser
andGroup
lines in the service files
- Copy/link the service files to a directory in the system unit search path, such as
- To install as user units:
- Copy/link the service files to a directory in the user unit search path, such as
~/.config/systemd/user
- Create the services' configuration directory with
mkdir $XDG_CONFIG_HOME/matrix-puppeteer-line
- Copy/link the service files to a directory in the user unit search path, such as
- To install as system units:
- Copy the bridge & Puppeteer module configuration files to the services' configuration directory as
config.yaml
andpuppet-config.json
, respectively - Start the services now and on every boot boot with
[sudo] systemd [--user] enable --now matrix-puppeteer-line{,-chrome}
Note that stopping/restarting the bridge module service matrix-puppeteer-line.service
does not affect the Puppeteer module service matrix-puppeteer-line-chrome.service
, but stopping/restarting the latter will also stop/restart the former.
Thus, to shut down the bridge entirely, either stop matrix-puppeteer-line-chrome.service
, or stop both services at once.
Upgrading
Simply git pull
or git rebase
the latest changes, and rerun any installation commands (yarn --production
, pip install -Ur ...
).
Docker
These instructions describe how to run the bridge with Docker containers.
Notes
- Any
docker
commands mentioned below need to be run withsudo
unless you have configured your system otherwise. See Docker docs for details. - All configuration files created by the Docker containers will be
chown
ed to UID/GID 1337. Usesudo
access on the host to edit them. - The
docker
commands below mount the working directory as/data
, so make sure you always run them in the correct directory.
Limitations
- Images must be built manually for now. It is planned for there to be prebuilt images available to pull.
- amd64/x86_64 is the only architecture the current Dockerfiles have been tested with. For other architectures, it is necessary to change the base image of
puppet/Dockerfile
to one that provides Chrome/Chromium for your architecture.
Initial setup
cd
to the directory where you cloned this repository- Build the image for the bridge module with
docker build . -t matrix-puppeteer-line
cd
to thepuppet
directory, and build the image for the Puppeteer module withdocker build . -t matrix-puppeteer-line-chrome
- Create a new directory outside of the repository directory, and
cd
into it - Extract the downloaded .crx/.zip of the LINE Chrome extension to this directory
- Run a container for the Puppeteer module for the first time, so it can create a config file for you:
docker run --rm -v $(pwd):/data:z matrix-puppeteer-line-chrome
- Update the config to your liking, but leave the
"executable_path"
setting as-is (unless you need to use a version of Chrome/Chromium from the host or another container). - Run the Puppeteer module with
docker run --restart unless-stopped -v $(pwd):/data:z matrix-puppeteer-line-chrome
- Run a container for the bridge module for the first time, so it can create a config file for you:
docker run --rm -v $(pwd):/data:z matrix-puppeteer-line
- Update the config to your liking. You'll at least need to change the homeserver settings, appservice address and permissions, as well as the socket connection to the Puppeteer module
- Note that the Puppeteer module's default config uses a unix socket at
/data/puppet.sock
- Note that the Puppeteer module's default config uses a unix socket at
- Generate the appservice registration by running the container again, and update your homeserver configuration to accept it
- Run the bridge module with
docker run --restart unless-stopped -v $(pwd):/data:z matrix-puppeteer-line
Additionally, you should either add the bridge to the same Docker network as your homeserver and datapase with --network=<name>
, or expose the correct port(s) with -p <port>:<port>.
(A quick-and-dirty option is to use --network="host"
.)
Upgrading
Simply git pull
or git rebase
the latest changes, rerun all docker build
commands, then run new containers for the freshly-built images.