* chore: Remove usage of `yq` in favor of `jq` * fix: Missed bracket in `default-flatpaks` * fix: `get_json_array` complaining about unpopulated arrays * fix(files): Forgot to input `-r` flag for some `jq` calls * fix(gschema-overrides): Use `try` in `get_json_array` * chore(default-flatpaks): Replace `yq` with `jq` in run-time setup binaries * chore: Switch to simplified `jq` syntax without brackets * chore(default-flatpaks): Switch `repo-info` file from `yml` to `json` * fix(default-flatpaks): Some `yq` calls * chore: Revert back to bracket syntax for more reliable `jq` parsing * chore(files): Missed bracket syntax * chore: Approve bot suggestion about quoting Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> * Update modules/files/files.sh Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> * fix(yafti): Populating custom flatpaks It's populated in reverse order compared to the format in recipe, but it works * fix(fonts): Variable substitution is needed * fix: Typo * fix(fonts): Forgot to assign FONTS variable --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
213 lines
9.9 KiB
Bash
Executable file
213 lines
9.9 KiB
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
# Check for available internet connection before proceeding (network-online.target doesn't work for some network connections)
|
|
# Check it 3 times in 2 second interval, to avoid until loop
|
|
# Used when adding remotes & when installing flatpaks
|
|
check_internet_connection() {
|
|
local max_attempts=3
|
|
local sleep_time=2
|
|
local attempt=1
|
|
|
|
while (( attempt <= max_attempts )); do
|
|
if curl --silent --head --fail "https://fedoraproject.org/static/hotspot.txt" > /dev/null; then
|
|
return 0
|
|
else
|
|
echo "Internet connection is not available. Waiting..."
|
|
sleep ${sleep_time}
|
|
(( attempt++ ))
|
|
fi
|
|
done
|
|
|
|
return 1
|
|
}
|
|
|
|
REPO_INFO="/usr/share/bluebuild/default-flatpaks/user/repo-info.json"
|
|
REPO_URL=$(jq -r 'try .["repo-url"]' $REPO_INFO)
|
|
REPO_NAME=$(jq -r 'try .["repo-name"]' $REPO_INFO)
|
|
REPO_TITLE=$(jq -r 'try .["repo-title"]' $REPO_INFO)
|
|
|
|
# Remove Fedora's flatpak user repos, if they exist
|
|
FLATPAK_USER_REMOTES=($(flatpak --user remotes))
|
|
|
|
fedora_user=false
|
|
fedora_testing_user=false
|
|
|
|
for user_remote in "${FLATPAK_USER_REMOTES[@]}"; do
|
|
if [[ "${user_remote}" == "fedora" ]]; then
|
|
fedora_user=true
|
|
elif [[ "${user_remote}" == "fedora-testing" ]]; then
|
|
fedora_testing_user=true
|
|
fi
|
|
done
|
|
|
|
# Remove fedora user remote, unless fedora remote is strictly specified
|
|
if [[ ! "${REPO_URL}" == "oci+https://registry.fedoraproject.org" ]]; then
|
|
if "${fedora_user}"; then
|
|
echo "Removing user flatpak remote 'fedora'"
|
|
flatpak remote-delete --user fedora --force
|
|
else
|
|
echo "User flatpak remote 'fedora' is already removed"
|
|
fi
|
|
else
|
|
echo "Not removing the user flatpak remote 'fedora', as it's specified for use in config"
|
|
fi
|
|
|
|
if "${fedora_testing_user}"; then
|
|
echo "Removing user flatpak remote 'fedora-testing'"
|
|
flatpak remote-delete --user fedora-testing --force
|
|
else
|
|
echo "User flatpak remote 'fedora-testing' is already removed"
|
|
fi
|
|
|
|
# Remove flatpak apps from user origin fedora
|
|
if [[ ! "${REPO_URL}" == "oci+https://registry.fedoraproject.org" ]]; then
|
|
FEDORA_FLATPAKS_APP=($(flatpak list --user --app --columns=application,origin | awk '$2 == "fedora" {print $1}'))
|
|
if [[ ${#FEDORA_FLATPAKS_APP[@]} -gt 0 ]]; then
|
|
echo "Removing user flatpak apps from 'fedora' remote"
|
|
flatpak remove --user --noninteractive "${FEDORA_FLATPAKS_APP[@]}"
|
|
else
|
|
echo "User flatpak apps from 'fedora' remote are already removed"
|
|
fi
|
|
else
|
|
echo "Not automatically removing all flatpak apps from user remote 'fedora', as it's specified for use in config"
|
|
fi
|
|
|
|
# Remove flatpak runtimes from user origin fedora, unless fedora remote is strictly specified
|
|
if [[ ! "${REPO_URL}" == "oci+https://registry.fedoraproject.org" ]]; then
|
|
FEDORA_FLATPAKS_RUNTIME=($(flatpak list --user --runtime --columns=application,arch,branch,origin | awk '$4 == "fedora" {print $1"/"$2"/"$3}'))
|
|
if [[ ${#FEDORA_FLATPAKS_RUNTIME[@]} -gt 0 ]]; then
|
|
echo "Removing user flatpak runtimes from 'fedora' remote"
|
|
flatpak remove --user --noninteractive "${FEDORA_FLATPAKS_RUNTIME[@]}"
|
|
else
|
|
echo "User flatpak runtimes from 'fedora' remote are already removed"
|
|
fi
|
|
else
|
|
echo "Not automatically removing all flatpak runtimes from user remote 'fedora', as it's specified for use in config"
|
|
fi
|
|
|
|
# Remove flatpak apps from origin user origin fedora-testing
|
|
FEDORA_TESTING_FLATPAKS_APP=($(flatpak list --user --app --columns=application,origin | awk '$2 == "fedora-testing" {print $1}'))
|
|
if [[ ${#FEDORA_TESTING_FLATPAKS_APP[@]} -gt 0 ]]; then
|
|
echo "Removing user flatpak apps from 'fedora-testing' remote"
|
|
flatpak remove --user --noninteractive "${FEDORA_TESTING_FLATPAKS_APP[@]}"
|
|
else
|
|
echo "User flatpak apps from 'fedora-testing' remote are already removed"
|
|
fi
|
|
|
|
# Remove flatpak runtimes from user origin fedora-testing
|
|
FEDORA_TESTING_FLATPAKS_RUNTIME=($(flatpak list --user --runtime --columns=application,arch,branch,origin | awk '$4 == "fedora-testing" {print $1"/"$2"/"$3}'))
|
|
if [[ ${#FEDORA_TESTING_FLATPAKS_RUNTIME[@]} -gt 0 ]]; then
|
|
echo "Removing user flatpak runtimes from 'fedora-testing' remote"
|
|
flatpak remove --user --noninteractive "${FEDORA_TESTING_FLATPAKS_RUNTIME[@]}"
|
|
else
|
|
echo "User flatpak runtimes from 'fedora-testing' remote are already removed"
|
|
fi
|
|
|
|
# General conditions for not running the unnecessary flatpak setup
|
|
# Currently, we don't modify remote title if it's already modified
|
|
# Flatpak add remote is ran for some reason, even with --if-not-exists flag, apparently, it modifies the URL
|
|
# We cannot compare repo URLs properly
|
|
# Flatpak outputs repo URL, while we have flatpakref URL, which is not the same
|
|
no_title_modify=false
|
|
readarray -t CURRENT_REPO_INFO < <(flatpak remotes --user --columns=name,url,title)
|
|
for index in "${CURRENT_REPO_INFO[@]}"; do
|
|
CURRENT_REPO_NAMES+=("$(echo "${index}" | awk '{print $1}')")
|
|
CURRENT_REPO_TITLES+=("$(echo "${index}" | awk '{ for(i=3;i<NF;i++) printf "%s ", $i; print $NF }')")
|
|
for name in "${CURRENT_REPO_NAMES[@]}"; do
|
|
for title in "${CURRENT_REPO_TITLES[@]}"; do
|
|
if [[ "${name}" == "${REPO_NAME}" ]] && [[ "${title}" == "${REPO_TITLE}" ]]; then
|
|
no_title_modify=true
|
|
fi
|
|
done
|
|
done
|
|
done
|
|
|
|
# Set up per-user Flatpak repository
|
|
if [[ $REPO_URL != "null" && $REPO_NAME != "null" ]]; then
|
|
if check_internet_connection; then
|
|
echo "Adding user-wide remote $REPO_NAME from $REPO_URL if it doesn't exist (requires internet)"
|
|
flatpak remote-add --if-not-exists --user "$REPO_NAME" "$REPO_URL"
|
|
else
|
|
echo "NOTE: Skipping the addition of user-wide remote, because there is no internet connection"
|
|
fi
|
|
fi
|
|
|
|
# Change repository title to configured title, if not null & if not already changed
|
|
if [[ $REPO_TITLE != "null" ]] && ! ${no_title_modify}; then
|
|
echo "Setting title $REPO_TITLE for user remote $REPO_NAME"
|
|
flatpak remote-modify --user "$REPO_NAME" --title="$REPO_TITLE"
|
|
elif [[ $REPO_TITLE != "null" ]] && ${no_title_modify}; then
|
|
echo "Custom flatpak user remote title is already set"
|
|
fi
|
|
|
|
# Notifications config
|
|
NOTIFICATIONS_FILE="/usr/share/bluebuild/default-flatpaks/notifications"
|
|
USER_NOTIFICATIONS_FILE="/etc/bluebuild/default-flatpaks/notifications"
|
|
# Ignore words starting with # symbol, whitelines & duplicate entries for notifications config
|
|
MAINTAINER_NOTIFICATIONS=$(cat "$NOTIFICATIONS_FILE" | grep -v -E '^#|^$' | awk '!seen[$0]++')
|
|
USER_NOTIFICATIONS=$(cat "$USER_NOTIFICATIONS_FILE" | grep -v -E '^#|^$' | awk '!seen[$0]++')
|
|
|
|
# If user modified notifications config, utilize user's configuration, otherwise maintainer's
|
|
if [[ -n $USER_NOTIFICATIONS ]]; then
|
|
NOTIFICATIONS="$USER_NOTIFICATIONS"
|
|
else
|
|
NOTIFICATIONS="$MAINTAINER_NOTIFICATIONS"
|
|
fi
|
|
|
|
# Installed flatpaks
|
|
FLATPAK_LIST=$(flatpak list --user --app --columns=application)
|
|
|
|
# Flatpak list files
|
|
INSTALL_LIST_FILE="/usr/share/bluebuild/default-flatpaks/user/install"
|
|
REMOVE_LIST_FILE="/usr/share/bluebuild/default-flatpaks/user/remove"
|
|
USER_INSTALL_LIST_FILE="/etc/bluebuild/default-flatpaks/user/install"
|
|
USER_REMOVE_LIST_FILE="/etc/bluebuild/default-flatpaks/user/remove"
|
|
# Prefer user's install + remove list over maintainer's, in case when same flatpak ID is present in maintainer's install list + user's remove list & vice-versa
|
|
# Also ignores words starting with # symbol, whitelines & duplicate entries
|
|
MAINTAINER_INSTALL_LIST=$(comm -23 <(sort "$INSTALL_LIST_FILE") <(sort "$USER_REMOVE_LIST_FILE") | grep -v -E '^#|^$' | awk '!seen[$0]++')
|
|
MAINTAINER_REMOVE_LIST=$(comm -23 <(sort "$REMOVE_LIST_FILE") <(sort "$USER_INSTALL_LIST_FILE") | grep -v -E '^#|^$' | awk '!seen[$0]++')
|
|
# Combine maintainer & user list. Ignore words starting with # symbol, whitelines & duplicate entries
|
|
COMBINED_INSTALL_LIST=$(cat <(echo "$MAINTAINER_INSTALL_LIST") "$USER_INSTALL_LIST_FILE" | grep -v -E '^#|^$' | awk '!seen[$0]++')
|
|
COMBINED_REMOVE_LIST=$(cat <(echo "$MAINTAINER_REMOVE_LIST") "$USER_REMOVE_LIST_FILE" | grep -v -E '^#|^$' | awk '!seen[$0]++')
|
|
|
|
# Remove flatpaks in list
|
|
if [[ -f $REMOVE_LIST_FILE ]] || [[ -f $USER_REMOVE_LIST_FILE ]]; then
|
|
REMOVE_LIST=$(comm -12 <(echo "$COMBINED_REMOVE_LIST" | sort) <(echo "$FLATPAK_LIST" | sort))
|
|
if [[ -n $REMOVE_LIST ]] && [[ ! $NOTIFICATIONS == "true" ]]; then
|
|
echo "Removing user flatpaks from config list"
|
|
flatpak uninstall --user --noninteractive ${REMOVE_LIST[@]}
|
|
elif [[ -n $REMOVE_LIST ]] && [[ $NOTIFICATIONS == "true" ]]; then
|
|
echo "Removing user flatpaks from config list"
|
|
notify-send "Flatpak Installer" "Started uninstall of some user flatpaks" --app-name="Flatpak Installer" -u NORMAL
|
|
flatpak uninstall --user --noninteractive ${REMOVE_LIST[@]}
|
|
notify-send "Flatpak Installer" "Finished uninstall of user flatpaks:\n$REMOVE_LIST" --app-name="Flatpak Installer" -u NORMAL
|
|
fi
|
|
fi
|
|
|
|
# Install flatpaks in list
|
|
if [[ -f $INSTALL_LIST_FILE ]] || [[ -f $USER_INSTALL_LIST_FILE ]]; then
|
|
if [[ -n $FLATPAK_LIST ]]; then
|
|
INSTALL_LIST=$(comm -23 <(echo "$COMBINED_INSTALL_LIST" | sort) <(echo "$FLATPAK_LIST" | sort))
|
|
else
|
|
INSTALL_LIST="$COMBINED_INSTALL_LIST"
|
|
fi
|
|
if [[ -n $INSTALL_LIST ]] && [[ ! $NOTIFICATIONS == "true" ]]; then
|
|
if check_internet_connection; then
|
|
echo "Installing user flatpaks from config list (requires internet)"
|
|
flatpak install --user --noninteractive "$REPO_NAME" ${INSTALL_LIST[@]}
|
|
else
|
|
echo "ERROR: Installation of user flatpaks was not performed, because there was no internet connection"
|
|
exit 1
|
|
fi
|
|
elif [[ -n $INSTALL_LIST ]] && [[ $NOTIFICATIONS == "true" ]]; then
|
|
if check_internet_connection; then
|
|
echo "Installing user flatpaks from config list (requires internet)"
|
|
notify-send "Flatpak Installer" "Started install of user flatpaks" --app-name="Flatpak Installer" -u NORMAL
|
|
flatpak install --user --noninteractive "$REPO_NAME" ${INSTALL_LIST[@]}
|
|
notify-send "Flatpak Installer" "Finished install of user flatpaks:\n$INSTALL_LIST" --app-name="Flatpak Installer" -u NORMAL
|
|
else
|
|
echo "ERROR: Installation of user flatpaks was not performed, because there was no internet connection"
|
|
exit 1
|
|
fi
|
|
fi
|
|
fi
|