Files
pi-hosted/build/generators/generateAppList.sh
2022-02-22 22:00:46 -05:00

117 lines
3.2 KiB
Bash
Executable File

#!/bin/bash
# start script from it's folder
cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null || exit
# Standard file locations
homedir='../../'
. ../env.sh
docIconBlue="![](../build/images/blue_doc_icon.png)"
docIconRed="![](../build/images/red_doc_icon.png)"
scriptIcon="![](../build/images/script_icon.png)"
# Create AppList title
cp -f "$AppList_TEMPLATE" "$AppList"
# Generate App Table
while IFS='' read -u 9 -r appfile || [[ -n $appfile ]]; do
# Clear previous variables
unset doc script extra vid oweb odoc type has32 has64
# Get app json
appconf=$( jq '.' "$appfile" )
# App Title
App=$( echo "$appconf" | jq '.title' | tr -d '"' )
# App Architecture
if echo "$appconf" | jq -e '.image' &> /dev/null || echo "$appconf" | jq -e '.repository.stackfile' &> /dev/null ; then
has32='32'
has64='64'
else
if echo "$appconf" | jq -e '.image32' &> /dev/null || echo "$appconf" | jq -e '.repository.stackfile32' &> /dev/null ; then has32='32' ; fi
if echo "$appconf" | jq -e '.image64' &> /dev/null || echo "$appconf" | jq -e '.repository.stackfile64' &> /dev/null ; then has64='64' ; fi
fi
[[ -n "$has32" && -n "$has64" ]] && Arch='32/64 bit' || Arch="$has32$has64 bit"
# Apps Type
apptype=$( echo "$appconf" | jq '.type' | tr -d '"' )
# Get App Webpage from app info
oweb=$(echo "$appconf" | jq ".webpage" | tr -d '"' )
if [ "$oweb" != "null" ]; then
oweb="[$App]($oweb)"
else
oweb="$App"
fi
# Get App Official Doc from app info
odoc=$(echo "$appconf" | jq ".officialDoc" | tr -d '"' )
if [ "$odoc" != "null" ]; then
odoc="[$docIconBlue]($odoc)"
else
unset odoc
fi
# Get Doc from app info
doc=$(echo "$appconf" | jq ".piHostedDoc" | tr -d '"' )
if [ "$doc" != "null" ]; then
doc="[$docIconRed]($Docs$doc)"
else
unset doc
fi
# Get Install Script from app info
script=$(echo "$appconf" | jq ".preInstallScript" | tr -d '"' )
if [ "$script" != "null" ]; then
script="[$scriptIcon]($Scripts$script)"
else
unset script
fi
# Get Extra Script from app info
if ExtraScript=$( echo "$appconf" | jq -e '.extraScript' ) ; then
# If only one entry
if [ "$(echo "$ExtraScript" | wc -l )" == "1" ]; then
extra="[${ExtraScript:1:-1}]($Extras${ExtraScript:1:-1})"
# If multiples entries
else
n_ext=$(echo "$ExtraScript" | jq '. | length')
for n in $(seq 0 $(( n_ext - 1 ))); do
ext=$(echo "$ExtraScript" | jq ".[$n]" | tr -d '"')
if [ "$n" == "0" ]; then
extra="[$ext]($Extras$ext)"
else
extra="$extra<br>[$ext]($Extras$ext)"
fi
done
fi
else
unset extra n_ext ExtraScript
fi
# Get Video from app info
vid=$(echo "$appconf" | jq ".videoID")
if [ "$vid" != "null" ] ; then
vidURL=$(jq ".youtube[] | select(.ID==$vid) | .URL" "$appinfo" | tr -d '"')
vid="[![YouTube](https://img.shields.io/badge/YouTube-FF0000?style=plastic&logo=youtube&logoColor=white)]($vidURL)"
else
unset vid
fi
# Building App Line
line="|$oweb|$Arch|$apptype| $odoc | $doc | $script | $extra | $vid |"
# Change container type to string (Default to Container when not set)
line="${line//|1|/|Container|}"
line="${line//|null|/|Container|}"
line="${line//|3|/|Stack|}"
# Add line to List
echo "$line" >> "$AppList"
done 9< <( LC_COLLATE=en_US.utf8 ls $appsfolder/*.json )