mirror of
https://github.com/seriyps/mtproto_proxy.git
synced 2026-05-13 08:46:46 +00:00
99 lines
3.2 KiB
Bash
Executable file
99 lines
3.2 KiB
Bash
Executable file
#!/bin/sh
|
|
# Script that helps to overwrite port/secret/ad tag from command line without changing config-files
|
|
|
|
CMD="/opt/mtp_proxy/bin/mtp_proxy foreground"
|
|
# CMD="/opt/mtp_proxy/bin/mtp_proxy console"
|
|
THIS=$0
|
|
|
|
usage() {
|
|
echo "Usage:"
|
|
echo "To run with settings from config/prod-sys.config:"
|
|
echo "${THIS}"
|
|
echo "To start in single-port mode configured from command-line:"
|
|
echo "${THIS} -p <port> -s <secret> -t <ad tag>"
|
|
echo "To only allow connections with randomized protocol (dd-secrets):"
|
|
echo "${THIS} -a dd"
|
|
echo "Parameters:"
|
|
echo "-p <port>: port to listen on. 1-65535"
|
|
echo "-s <secret>: proxy secret. 32 hex characters 0-9 a-f"
|
|
echo "-t <ad tag>: promo tag that you get from @MTProxybot. 32 hex characters"
|
|
echo "-a dd: only allow 'secure' connections (with dd-secret) / fake-tls connections (base64 secrets)"
|
|
echo "-a tls: only allow 'fake-tls' connections (base64 secrets)"
|
|
echo "It's ok to provide both '-a dd -a tls'."
|
|
echo "port, secret, tag and allowed protocols can also be configured via environment variables:"
|
|
echo "MTP_PORT, MTP_SECRET, MTP_TAG, MTP_DD_ONLY, MTP_TLS_ONLY"
|
|
echo "If both command line and environment are set, command line have higher priority."
|
|
}
|
|
|
|
error() {
|
|
echo "ERROR: ${1}"
|
|
usage
|
|
exit 1
|
|
}
|
|
|
|
# check environment variables
|
|
PORT=${MTP_PORT:-""}
|
|
SECRET=${MTP_SECRET:-""}
|
|
TAG=${MTP_TAG:-""}
|
|
DD_ONLY=${MTP_DD_ONLY:-""}
|
|
TLS_ONLY=${MTP_TLS_ONLY:-""}
|
|
|
|
# check command line options
|
|
while getopts "p:s:t:a:dh" o; do
|
|
case "${o}" in
|
|
p)
|
|
PORT=${OPTARG}
|
|
;;
|
|
s)
|
|
SECRET=${OPTARG}
|
|
;;
|
|
t)
|
|
TAG=${OPTARG}
|
|
;;
|
|
a)
|
|
if [ "${OPTARG}" = "dd" ]; then
|
|
DD_ONLY="y"
|
|
elif [ "${OPTARG}" = "tls" ]; then
|
|
TLS_ONLY="y"
|
|
else
|
|
error "Invalid -a value: '${OPTARG}'"
|
|
fi
|
|
;;
|
|
d)
|
|
echo "Warning: -d is deprecated! use '-a dd' instead"
|
|
DD_ONLY="y"
|
|
;;
|
|
h)
|
|
usage
|
|
exit 0
|
|
esac
|
|
done
|
|
|
|
PROTO_ARG=""
|
|
|
|
if [ -n "${DD_ONLY}" -a -n "${TLS_ONLY}" ]; then
|
|
PROTO_ARG='-mtproto_proxy allowed_protocols [mtp_fake_tls,mtp_secure]'
|
|
elif [ -n "${DD_ONLY}" ]; then
|
|
PROTO_ARG='-mtproto_proxy allowed_protocols [mtp_secure]'
|
|
elif [ -n "${TLS_ONLY}" ]; then
|
|
PROTO_ARG='-mtproto_proxy allowed_protocols [mtp_fake_tls]'
|
|
fi
|
|
|
|
# if at least one option is set...
|
|
if [ -n "${PORT}" -o -n "${SECRET}" -o -n "${TAG}" ]; then
|
|
# If at least one of them not set...
|
|
[ -z "${PORT}" -o -z "${SECRET}" -o -z "${TAG}" ] && \
|
|
error "Not enough options: -p '${PORT}' -s '${SECRET}' -t '${TAG}'"
|
|
|
|
# validate format
|
|
[ ${PORT} -gt 0 -a ${PORT} -lt 65535 ] || \
|
|
error "Invalid port value: ${PORT}"
|
|
[ -n "`echo $SECRET | grep -x '[[:xdigit:]]\{32\}'`" ] || \
|
|
error "Invalid secret. Should be 32 chars of 0-9 a-f"
|
|
[ -n "`echo $TAG | grep -x '[[:xdigit:]]\{32\}'`" ] || \
|
|
error "Invalid tag. Should be 32 chars of 0-9 a-f"
|
|
|
|
exec $CMD $PROTO_ARG -mtproto_proxy ports "[#{name => mtproto_proxy, port => $PORT, secret => <<\"$SECRET\">>, tag => <<\"$TAG\">>}]"
|
|
else
|
|
exec $CMD $PROTO_ARG
|
|
fi
|