Files
openclaw/scripts/ios-team-id.sh
Brian Leach 73f526f025 fix(ios): support Xcode 16+ team detection and fix ntohl build error
Xcode 16+/26 no longer writes IDEProvisioningTeams to the preferences
plist, breaking ios-team-id.sh for newly signed-in accounts. Add
provisioning profile fallback and actionable error when an account
exists but no team ID can be resolved. Also replace ntohl() with
UInt32(bigEndian:) for Swift 6 compatibility and gitignore Xcode
build output directories.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-24 15:02:27 +00:00

183 lines
5.3 KiB
Bash
Executable File

#!/usr/bin/env bash
set -euo pipefail
if [[ -n "${IOS_DEVELOPMENT_TEAM:-}" ]]; then
printf '%s\n' "${IOS_DEVELOPMENT_TEAM}"
exit 0
fi
preferred_team="${IOS_PREFERRED_TEAM_ID:-${OPENCLAW_IOS_DEFAULT_TEAM_ID:-Y5PE65HELJ}}"
preferred_team_name="${IOS_PREFERRED_TEAM_NAME:-}"
allow_keychain_fallback="${IOS_ALLOW_KEYCHAIN_TEAM_FALLBACK:-0}"
prefer_non_free_team="${IOS_PREFER_NON_FREE_TEAM:-1}"
declare -a team_ids=()
declare -a team_is_free=()
declare -a team_names=()
append_team() {
local candidate_id="$1"
local candidate_is_free="$2"
local candidate_name="$3"
[[ -z "$candidate_id" ]] && return
local i
for i in "${!team_ids[@]}"; do
if [[ "${team_ids[$i]}" == "$candidate_id" ]]; then
return
fi
done
team_ids+=("$candidate_id")
team_is_free+=("$candidate_is_free")
team_names+=("$candidate_name")
}
load_teams_from_xcode_preferences() {
local plist_path="${HOME}/Library/Preferences/com.apple.dt.Xcode.plist"
[[ -f "$plist_path" ]] || return 0
while IFS=$'\t' read -r team_id is_free team_name; do
[[ -z "$team_id" ]] && continue
append_team "$team_id" "${is_free:-0}" "${team_name:-}"
done < <(
plutil -extract IDEProvisioningTeams json -o - "$plist_path" 2>/dev/null \
| /usr/bin/python3 -c '
import json
import sys
try:
data = json.load(sys.stdin)
except Exception:
raise SystemExit(0)
if not isinstance(data, dict):
raise SystemExit(0)
for teams in data.values():
if not isinstance(teams, list):
continue
for team in teams:
if not isinstance(team, dict):
continue
team_id = str(team.get("teamID", "")).strip()
if not team_id:
continue
is_free = "1" if bool(team.get("isFreeProvisioningTeam", False)) else "0"
team_name = str(team.get("teamName", "")).replace("\t", " ").strip()
print(f"{team_id}\t{is_free}\t{team_name}")
'
)
}
load_teams_from_legacy_defaults_key() {
while IFS= read -r team; do
[[ -z "$team" ]] && continue
append_team "$team" "0" ""
done < <(
defaults read com.apple.dt.Xcode IDEProvisioningTeamIdentifiers 2>/dev/null \
| grep -Eo '[A-Z0-9]{10}' || true
)
}
load_teams_from_xcode_managed_profiles() {
local profiles_dir="${HOME}/Library/MobileDevice/Provisioning Profiles"
[[ -d "$profiles_dir" ]] || return 0
while IFS= read -r team; do
[[ -z "$team" ]] && continue
append_team "$team" "0" ""
done < <(
for p in "${profiles_dir}"/*.mobileprovision; do
[[ -f "$p" ]] || continue
security cms -D -i "$p" 2>/dev/null \
| /usr/bin/python3 -c '
import plistlib, sys
try:
d = plistlib.load(sys.stdin.buffer)
for tid in d.get("TeamIdentifier", []):
print(tid)
except Exception:
pass
' 2>/dev/null
done | sort -u
)
}
has_xcode_account() {
local plist_path="${HOME}/Library/Preferences/com.apple.dt.Xcode.plist"
[[ -f "$plist_path" ]] || return 1
local accts
accts="$(defaults read com.apple.dt.Xcode DVTDeveloperAccountManagerAppleIDLists 2>/dev/null || true)"
[[ -n "$accts" ]] && [[ "$accts" != *"does not exist"* ]] && grep -q 'identifier' <<< "$accts"
}
load_teams_from_xcode_preferences
load_teams_from_legacy_defaults_key
if [[ ${#team_ids[@]} -eq 0 ]]; then
load_teams_from_xcode_managed_profiles
fi
if [[ ${#team_ids[@]} -eq 0 && "$allow_keychain_fallback" == "1" ]]; then
while IFS= read -r team; do
[[ -z "$team" ]] && continue
append_team "$team" "0" ""
done < <(
security find-identity -p codesigning -v 2>/dev/null \
| grep -Eo '\([A-Z0-9]{10}\)' \
| tr -d '()' || true
)
fi
if [[ ${#team_ids[@]} -eq 0 ]]; then
if has_xcode_account; then
echo "An Apple account is signed in to Xcode, but no Team ID could be resolved." >&2
echo "" >&2
echo "On Xcode 16+, team data is not written until you build a project." >&2
echo "To fix this, do ONE of the following:" >&2
echo "" >&2
echo " 1. Open the iOS project in Xcode, select your Team in Signing &" >&2
echo " Capabilities, and build once. Then re-run this script." >&2
echo "" >&2
echo " 2. Set your Team ID directly:" >&2
echo " export IOS_DEVELOPMENT_TEAM=<your-10-char-team-id>" >&2
echo " Find your Team ID at: https://developer.apple.com/account#MembershipDetailsCard" >&2
elif [[ "$allow_keychain_fallback" == "1" ]]; then
echo "No Apple Team ID found. Open Xcode or install signing certificates first." >&2
else
echo "No Apple Team ID found in Xcode accounts. Open Xcode → Settings → Accounts and sign in, then retry." >&2
echo "(Set IOS_ALLOW_KEYCHAIN_TEAM_FALLBACK=1 to allow keychain-only team detection.)" >&2
fi
exit 1
fi
for i in "${!team_ids[@]}"; do
if [[ "${team_ids[$i]}" == "$preferred_team" ]]; then
printf '%s\n' "${team_ids[$i]}"
exit 0
fi
done
if [[ -n "$preferred_team_name" ]]; then
preferred_team_name_lc="$(printf '%s' "$preferred_team_name" | tr '[:upper:]' '[:lower:]')"
for i in "${!team_ids[@]}"; do
team_name_lc="$(printf '%s' "${team_names[$i]}" | tr '[:upper:]' '[:lower:]')"
if [[ "$team_name_lc" == "$preferred_team_name_lc" ]]; then
printf '%s\n' "${team_ids[$i]}"
exit 0
fi
done
fi
if [[ "$prefer_non_free_team" == "1" ]]; then
for i in "${!team_ids[@]}"; do
if [[ "${team_is_free[$i]}" == "0" ]]; then
printf '%s\n' "${team_ids[$i]}"
exit 0
fi
done
fi
printf '%s\n' "${team_ids[0]}"