pretendo-docker/scripts/compile-custom-inkay.sh
2024-07-07 13:48:59 -04:00

47 lines
2.1 KiB
Bash
Executable File

#!/usr/bin/env bash
# shellcheck source=./internal/framework.sh
source "$(dirname "$(realpath "$0")")/internal/framework.sh"
set_description "This compiles a custom version of the Inkay patches that whitelists the mitmproxy certificate for the \
Miiverse applet. It must be run if you want to use Juxt."
add_option "-r --reset" "should_reset" "Resets the Inkay CA certificate to Pretendo's instead of using the mitmproxy certificate"
parse_arguments "$@"
load_dotenv .env
if [[ -z "${WIIU_IP:-}" ]]; then
print_warning "Missing environment variable WIIU_IP. Did you specify a Wii U IP address when you ran setup-environment.sh?"
print_info "Continuing without automatic FTP upload."
fi
cd "$git_base_dir/repos/Inkay"
if [[ -z "$should_reset" ]]; then
print_info "Retrieving the mitmproxy CA certificate..."
compose_no_progress up -d mitmproxy-pretendo
run_command_until_success "Waiting for mitmproxy to generate a certificate..." 5 \
docker compose exec mitmproxy-pretendo ls /home/mitmproxy/.mitmproxy/mitmproxy-ca-cert.pem
# Get the current certificate
compose_no_progress cp mitmproxy-pretendo:/home/mitmproxy/.mitmproxy/mitmproxy-ca-cert.pem ./data/ca.pem
else
print_info "Resetting the Inkay CA certificate..."
git restore ./data/ca.pem
fi
print_info "Compiling the Inkay patches..."
git clean -fdx
# Set up the Inkay build environment and then build the patches
docker build . -t inkay-build
docker run -it --rm -v .:/app -w /app inkay-build
print_success "Inkay patches built successfully at $(pwd)/Inkay-pretendo.wps"
if [[ -n "${WIIU_IP:-}" ]]; then
print_info "Uploading the new Inkay patches to your Wii U..."
tnftp -u "ftp://user:pass@$WIIU_IP/fs/vol/external01/wiiu/environments/aroma/plugins/Inkay-pretendo.wps" ./Inkay-pretendo.wps
print_success "Successfully uploaded the new Inkay patches. Reboot your Wii U now to apply them."
else
print_warning "The modified patches were not uploaded to your Wii U because you did not set an IP address."
print_info "Please copy the file \"$(pwd)/Inkay-pretendo.wps\" to your Wii U SD card as \"SD:/wiiu/environments/aroma/plugins/Inkay-pretendo.wps\"."
fi