2020-03-25 22:10:19 +01:00
|
|
|
#!/bin/bash
|
2020-03-25 22:28:22 +01:00
|
|
|
set -euo pipefail
|
|
|
|
|
|
|
|
cd "$(dirname "$0")"
|
2020-03-26 17:55:40 +01:00
|
|
|
|
|
|
|
check_remote() {
|
|
|
|
if [[ $MATTERMOST_REMOTE == */ ]]; then
|
|
|
|
echo "MATTERMOST_REMOTE should not end with a slash (it should only the protocol and the domain; no path)" >&2
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
if [[ ! -f config ]]; then
|
|
|
|
read -p 'Server URL (e.g. `https://mattermost.example.com`): ' MATTERMOST_REMOTE
|
|
|
|
check_remote
|
|
|
|
echo "MATTERMOST_REMOTE='$MATTERMOST_REMOTE'" > config
|
|
|
|
echo 'You can change this later by editing the file `config`.'
|
2020-03-25 22:10:19 +01:00
|
|
|
fi
|
2020-03-26 17:55:40 +01:00
|
|
|
source "config"
|
|
|
|
check_remote
|
2020-03-25 22:10:19 +01:00
|
|
|
|
2020-03-25 22:28:22 +01:00
|
|
|
server_pid=0
|
|
|
|
finish() {
|
|
|
|
if [[ $server_pid -gt 1 ]]; then kill "$server_pid" || true; server_pid=0; fi
|
|
|
|
}
|
|
|
|
trap finish EXIT
|
2020-03-25 22:10:19 +01:00
|
|
|
|
|
|
|
python3 -m "http.server" >/dev/null 2>&1 &
|
2020-03-25 22:28:22 +01:00
|
|
|
server_pid=$!
|
2020-03-25 22:10:19 +01:00
|
|
|
mitmproxy -s etc/mitm_cors.py -m "reverse:$MATTERMOST_REMOTE"
|