0
0
mirror of https://github.com/cucumber-sp/yandex-music-linux.git synced 2024-12-23 22:22:59 +03:00
yandex-music-linux/repack.sh

118 lines
2.8 KiB
Bash
Raw Normal View History

2023-12-04 16:02:20 +03:00
#!/bin/bash
set -e
2023-12-04 16:02:20 +03:00
prompt_yes_no() {
local question="$1"
local response
while true; do
read -rp "$question (y/n): " response
2023-12-04 16:02:20 +03:00
case $response in
[Yy]*)
return 0 # Returning success status code
;;
[Nn]*)
return 1 # Returning failure status code
;;
*)
echo "Please enter 'y' (yes) or 'n' (no)."
;;
esac
done
}
usage() {
echo "Usage: $(basename "$0") [-xh] YANDEX_MUSIC_EXE"
echo
echo " Options:"
echo " -x Extract and fix only to ./app folder"
echo " -h Show this help and exit"
}
extract_only=
exe_location=
2024-01-26 15:35:29 +03:00
while getopts :xh name; do
case $name in
x) extract_only=1 ;;
h)
usage
exit 0
;;
*)
usage
exit 1
;;
esac
done
if [ "$OPTIND" -le "$#" ]; then
shift "$(( OPTIND - 1))"
exe_location="$1"
fi
2023-12-04 16:02:20 +03:00
if [ -z "$exe_location" ]; then
echo "No exe file specified"
usage
exit 1
fi
# unpacking
7z x "$exe_location" -oExtracted
2023-12-04 16:02:20 +03:00
cp "./Extracted/\$PLUGINSDIR/app-64.7z" "./app-64.7z"
rm -rf ./Extracted
7z x "./app-64.7z" -oExtracted
cp "./Extracted/resources/app.asar" "./app.asar"
rm -rf ./Extracted
rm ./app-64.7z
asar extract "./app.asar" "./app"
rm "./app.asar"
cd ./app
2023-12-04 16:02:20 +03:00
# fixing secretKey issue
echo "Fixing SecretKey"
find "./" -type f \( -name "*.js" -o -name "*.js.map" \) -print0 | while IFS= read -r -d $'\0' file; do
# Use 'sed' to perform the replacement in-place
sed -i "s/secretKey:this.secretKey/secretKey:'superSecretKey'/g" "$file"
done
echo "SecretKey replaced"
echo "Fixing Title"
#fixing title
find "./" -type f -name "*.html" -print0 | while IFS= read -r -d $'\0' file; do
# Use 'sed' to perform the replacement in-place
sed -i "s/Яндекс Музыка — собираем музыку для вас/Яндекс Музыка/g" "$file"
done
echo "Title Fixed"
2024-01-29 19:48:31 +03:00
echo "Fixing App Quiting"
sed -i "s/window.on('close', (event) => {/window.on('close', (event) => {electron_1.app.quit();/g" "./main/lib/handlers/handleWindowLifecycleEvents.js"
2024-01-20 19:42:39 +03:00
if ! command -v jq &>/dev/null; then
echo "Error: jq is not installed. Please install jq to proceed." >&2
exit 1
fi
2024-01-20 19:42:39 +03:00
jq --arg license "UNLICENSED" '. + {license: $license}' package.json > tmp_package.json
mv tmp_package.json package.json
echo "Updated license field in package.json"
version=$(jq -r .version package.json)
2024-01-29 22:32:18 +03:00
jq '. + {icon: {"48x48": "build/next-desktop/favicon.png", "scalable": "build/next-desktop/favicon.svg"}}' package.json > tmp_package.json
mv tmp_package.json package.json
echo "Updated icon field in package.json"
2023-12-04 16:02:20 +03:00
if [ -n "$extract_only" ]; then
exit 0
2023-12-04 16:02:20 +03:00
fi
cd ../
2024-01-30 18:15:10 +03:00
mkdir -p out
2023-12-04 16:02:20 +03:00
echo "Packing"
asar pack "./app" "./out/yandexmusic.asar"
2023-12-04 16:02:20 +03:00
rm -rf ./app
2024-01-30 18:07:57 +03:00
echo "Done"