RetroDECK/automation_tools/appdata_management.sh

95 lines
2.9 KiB
Bash
Raw Normal View History

#!/bin/bash
# THIS SCRIPT IS BROKEN HENCE DISABLED FTM
# This script is getting the latest release notes from the wiki and add them to the appdata
source automation_tools/version_extractor.sh
# Fetch appdata version
appdata_version=$(fetch_appdata_version)
2024-01-04 16:34:02 +00:00
log i "Appdata:\t\t$appdata_version"
# Defining manifest file location
appdata_file="net.retrodeck.retrodeck.appdata.xml"
2023-08-31 12:32:36 +00:00
# Check if release with appdata_version already exists
if grep -q "version=\"$appdata_version\"" "$appdata_file"; then
2024-01-04 16:34:02 +00:00
log i "Deleting existing release version $appdata_version..."
2023-08-31 12:32:36 +00:00
# Remove the existing release entry
sed -i "/<release version=\"$appdata_version\"/,/<\/release>/d" "$appdata_file"
fi
2024-01-04 16:34:02 +00:00
log i "Adding new release version $appdata_version..."
2023-08-31 12:32:36 +00:00
# Get today's date in the required format (YYYY-MM-DD)
today_date=$(date +"%Y-%m-%d")
2024-01-04 16:34:02 +00:00
log i "Today is $today_date"
2023-08-31 12:32:36 +00:00
# Construct the release snippet
release_snippet="\
<releases>
2023-08-31 12:32:36 +00:00
<release version=\"$appdata_version\" date=\"$today_date\">
<url>https://github.com/XargonWan/RetroDECK/releases/tag/$appdata_version</url>
<description>
RELEASE_NOTES_PLACEHOLDER
</description>
</release>"
2023-08-31 12:32:36 +00:00
# Read the entire content of the XML file
xml_content=$(cat "$appdata_file")
# Replace RELEASE_NOTES_PLACEHOLDER with the actual release notes
2024-07-12 08:02:56 +00:00
# # TODO
# git clone https://github.com/XargonWan/RetroDECK.wiki.git /tmp/wiki
# # Path to the markdown file
# wiki="/tmp/wiki/Version-history:-Patch-Notes.md"
# # Read the markdown file until the first occurrence of "---"
# latest_version_notes=""
# while IFS= read -r line; do
# if [ "$line" = "---" ]; then
# break
# fi
# latest_version_notes+="$line\n"
# done < "$wiki"
2023-08-31 12:32:36 +00:00
# Extract the version number
version_number="${latest_version_notes#*# RetroDECK }" # Remove text before "# RetroDECK "
version_number="${version_number%% -*}" # Remove text after " - "
# Extract sections from the latest version notes
sections=$(echo "$latest_version_notes" | awk '/##/ { print; }')
# Create a formatted section list
section_list=""
2023-08-31 12:32:36 +00:00
current_section=""
while IFS= read -r line; do
if [[ "$line" == "##"* ]]; then
2023-08-31 12:32:36 +00:00
if [ -n "$current_section" ]; then
section_list+="</ul>"
2023-08-31 12:32:36 +00:00
fi
section_name="${line##*# }"
section_list+="<p>${section_name}</p><ul>"
elif [[ "$line" == "- "* ]]; then
entry="${line#*- }"
section_list+="<li>${entry}</li>"
2023-08-31 12:32:36 +00:00
fi
done <<< "$sections"
2023-08-31 12:32:36 +00:00
if [ -n "$current_section" ]; then
section_list+="</ul>"
fi
2023-08-31 12:32:36 +00:00
# Replace RELEASE_NOTES_PLACEHOLDER with the actual release notes
release_description="${release_snippet/RELEASE_NOTES_PLACEHOLDER/$section_list}"
# Append the new release snippet to the content
modified_xml_content="${xml_content/<releases>/$release_description}"
# Overwrite the original XML file with the modified content
echo "$modified_xml_content" > "$appdata_file"
# Format the XML file
#xmlstarlet fo --omit-decl "$appdata_file"