Files
hassio-addons/immich/rootfs/etc/cont-init.d/20-folders.sh
2025-08-19 08:26:50 +02:00

106 lines
3.7 KiB
Bash
Executable File

#!/usr/bin/with-contenv bashio
# shellcheck shell=bash
set -e
######################
# GENERAL PARAMETERS #
######################
if bashio::config.has_value "PUID"; then
PUID="$(bashio::config 'PUID')"
else
PUID=0
fi
if bashio::config.has_value "PGID"; then
PGID="$(bashio::config 'PGID')"
else
PGID=0
fi
##########################
# MIGRATIONS AND UPDATES #
##########################
# Clean typesense
if [ -d /data/typesense ]; then
rm -r /data/typesense
fi
#################
# DATA_LOCATION #
#################
bashio::log.info "Setting data location"
DATA_LOCATION="$(bashio::config 'data_location')"
export IMMICH_MEDIA_LOCATION="$DATA_LOCATION"
if [ -d /var/run/s6/container_environment ]; then
printf "%s" "$DATA_LOCATION" > /var/run/s6/container_environment/IMMICH_MEDIA_LOCATION
fi
printf "%s\n" "IMMICH_MEDIA_LOCATION=\"$DATA_LOCATION\"" >> ~/.bashrc
echo "... check $DATA_LOCATION folder exists"
mkdir -p "$DATA_LOCATION"
echo "... correcting official script"
# shellcheck disable=SC2013
for file in $(grep -sril '/photos' /etc); do sed -i "s|/photos|$DATA_LOCATION|g" "$file"; done
if [ -f /photos ]; then rm -r /photos; fi
ln -sf "$DATA_LOCATION" /photos
mkdir -p "$MACHINE_LEARNING_CACHE_FOLDER"
mkdir -p "$REVERSE_GEOCODING_DUMP_DIRECTORY"
if ! bashio::config.true "skip_permissions_check" && [ "${PUID:-0}" != "0" ] && [ "${PGID:-0}" != "0" ]; then
echo "... setting permissions, this might take a long time. If it takes too long at each boot, you could instead activate skip_permissions_check in the addon options"
echo "..... $DATA_LOCATION"
chmod -R 755 "$DATA_LOCATION"
chown -R "$PUID:$PGID" "$DATA_LOCATION"
echo "..... /photos"
chown "$PUID:$PGID" /photos
echo "..... $MACHINE_LEARNING_CACHE_FOLDER"
chown -R "$PUID:$PGID" "$MACHINE_LEARNING_CACHE_FOLDER"
echo "..... $REVERSE_GEOCODING_DUMP_DIRECTORY"
chown -R "$PUID:$PGID" "$REVERSE_GEOCODING_DUMP_DIRECTORY"
echo "..... /data"
chown -R "$PUID:$PGID" /data
elif bashio::config.true "skip_permissions_check"; then
bashio::log.warning "... skipping permissions check as 'skip_permissions_check' is set"
fi
chmod 755 /data
####################
# LIBRARY LOCATION #
####################
if bashio::config.has_value "library_location"; then
LIBRARY_LOCATION="$(bashio::config 'library_location')"
bashio::log.info "Setting library location to $LIBRARY_LOCATION. This will not move any of your files, you'll need to do this manually"
mkdir -p "$LIBRARY_LOCATION"
chown -R "$PUID":"$PGID" "$LIBRARY_LOCATION"
# Check if the existing library is a directory and not a symlink and has contents
if [ -d "$DATA_LOCATION/library" ] && [ ! -L "$DATA_LOCATION/library" ] && [ "$(ls -A "$DATA_LOCATION/library")" ]; then
bashio::log.yellow "-------------------------------"
bashio::log.warning "Library folder in $DATA_LOCATION/library already exists, is a real folder, and is not empty. Moving to $DATA_LOCATION/library_old"
bashio::log.yellow "-------------------------------"
mv "$DATA_LOCATION/library" "$DATA_LOCATION/library_old"
sleep 5
fi
# Create symbolic link only if it doesn't already exist or is incorrect
if [ ! -L "$DATA_LOCATION/library" ] || [ "$(readlink -f "$DATA_LOCATION/library")" != "$LIBRARY_LOCATION" ]; then
ln -sf "$LIBRARY_LOCATION" "$DATA_LOCATION/library"
fi
fi
##################
# REDIS LOCATION #
##################
echo "sed -i \"s=/config/redis=/data/redis=g\" /etc/s6*/s6*/*/run" >> /docker-mods
echo "sed -i \"s=/config/log/redis=/data/log=g\" /etc/s6*/s6*/*/run" >> /docker-mods
mkdir -p /data/redis
mkdir -p /data/log
chmod 755 /data/redis
chmod 755 /data/log