-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add incrementation migration logic (#4)
- Loading branch information
Showing
18 changed files
with
235 additions
and
61 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
138 changes: 138 additions & 0 deletions
138
build/scripts/migration/script.d/02-migrate-user-service.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,138 @@ | ||
#!/bin/bash | ||
|
||
set -e | ||
|
||
# functions | ||
__is_version_gt() { | ||
test "$(echo "$@" | tr " " "\n" | sort -V | head -n 1)" != "$1" | ||
} | ||
|
||
__is_migration_needed() { | ||
local version1 | ||
local version2 | ||
|
||
version1="${1}" | ||
version2="${2}" | ||
|
||
if [ "${version1}" = "${version2}" ]; then | ||
return 1 | ||
fi | ||
|
||
if [ "CURRENT_VERSION_NOT_FOUND" = "${version1}" ]; then | ||
return 1 | ||
fi | ||
|
||
if [ "LEGACY_WITHOUT_VERSION" = "${version1}" ]; then | ||
return 0 | ||
fi | ||
|
||
__is_version_gt "${version2}" "${version1}" | ||
} | ||
|
||
BUILD_PATH=$(dirname "${BASH_SOURCE[0]}")/../../.. | ||
SOURCE_ROOT=${BUILD_PATH}/sysroot | ||
|
||
APP_NAME="casaos-user-service" | ||
APP_NAME_FORMAL="CasaOS-UserService" | ||
APP_NAME_SHORT="user-service" | ||
APP_NAME_LEGACY="casaos" | ||
|
||
# check if migration is needed | ||
SOURCE_BIN_PATH=${SOURCE_ROOT}/usr/bin | ||
SOURCE_BIN_FILE=${SOURCE_BIN_PATH}/${APP_NAME} | ||
|
||
CURRENT_BIN_PATH=/usr/bin | ||
CURRENT_BIN_PATH_LEGACY=/usr/local/bin | ||
CURRENT_BIN_FILE=${CURRENT_BIN_PATH}/${APP_NAME} | ||
CURRENT_BIN_FILE_LEGACY=$(realpath -e ${CURRENT_BIN_PATH}/${APP_NAME_LEGACY} || realpath -e ${CURRENT_BIN_PATH_LEGACY}/${APP_NAME_LEGACY} || which ${APP_NAME_LEGACY} || echo CURRENT_BIN_FILE_LEGACY_NOT_FOUND) | ||
|
||
SOURCE_VERSION="$(${SOURCE_BIN_FILE} -v)" | ||
CURRENT_VERSION="$(${CURRENT_BIN_FILE} -v || ${CURRENT_BIN_FILE_LEGACY} -v || (stat "${CURRENT_BIN_FILE_LEGACY}" > /dev/null && echo LEGACY_WITHOUT_VERSION) || echo CURRENT_VERSION_NOT_FOUND)" | ||
|
||
echo "CURRENT_VERSION: ${CURRENT_VERSION}" | ||
echo "SOURCE_VERSION: ${SOURCE_VERSION}" | ||
|
||
NEED_MIGRATION=$(__is_migration_needed "${CURRENT_VERSION}" "${SOURCE_VERSION}" && echo "true" || echo "false") | ||
|
||
if [ "${NEED_MIGRATION}" = "false" ]; then | ||
echo "✅ Migration is not needed." | ||
exit 0 | ||
fi | ||
|
||
MIGRATION_SERVICE_DIR=${BUILD_PATH}/scripts/migration/service.d/${APP_NAME_SHORT} | ||
MIGRATION_LIST_FILE=${MIGRATION_SERVICE_DIR}/migration.list | ||
MIGRATION_PATH=() | ||
|
||
CURRENT_VERSION_FOUND="false" | ||
|
||
while read -r VERSION_PAIR; do | ||
if [ -z "${VERSION_PAIR}" ]; then | ||
continue | ||
fi | ||
|
||
VER1=$(echo "${VERSION_PAIR}" | cut -d' ' -f1) | ||
VER2=$(echo "${VERSION_PAIR}" | cut -d' ' -f2) | ||
|
||
if [ "v${CURRENT_VERSION}" = "${VER1// /}" ]; then | ||
CURRENT_VERSION_FOUND="true" | ||
fi | ||
|
||
if [ "${CURRENT_VERSION_FOUND}" = "true" ]; then | ||
MIGRATION_PATH+=("${VER2// /}") | ||
fi | ||
done < "${MIGRATION_LIST_FILE}" | ||
|
||
if [ ${#MIGRATION_PATH[@]} -eq 0 ]; then | ||
echo "🟨 No migration path found from ${CURRENT_VERSION} to ${SOURCE_VERSION}" | ||
exit 0 | ||
fi | ||
|
||
ARCH="unknown" | ||
|
||
case $(uname -m) in | ||
x86_64) | ||
ARCH="amd64" | ||
;; | ||
aarch64) | ||
ARCH="arm64" | ||
;; | ||
armv7l) | ||
ARCH="arm-7" | ||
;; | ||
*) | ||
echo "Unsupported architecture" | ||
exit 1 | ||
;; | ||
esac | ||
|
||
pushd "${MIGRATION_SERVICE_DIR}" | ||
|
||
{ | ||
for VER2 in "${MIGRATION_PATH[@]}"; do | ||
MIGRATION_TOOL_URL=https://github.com/IceWhaleTech/"${APP_NAME_FORMAL}"/releases/download/"${VER2}"/linux-"${ARCH}"-"${APP_NAME}"-migration-tool-"${VER2}".tar.gz | ||
echo "Dowloading ${MIGRATION_TOOL_URL}..." | ||
curl -sL -O "${MIGRATION_TOOL_URL}" | ||
done | ||
} || { | ||
echo "🟥 Failed to download migration tools" | ||
popd | ||
exit 1 | ||
} | ||
|
||
{ | ||
for VER2 in "${MIGRATION_PATH[@]}"; do | ||
MIGRATION_TOOL_FILE=linux-"${ARCH}"-"${APP_NAME}"-migration-tool-"${VER2}".tar.gz | ||
echo "Extracting ${MIGRATION_TOOL_FILE}..." | ||
tar zxvf "${MIGRATION_TOOL_FILE}" | ||
|
||
MIGRATION_TOOL_PATH=build/sysroot/usr/bin/${APP_NAME}-migration-tool | ||
echo "Running ${MIGRATION_TOOL_PATH}..." | ||
${MIGRATION_TOOL_PATH} | ||
done | ||
} || { | ||
echo "🟥 Failed to extract and run migration tools" | ||
popd | ||
exit 1 | ||
} | ||
|
||
popd |
2 changes: 2 additions & 0 deletions
2
build/scripts/migration/service.d/user-service/migration.list
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
LEGACY_WITHOUT_VERSION v0.3.6-alpha1 | ||
v0.3.5 v0.3.6-alpha1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
#!/bin/bash | ||
|
||
set -e | ||
|
||
BUILD_PATH=$(dirname "${BASH_SOURCE[0]}")/../../.. | ||
|
||
APP_NAME_SHORT=user-service | ||
|
||
__get_setup_script_directory_by_os_release() { | ||
pushd "$(dirname "${BASH_SOURCE[0]}")/../service.d/${APP_NAME_SHORT}" >/dev/null | ||
|
||
{ | ||
# shellcheck source=/dev/null | ||
{ | ||
source /etc/os-release | ||
{ | ||
pushd "${ID}"/"${VERSION_CODENAME}" >/dev/null | ||
} || { | ||
pushd "${ID}" >/dev/null | ||
} || { | ||
pushd "${ID_LIKE}" >/dev/null | ||
} || { | ||
echo "Unsupported OS: ${ID} ${VERSION_CODENAME} (${ID_LIKE})" | ||
exit 1 | ||
} | ||
|
||
pwd | ||
|
||
popd >/dev/null | ||
|
||
} || { | ||
echo "Unsupported OS: unknown" | ||
exit 1 | ||
} | ||
|
||
} | ||
|
||
popd >/dev/null | ||
} | ||
|
||
SETUP_SCRIPT_DIRECTORY=$(__get_setup_script_directory_by_os_release) | ||
SETUP_SCRIPT_FILENAME="setup-${APP_NAME_SHORT}.sh" | ||
|
||
SETUP_SCRIPT_FILEPATH="${SETUP_SCRIPT_DIRECTORY}/${SETUP_SCRIPT_FILENAME}" | ||
|
||
{ | ||
echo "🟩 Running ${SETUP_SCRIPT_FILENAME}..." | ||
$SHELL "${SETUP_SCRIPT_FILEPATH}" "${BUILD_PATH}" | ||
} || { | ||
echo "🟥 ${SETUP_SCRIPT_FILENAME} failed." | ||
exit 1 | ||
} | ||
|
||
echo "✅ ${SETUP_SCRIPT_FILENAME} finished." |
File renamed without changes.
25 changes: 25 additions & 0 deletions
25
build/scripts/setup/service.d/user-service/debian/setup-user-service.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
#!/bin/bash | ||
|
||
set -e | ||
|
||
APP_NAME="casaos-user-service" | ||
APP_NAME_SHORT="user-service" | ||
|
||
# copy config files | ||
CONF_PATH=/etc/casaos | ||
CONF_FILE=${CONF_PATH}/${APP_NAME_SHORT}.conf | ||
CONF_FILE_SAMPLE=${CONF_PATH}/${APP_NAME_SHORT}.conf.sample | ||
|
||
if [ ! -f "${CONF_FILE}" ]; then \ | ||
echo "Initializing config file..." | ||
cp -v "${CONF_FILE_SAMPLE}" "${CONF_FILE}"; \ | ||
fi | ||
|
||
# enable and start service | ||
systemctl daemon-reload | ||
|
||
echo "Enabling service..." | ||
systemctl enable --force --no-ask-password "${APP_NAME}.service" | ||
|
||
echo "Starting service..." | ||
systemctl start --force --no-ask-password "${APP_NAME}.service" |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
9 changes: 0 additions & 9 deletions
9
build/usr/share/casaos/migration/script.d/01-migrate-user-service.sh
This file was deleted.
Oops, something went wrong.
Empty file.
1 change: 0 additions & 1 deletion
1
build/usr/share/casaos/migration/service.d/user-service/from-0.3.4.sh
This file was deleted.
Oops, something went wrong.
Empty file.
4 changes: 0 additions & 4 deletions
4
build/usr/share/casaos/setup/script.d/01-setup-user-service.sh
This file was deleted.
Oops, something went wrong.
Empty file removed
0
build/usr/share/casaos/setup/service.d/user-service/debian/setup-user-service.sh
Empty file.