145 lines
4.0 KiB
Bash
Executable File
145 lines
4.0 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
toolName=matrix-commander
|
|
toolCloneUrl='https://github.com/8go/matrix-commander.git'
|
|
toolDeps="python3-pip python3-venv libolm-dev"
|
|
|
|
toolCredentialDir=
|
|
toolEncStoreDir=
|
|
|
|
# Get script working directory
|
|
# (when called from a different directory)
|
|
WDIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" >>/dev/null 2>&1 && pwd)"
|
|
APTOPT=
|
|
CONFIG=0
|
|
SCRIPT_FILE=$(basename -- $0)
|
|
SCRIPT_NAME=${SCRIPT_FILE%%.*}
|
|
CONFIG_FILE_NAME="${SCRIPT_NAME}.cfg"
|
|
CONFIG_FILE_TEMPLATE="$WDIR/${CONFIG_FILE_NAME}.example"
|
|
|
|
step_config() {
|
|
## or to use sequencer api with global config file:
|
|
initSeqConfig "$CONFIG_FILE_NAME" "$CONFIG_FILE_TEMPLATE"
|
|
|
|
if [ $? -eq 0 ] ; then
|
|
CONFIG=1
|
|
else
|
|
# End if no configuration file exists
|
|
[ $DRY -eq 0 ] && return -1
|
|
fi
|
|
|
|
toolCredentialDir="$MACO_BASE_DIR/.config/matrix-commander"
|
|
toolEncStoreDir="$MACO_BASE_DIR/.local/share/matrix-commander"
|
|
|
|
## Apt cmdline option to suppress user interaction
|
|
[ $QUIET -ne 0 ] && APTOPT="-y"
|
|
|
|
## Return of non zero value will abort the sequence
|
|
return 0
|
|
}
|
|
|
|
step_1_info() { echo "Run $toolName"; }
|
|
step_1_alias() { ALIAS="run"; }
|
|
step_1() {
|
|
shift
|
|
exe "$MACO_BASE_DIR/bin/python3" "$MACO_DIR/matrix-commander.py" "$@"
|
|
}
|
|
|
|
step_3_info() {
|
|
echoinfoArgs "[MESSAGE] [MESSAGE] ..."
|
|
echo "Send message"
|
|
echoinfo "Each string ([MESSAGE]) is send as separate message"
|
|
}
|
|
step_3_alias() { ALIAS="message"; }
|
|
step_3() {
|
|
shift
|
|
step run -m "$@"
|
|
}
|
|
|
|
step_50_info() { echo "Install $toolName dependencies"; }
|
|
step_50_alias() { ALIAS="install"; }
|
|
step_50() {
|
|
apt install $toolDeps $APTOPT
|
|
}
|
|
|
|
step_51_info() { echo "Add system user $MACO_USER"; }
|
|
step_51() {
|
|
id $MACO_USER >/dev/null 2>&1
|
|
[ $? -eq 0 ] && endReturn -o 1 "User $MACO_USER already exists"
|
|
|
|
exe adduser --system $MACO_USER --group --home "${MACO_BASE_DIR}" --no-create-home
|
|
}
|
|
|
|
step_52_info() { echo "Create venv and install $toolName"; }
|
|
step_52() {
|
|
[ -e "$MACO_BASE_DIR" ] && endReturn -o 1 "$toolName already installed"
|
|
|
|
exe python3 -m venv "$MACO_BASE_DIR"
|
|
endReturn -o $? "Creating virtual environment failed"
|
|
|
|
exe git clone $toolCloneUrl "$MACO_DIR"
|
|
exe chown -R $MACO_USER: "$MACO_BASE_DIR"
|
|
exe sudo -u $MACO_USER ${MACO_BASE_DIR}/bin/pip install --upgrade pip
|
|
}
|
|
|
|
step_53_info() { echo "Install python requirements"; }
|
|
step_53() {
|
|
cat <<NOTES_END
|
|
# Remove following packages for headless servers
|
|
|
|
dbus-python
|
|
notify2
|
|
NOTES_END
|
|
exe read -p "Enter to continue..."
|
|
exe "$DEFAULT_EDITOR_SYSTEM" "$MACO_DIR/requirements.txt"
|
|
exe sudo -u $MACO_USER ${MACO_BASE_DIR}/bin/pip install -r ${MACO_DIR}/requirements.txt
|
|
}
|
|
|
|
step_55_info() {
|
|
echo "Create systemd service for $toolName"
|
|
echoinfo "(Make sure to modify the service content in the step configuration)"
|
|
}
|
|
step_55_alias() { ALIAS="service"; }
|
|
step_55() {
|
|
local macommanderServiceLoc="/etc/systemd/system/matrix-commander.service"
|
|
addConf -s "$MACO_SERVICE" "$macommanderServiceLoc"
|
|
exe systemctl daemon-reload
|
|
}
|
|
|
|
step_57_info() { echo "First run to create credential file and encryption store"; }
|
|
step_57_alias() { ALIAS="firstrun"; }
|
|
step_57() {
|
|
exe sudo -u "$MACO_USER" mkdir -p "$toolCredentialDir" "$toolEncStoreDir"
|
|
exe cd "$toolCredentialDir"
|
|
step run
|
|
[ -e ./store ] && exe mv store "$toolEncStoreDir"
|
|
|
|
echoseq " [I] use \"$SEQ_NAME run --verify\" to verify against an existing session (like Element)"
|
|
}
|
|
|
|
step_60_alias() { ALIAS="notes"; }
|
|
step_60() {
|
|
outColor green
|
|
cat <<NOTES_EOF
|
|
# Verify matrix-commander "device"
|
|
|
|
For emoji verification to work, the matrix-commander user needs to be at least in one room.
|
|
Enter the room on Element and goto
|
|
|
|
* Room Info -> People -> select matrix commander user -> Security -> sessions -> matrix-commander session
|
|
* verify with emojis
|
|
|
|
## Credential information location
|
|
|
|
matrix-commander expects the following files to be in place for the user to be able to
|
|
send/receive messages
|
|
|
|
credentials.json - $MACO_BASE_DIR/.config/matrix-commander/credentials.json
|
|
store - $MACO_BASE_DIR/.local/share/matrix-commander/store
|
|
|
|
NOTES_EOF
|
|
}
|
|
|
|
VERSION_SEQREV=15
|
|
. /usr/local/bin/sequencer.sh
|