2018-04-08 20:49:07 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2019-08-25 16:44:49 +00:00
|
|
|
set -Eeo pipefail
|
2018-04-08 20:49:07 +00:00
|
|
|
|
2018-12-28 00:51:44 +00:00
|
|
|
#########################################################
|
|
|
|
# Globals #
|
|
|
|
#########################################################
|
2018-04-08 20:49:07 +00:00
|
|
|
|
2018-12-30 13:33:42 +00:00
|
|
|
readonly GITLAB_URI="https://git.pleroma.social"
|
|
|
|
readonly PREFIX_API="api/v4/projects/pleroma%2Fpleroma/repository"
|
2019-01-10 17:24:29 +00:00
|
|
|
readonly ENDPOINT_REPO="pleroma/pleroma.git"
|
2018-12-30 13:33:42 +00:00
|
|
|
readonly ENDPOINT_FILE="pleroma/pleroma/raw"
|
|
|
|
readonly ENDPOINT_LIST="pleroma/pleroma/files"
|
|
|
|
readonly ENDPOINT_TAG="$PREFIX_API/tags"
|
|
|
|
readonly ENDPOINT_BLOB="$PREFIX_API/blobs"
|
|
|
|
readonly ENDPOINT_BRANCH="$PREFIX_API/branches"
|
|
|
|
|
2018-12-28 00:51:44 +00:00
|
|
|
#########################################################
|
|
|
|
# Helpers #
|
|
|
|
#########################################################
|
|
|
|
|
2018-12-30 13:31:32 +00:00
|
|
|
has_command() {
|
|
|
|
if command -v 1>/dev/null 2>&1 "$1"; then
|
|
|
|
return 0
|
|
|
|
else
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
require_command() {
|
|
|
|
if ! has_command "$1"; then
|
|
|
|
printf "\nError: This action requires the command '%s' in your PATH.\n" "$1"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
}
|
2018-12-30 13:33:42 +00:00
|
|
|
|
2019-01-09 20:23:53 +00:00
|
|
|
require_file() {
|
|
|
|
if [[ ! -f $1 ]]; then
|
|
|
|
echo "File missing: '$1' (Example at: '$2')"
|
|
|
|
FILE_FAILED=1
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
throw_file_errors() {
|
|
|
|
if [[ -n "$FILE_FAILED" ]]; then
|
|
|
|
echo ""
|
|
|
|
echo "Please create the missing files first."
|
|
|
|
echo "The script will now exit."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2018-06-03 22:11:12 +00:00
|
|
|
docker_compose() {
|
2018-12-30 13:33:42 +00:00
|
|
|
require_command docker-compose
|
2019-08-25 16:44:49 +00:00
|
|
|
docker-compose "$@"
|
2018-04-08 20:49:07 +00:00
|
|
|
}
|
|
|
|
|
2018-12-30 13:31:32 +00:00
|
|
|
download_file() { # $1: source, $2: target
|
|
|
|
if has_command curl; then
|
|
|
|
curl -sSL "$1" -o "$2"
|
|
|
|
elif has_command wget; then
|
|
|
|
wget "$1" -O "$2"
|
|
|
|
else
|
|
|
|
printf "\nError: This action requires either curl or wget in your PATH.\n"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
request_file_content() { # $1: source
|
|
|
|
if has_command curl; then
|
|
|
|
curl -sSL "$1"
|
|
|
|
elif has_command wget; then
|
|
|
|
wget "$1" -O- 2>/dev/null
|
|
|
|
else
|
|
|
|
printf "\nError: This action requires either curl or wget in your PATH.\n"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
}
|
2018-12-30 13:33:42 +00:00
|
|
|
|
2019-08-25 21:29:34 +00:00
|
|
|
builds_args=""
|
2019-08-25 16:44:49 +00:00
|
|
|
load_env() {
|
|
|
|
while read -r line; do
|
|
|
|
if [[ "$line" == \#* ]] || [[ -z "$line" ]]; then
|
|
|
|
continue;
|
|
|
|
fi
|
|
|
|
|
2019-08-25 21:29:34 +00:00
|
|
|
builds_args="${builds_args} --build-arg ${line?}"
|
2019-08-25 16:44:49 +00:00
|
|
|
export "${line?}"
|
|
|
|
done < .env
|
|
|
|
}
|
|
|
|
|
2018-12-28 00:51:44 +00:00
|
|
|
#########################################################
|
|
|
|
# Subcommands #
|
|
|
|
#########################################################
|
|
|
|
|
|
|
|
action__build() {
|
2019-01-10 17:24:29 +00:00
|
|
|
local cacheTag=""
|
|
|
|
|
|
|
|
# Alternative 1: Get tags or branches from git (if installed)
|
2019-04-11 22:56:10 +00:00
|
|
|
if [[ -z "$cacheTag" ]] && has_command git && has_command grep && has_command awk; then
|
2019-01-10 17:24:29 +00:00
|
|
|
set +o pipefail
|
|
|
|
local resolvedHash
|
2019-08-25 21:29:34 +00:00
|
|
|
resolvedHash="$(git ls-remote $PLEROMA_GIT_REPO | grep "/$PLEROMA_VERSION" | awk '{ print $1 }')"
|
2019-01-10 17:24:29 +00:00
|
|
|
set -o pipefail
|
|
|
|
|
|
|
|
if [[ -n "$resolvedHash" ]]; then
|
|
|
|
cacheTag="$resolvedHash"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2019-04-11 22:56:10 +00:00
|
|
|
# Alternative 2: Current time
|
2019-01-10 17:24:29 +00:00
|
|
|
if [[ -z "$cacheTag" ]] && has_command date; then
|
2019-04-11 22:56:10 +00:00
|
|
|
echo ""
|
|
|
|
echo "WARNING WARNING WARNING"
|
|
|
|
echo ""
|
|
|
|
echo "You don't have git installed, so we cannot know if the cache is up to date."
|
|
|
|
echo "We'll use the current unix timestamp as a replacement value,"
|
|
|
|
echo "but this means that your cache is always 'stale' and docker wastes your time."
|
|
|
|
echo ""
|
|
|
|
echo "WARNING WARNING WARNING"
|
|
|
|
echo ""
|
|
|
|
echo "Waiting 5 seconds to make sure you notice this..."
|
|
|
|
sleep 5
|
|
|
|
|
2019-01-10 17:24:29 +00:00
|
|
|
cacheTag="$(date '+%s')"
|
|
|
|
fi
|
|
|
|
|
2019-08-25 16:44:49 +00:00
|
|
|
# Alternative 3: Random number with shell
|
2019-04-11 22:56:10 +00:00
|
|
|
if [[ -z "$cacheTag" ]] && [[ -n "$RANDOM" ]]; then
|
|
|
|
echo ""
|
|
|
|
echo "WARNING WARNING WARNING"
|
|
|
|
echo ""
|
|
|
|
echo "You don't have git installed, so we cannot know if the cache is up to date."
|
|
|
|
echo "Additionally you don't have \`date\` available. (What kind of pc is this?!)"
|
|
|
|
echo "This means we cannot set any unique value as cache tag."
|
|
|
|
echo ""
|
|
|
|
echo "We'll generate a random number to try and mark the cache as 'always stale'."
|
|
|
|
echo "Hoewever: Depending on your shell this might not always work, or only work a few times."
|
|
|
|
echo ""
|
|
|
|
echo "You should *really* get this fixed unless you know what you're doing."
|
|
|
|
echo ""
|
|
|
|
echo "WARNING WARNING WARNING"
|
|
|
|
echo ""
|
|
|
|
echo "Waiting 5 seconds to make sure you notice this..."
|
|
|
|
sleep 5
|
|
|
|
|
|
|
|
cacheTag="$RANDOM"
|
2019-01-10 17:24:29 +00:00
|
|
|
fi
|
|
|
|
|
2019-04-11 22:56:10 +00:00
|
|
|
# Last resort: Constant value
|
2019-01-10 17:24:29 +00:00
|
|
|
if [[ -z "$cacheTag" ]]; then
|
|
|
|
echo ""
|
2019-04-11 22:56:10 +00:00
|
|
|
echo "WARNING WARNING WARNING"
|
2019-01-10 17:24:29 +00:00
|
|
|
echo ""
|
2019-04-11 22:56:10 +00:00
|
|
|
echo "You don't have git installed, so we cannot know if the cache is up to date."
|
|
|
|
echo "Additionally you don't have \`date\` available, and your shell refuses to generate random numbers."
|
|
|
|
echo "This means we cannot set any unique or random value as cache tag."
|
|
|
|
echo "Consequently your cache will always be 'fresh' and you never get updates."
|
|
|
|
echo ""
|
|
|
|
echo "You can work around this by running \`docker system prune\` to throw away the build cache,"
|
|
|
|
echo "but you should *really* get this fixed unless you know what you're doing."
|
|
|
|
echo ""
|
|
|
|
echo "WARNING WARNING WARNING"
|
|
|
|
echo ""
|
|
|
|
echo "Waiting 5 seconds to make sure you notice this..."
|
|
|
|
sleep 5
|
2019-01-10 17:24:29 +00:00
|
|
|
|
|
|
|
cacheTag="broken-host-env"
|
|
|
|
fi
|
|
|
|
|
2019-08-25 16:44:49 +00:00
|
|
|
echo -e "#> (Re-)Building pleroma @$PLEROMA_VERSION with cache tag \`${cacheTag}\`...\n"
|
|
|
|
sleep 1
|
2018-12-28 00:51:44 +00:00
|
|
|
|
2019-08-25 21:29:34 +00:00
|
|
|
docker_compose build \
|
|
|
|
$builds_args \
|
|
|
|
--build-arg __VIA_SCRIPT=1 \
|
|
|
|
--build-arg __CACHE_TAG="$cacheTag" \
|
|
|
|
server
|
2018-12-28 00:51:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
action__enter() {
|
2019-08-25 22:02:45 +00:00
|
|
|
docker_compose exec server sh -c 'cd ~/pleroma && ash'
|
2018-12-28 00:51:44 +00:00
|
|
|
}
|
2018-08-20 21:06:34 +00:00
|
|
|
|
2018-12-28 00:51:44 +00:00
|
|
|
action__logs() {
|
2018-12-30 13:33:42 +00:00
|
|
|
docker_compose logs "$@"
|
2018-12-28 00:51:44 +00:00
|
|
|
}
|
2018-08-20 21:06:34 +00:00
|
|
|
|
2018-12-28 00:51:44 +00:00
|
|
|
action__mix() {
|
2018-12-30 13:33:42 +00:00
|
|
|
docker_compose exec server sh -c "cd ~/pleroma && mix $*"
|
2018-12-28 00:51:44 +00:00
|
|
|
}
|
2018-08-20 21:06:34 +00:00
|
|
|
|
2018-12-28 00:51:44 +00:00
|
|
|
action__restart() {
|
|
|
|
action__stop
|
|
|
|
action__start
|
|
|
|
}
|
|
|
|
|
|
|
|
action__start() {
|
2020-09-04 21:18:07 +00:00
|
|
|
if [[ ! -d ./data/uploads ]] || [[ ! -d ./emoji ]]; then
|
|
|
|
if [[ "$(id -u)" != "$DOCKER_UID" ]]; then
|
|
|
|
echo "Please create the folders ./data/uploads and ./emoji, and chown them to $DOCKER_UID"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
mkdir -p ./data/uploads ./emoji
|
|
|
|
fi
|
|
|
|
|
2018-12-28 00:51:44 +00:00
|
|
|
docker_compose up --remove-orphans -d
|
|
|
|
}
|
|
|
|
|
|
|
|
action__up() {
|
|
|
|
action__start
|
|
|
|
}
|
|
|
|
|
|
|
|
action__stop() {
|
|
|
|
docker_compose down
|
|
|
|
}
|
|
|
|
|
|
|
|
action__down() {
|
|
|
|
action__stop
|
|
|
|
}
|
|
|
|
|
|
|
|
action__status() {
|
|
|
|
docker_compose ps
|
|
|
|
}
|
|
|
|
|
|
|
|
action__ps() {
|
|
|
|
action__status
|
|
|
|
}
|
2018-08-20 21:06:34 +00:00
|
|
|
|
|
|
|
action__mod() {
|
2018-12-30 13:33:42 +00:00
|
|
|
require_command dialog
|
|
|
|
require_command jq
|
|
|
|
require_command curl
|
|
|
|
|
|
|
|
if [[ ! -d ./debug.d ]]; then
|
|
|
|
mkdir ./debug.d
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [[ ! -f ./debug.d/mod_files.json ]] || [[ -n "$(find ./debug.d/mod_files.json -mmin +5)" ]]; then
|
|
|
|
curl -sSL -# "$GITLAB_URI/$ENDPOINT_LIST/$PLEROMA_VERSION?format=json" > ./debug.d/mod_files.json
|
|
|
|
|
|
|
|
if [[ -f ./debug.d/mod_files.lst ]]; then
|
|
|
|
rm ./debug.d/mod_files.lst
|
|
|
|
fi
|
|
|
|
|
|
|
|
jq -r 'map("\(.)\n") | add' <./debug.d/mod_files.json >./debug.d/mod_files.lst
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [[ -f ./debug.d/mod_files.lst ]] && [[ -r ./debug.d/mod_files.lst ]]; then
|
|
|
|
choices=""
|
|
|
|
|
|
|
|
while read -r candidate; do
|
|
|
|
choices="$choices $candidate $(echo "$candidate" | rev | cut -d/ -f1 | rev)"
|
|
|
|
done <<< "$(grep -E ".*$1.*" <./debug.d/mod_files.lst)"
|
|
|
|
|
|
|
|
res=$(mktemp)
|
|
|
|
dialog --menu "Select the file you want to modify:" 35 80 30 $choices 2>"$res"
|
|
|
|
choice=$(cat "$res")
|
|
|
|
|
|
|
|
install -D <(echo '') "./custom.d/$choice"
|
|
|
|
curl -sSL -# "$GITLAB_URI/$ENDPOINT_FILE/$PLEROMA_VERSION/$choice" > "./custom.d/$choice"
|
|
|
|
else
|
|
|
|
install -D <(echo '') "./custom.d/$1"
|
|
|
|
curl -sSL -# "$GITLAB_URI/$ENDPOINT_FILE/$PLEROMA_VERSION/$1" > "./custom.d/$1"
|
|
|
|
fi
|
2018-08-18 21:20:44 +00:00
|
|
|
}
|
|
|
|
|
2019-01-20 01:13:51 +00:00
|
|
|
action__cp() {
|
|
|
|
container="$(docker_compose ps -q server)"
|
|
|
|
|
|
|
|
echo "$container:$1 -> $2"
|
|
|
|
docker cp "$container:$1" "$2"
|
|
|
|
}
|
|
|
|
|
2018-12-28 00:51:44 +00:00
|
|
|
#########################################################
|
|
|
|
# Help #
|
|
|
|
#########################################################
|
|
|
|
|
|
|
|
print_help() {
|
|
|
|
echo "
|
|
|
|
Pleroma Maintenance Script
|
|
|
|
|
|
|
|
Usage:
|
2019-01-09 20:23:53 +00:00
|
|
|
$0 [action] [action-args...]
|
2018-12-28 00:51:44 +00:00
|
|
|
|
|
|
|
Actions:
|
2019-01-20 01:13:51 +00:00
|
|
|
build (Re)build the pleroma container.
|
|
|
|
|
|
|
|
enter Spawn a shell inside the container for debugging/maintenance.
|
2018-12-28 00:51:44 +00:00
|
|
|
|
2019-01-20 01:13:51 +00:00
|
|
|
logs Show the current container logs.
|
2018-12-28 00:51:44 +00:00
|
|
|
|
2019-01-20 01:13:51 +00:00
|
|
|
mix [task] [args...] Run a mix task without entering the container.
|
2018-12-28 00:51:44 +00:00
|
|
|
|
2019-01-20 01:13:51 +00:00
|
|
|
mod [file] Creates the file in custom.d and downloads the content from pleroma.social.
|
|
|
|
The download respects your \$PLEROMA_VERSION from .env.
|
2018-12-28 00:51:44 +00:00
|
|
|
|
2019-01-20 01:13:51 +00:00
|
|
|
restart Executes #stop and #start respectively.
|
2018-12-28 00:51:44 +00:00
|
|
|
|
2019-01-20 01:13:51 +00:00
|
|
|
start / up Start pleroma and sibling services.
|
2018-12-28 00:51:44 +00:00
|
|
|
|
2019-01-20 01:13:51 +00:00
|
|
|
stop / down Stop pleroma and sibling services.
|
2018-12-28 00:51:44 +00:00
|
|
|
|
2019-01-20 01:13:51 +00:00
|
|
|
status / ps Show the current container status.
|
2018-12-28 00:51:44 +00:00
|
|
|
|
2019-01-20 01:13:51 +00:00
|
|
|
copy / cp [source] [target] Copy a file from your pc to the pleroma container.
|
|
|
|
This operation only works in one direction.
|
|
|
|
For making permanent changes to the container use custom.d.
|
2018-12-28 00:51:44 +00:00
|
|
|
|
2019-08-25 16:44:49 +00:00
|
|
|
----------------------------
|
2018-12-28 00:51:44 +00:00
|
|
|
|
|
|
|
You can report bugs or contribute to this project at:
|
2020-05-03 14:52:01 +00:00
|
|
|
https://memleak.eu/sn0w/pleroma-docker
|
2018-12-28 00:51:44 +00:00
|
|
|
"
|
|
|
|
}
|
|
|
|
|
|
|
|
#########################################################
|
|
|
|
# Main #
|
|
|
|
#########################################################
|
|
|
|
|
2018-08-18 21:20:44 +00:00
|
|
|
# Check if there is any command at all
|
2018-04-08 20:49:07 +00:00
|
|
|
if [[ -z "$1" ]]; then
|
|
|
|
print_help
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2018-08-18 21:20:44 +00:00
|
|
|
# Check for SHOPTs
|
2018-12-30 13:33:42 +00:00
|
|
|
if [[ -n "$SHOPT" ]]; then
|
2018-08-18 21:20:44 +00:00
|
|
|
for opt in $SHOPT; do
|
|
|
|
if [[ $opt =~ ":" ]]; then
|
2018-12-30 13:33:42 +00:00
|
|
|
set -o "${opt//-o:/}"
|
2018-08-18 21:20:44 +00:00
|
|
|
else
|
2018-12-30 13:33:42 +00:00
|
|
|
set "$opt"
|
2018-08-18 21:20:44 +00:00
|
|
|
fi
|
|
|
|
done
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Check for DEBUG
|
2018-12-30 13:33:42 +00:00
|
|
|
if [[ -n "$DEBUG" ]]; then
|
2018-08-18 21:20:44 +00:00
|
|
|
if [[ $DEBUG == 1 ]]; then
|
|
|
|
export DEBUG_COMMANDS=1
|
|
|
|
elif [[ $DEBUG == 2 ]]; then
|
|
|
|
set -x
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2019-01-09 20:23:53 +00:00
|
|
|
# Check if the option is "help"
|
|
|
|
case "$1" in
|
|
|
|
"help"|"h"|"--help"|"-h"|"-?")
|
|
|
|
print_help
|
|
|
|
exit 0
|
|
|
|
;;
|
|
|
|
esac
|
2018-06-03 22:11:12 +00:00
|
|
|
|
2019-01-09 20:23:53 +00:00
|
|
|
# Check if the called command exists
|
2018-08-18 21:20:44 +00:00
|
|
|
func="action__${1}"
|
2019-01-09 20:23:53 +00:00
|
|
|
if ! type -t "$func" 1>/dev/null 2>&1; then
|
|
|
|
echo "Unknown flag or subcommand."
|
|
|
|
echo "Try '$0 help'"
|
2018-04-08 20:49:07 +00:00
|
|
|
exit 1
|
2018-06-03 22:11:12 +00:00
|
|
|
fi
|
2019-01-09 20:23:53 +00:00
|
|
|
|
|
|
|
# Fail if mandatory files are missing
|
|
|
|
require_file ".env" ".env.dist"
|
|
|
|
require_file "config.exs" "config.dist.exs"
|
|
|
|
throw_file_errors
|
|
|
|
|
|
|
|
# Parse .env
|
|
|
|
load_env
|
|
|
|
|
|
|
|
# Handle DEBUG=2
|
|
|
|
[[ $DEBUG != 1 ]] || set -x
|
|
|
|
|
|
|
|
# Jump to called function
|
|
|
|
shift
|
|
|
|
$func "$@"
|
|
|
|
|
|
|
|
# Disable debug mode
|
|
|
|
{ [[ $DEBUG != 1 ]] || set +x; } 2>/dev/null
|