mirror of
https://github.com/MatthewL246/pretendo-docker.git
synced 2026-04-25 08:04:02 -05:00
51 lines
2.4 KiB
Bash
Executable File
51 lines
2.4 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# shellcheck source=./internal/framework.sh
|
|
source "$(dirname "$(realpath "$0")")/internal/framework.sh"
|
|
set_description "This uploads required files from console-files to your 3DS to connect to your Pretendo server."
|
|
add_option "-r --reset" "should_reset" "Reset the Juxt certificate to Pretendo's instead of using the mitmproxy certificate"
|
|
parse_arguments "$@"
|
|
|
|
load_dotenv .env
|
|
if [[ -z "${DS_IP:-}" ]]; then
|
|
print_warning "Missing environment variable DS_IP. Did you specify a 3DS IP address when you ran setup-environment.sh?"
|
|
print_info "Continuing without automatic FTP upload."
|
|
fi
|
|
|
|
cd "$git_base_dir/console-files"
|
|
|
|
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 ./mitmproxy-ca-cert.pem
|
|
else
|
|
print_info "Resetting the Juxt certificate..."
|
|
fi
|
|
|
|
# Upload the required files
|
|
if [[ -n "${DS_IP:-}" ]]; then
|
|
print_info "Uploading the required files to your 3DS..."
|
|
if [[ -z "$should_reset" ]]; then
|
|
tnftp -u "ftp://user:pass@$DS_IP:5000/3ds/juxt-prod.pem" ./mitmproxy-ca-cert.pem
|
|
tnftp -u "ftp://user:pass@$DS_IP:5000/gm9/scripts/FriendsAccountSwitcher.gm9" ./FriendsAccountSwitcher.gm9
|
|
tnftp -u "ftp://user:pass@$DS_IP:5000/3ds/ResetFriendsTestAccount.3dsx" ./ResetFriendsTestAccount.3dsx
|
|
else
|
|
tnftp -u "ftp://user:pass@$DS_IP:5000/3ds/juxt-prod.pem" ./juxt-prod.pem
|
|
fi
|
|
print_success "Successfully uploaded the required files."
|
|
else
|
|
print_warning "The required files were not uploaded to your 3DS because you did not set an IP address."
|
|
print_info "Please copy the following files to your 3DS SD card:"
|
|
if [[ -z "$should_reset" ]]; then
|
|
print_info "- \"$(pwd)/mitmproxy-ca-cert.pem\" as \"SD:/3ds/juxt-prod.pem\""
|
|
print_info "- \"$(pwd)/FriendsAccountSwitcher.gm9\" as \"SD:/gm9/scripts/FriendsAccountSwitcher.gm9\""
|
|
print_info "- \"$(pwd)/ResetFriendsTestAccount.3dsx\" as \"SD:/3ds/ResetFriendsTestAccount.3dsx\""
|
|
else
|
|
print_info "- \"$(pwd)/juxt-prod.pem\" as \"SD:/3ds/juxt-prod.pem\""
|
|
fi
|
|
fi
|