mirror of
https://github.com/grahampugh/macadmin-scripts.git
synced 2025-12-17 17:56:33 +00:00
commit
2b720a4ad8
@ -560,13 +560,22 @@ def download_and_parse_sucatalog(sucatalog, workdir, ignore_cache=False):
|
|||||||
exit(-1)
|
exit(-1)
|
||||||
|
|
||||||
|
|
||||||
def find_mac_os_installers(catalog):
|
def find_mac_os_installers(catalog, installassistant_pkg_only=False):
|
||||||
"""Return a list of product identifiers for what appear to be macOS
|
"""Return a list of product identifiers for what appear to be macOS
|
||||||
installers"""
|
installers"""
|
||||||
mac_os_installer_products = []
|
mac_os_installer_products = []
|
||||||
if "Products" in catalog:
|
if "Products" in catalog:
|
||||||
for product_key in catalog["Products"].keys():
|
for product_key in catalog["Products"].keys():
|
||||||
product = catalog["Products"][product_key]
|
product = catalog["Products"][product_key]
|
||||||
|
# account for args.pkg
|
||||||
|
if installassistant_pkg_only:
|
||||||
|
try:
|
||||||
|
if product['ExtendedMetaInfo']['InstallAssistantPackageIdentifiers']:
|
||||||
|
if product['ExtendedMetaInfo']['InstallAssistantPackageIdentifiers']['SharedSupport'] == 'com.apple.pkg.InstallAssistant.macOSBigSur':
|
||||||
|
mac_os_installer_products.append(product_key)
|
||||||
|
except KeyError:
|
||||||
|
continue
|
||||||
|
else:
|
||||||
try:
|
try:
|
||||||
if product["ExtendedMetaInfo"]["InstallAssistantPackageIdentifiers"]:
|
if product["ExtendedMetaInfo"]["InstallAssistantPackageIdentifiers"]:
|
||||||
mac_os_installer_products.append(product_key)
|
mac_os_installer_products.append(product_key)
|
||||||
@ -575,10 +584,10 @@ def find_mac_os_installers(catalog):
|
|||||||
return mac_os_installer_products
|
return mac_os_installer_products
|
||||||
|
|
||||||
|
|
||||||
def os_installer_product_info(catalog, workdir, ignore_cache=False):
|
def os_installer_product_info(catalog, workdir, installassistant_pkg_only, ignore_cache=False):
|
||||||
"""Returns a dict of info about products that look like macOS installers"""
|
"""Returns a dict of info about products that look like macOS installers"""
|
||||||
product_info = {}
|
product_info = {}
|
||||||
installer_products = find_mac_os_installers(catalog)
|
installer_products = find_mac_os_installers(catalog, installassistant_pkg_only)
|
||||||
for product_key in installer_products:
|
for product_key in installer_products:
|
||||||
product_info[product_key] = {}
|
product_info[product_key] = {}
|
||||||
# get the localized title (e.g. "macOS Catalina Beta") and version
|
# get the localized title (e.g. "macOS Catalina Beta") and version
|
||||||
@ -791,6 +800,11 @@ def main():
|
|||||||
help="Selects the latest valid build ID matching "
|
help="Selects the latest valid build ID matching "
|
||||||
"the selected OS version (e.g. 10.14).",
|
"the selected OS version (e.g. 10.14).",
|
||||||
)
|
)
|
||||||
|
parser.add_argument(
|
||||||
|
"--pkg",
|
||||||
|
action="store_true",
|
||||||
|
help="Search only for InstallAssistant packages (macOS Big Sur only)",
|
||||||
|
)
|
||||||
args = parser.parse_args()
|
args = parser.parse_args()
|
||||||
|
|
||||||
# show this Mac's info
|
# show this Mac's info
|
||||||
@ -855,7 +869,7 @@ def main():
|
|||||||
su_catalog_url, args.workdir, ignore_cache=args.ignore_cache
|
su_catalog_url, args.workdir, ignore_cache=args.ignore_cache
|
||||||
)
|
)
|
||||||
product_info = os_installer_product_info(
|
product_info = os_installer_product_info(
|
||||||
catalog, args.workdir, ignore_cache=args.ignore_cache
|
catalog, args.workdir, args.pkg, ignore_cache=args.ignore_cache
|
||||||
)
|
)
|
||||||
if not product_info:
|
if not product_info:
|
||||||
print("No macOS installer products found in the sucatalog.", file=sys.stderr)
|
print("No macOS installer products found in the sucatalog.", file=sys.stderr)
|
||||||
@ -1160,6 +1174,30 @@ def main():
|
|||||||
print("Exiting.")
|
print("Exiting.")
|
||||||
exit(0)
|
exit(0)
|
||||||
|
|
||||||
|
# shortened workflow if we just want a macOS Big Sur+ package
|
||||||
|
# taken from @scriptingosx's Fetch-Installer-Pkg project
|
||||||
|
# (https://github.com/scriptingosx/fetch-installer-pkg)
|
||||||
|
if args.pkg:
|
||||||
|
product = catalog['Products'][product_id]
|
||||||
|
|
||||||
|
# determine the InstallAssistant pkg url
|
||||||
|
for package in product['Packages']:
|
||||||
|
package_url = package['URL']
|
||||||
|
if package_url.endswith('InstallAssistant.pkg'):
|
||||||
|
break
|
||||||
|
|
||||||
|
# print("Package URL is %s" % package_url)
|
||||||
|
download_pkg = replicate_url(package_url, args.workdir, True, ignore_cache=args.ignore_cache)
|
||||||
|
|
||||||
|
pkg_name = ('InstallAssistant-%s-%s.pkg' % (product_info[product_id]['version'],
|
||||||
|
product_info[product_id]['BUILD']))
|
||||||
|
|
||||||
|
# hard link the downloaded file to cwd
|
||||||
|
local_pkg = os.path.join(args.workdir, pkg_name)
|
||||||
|
os.link(download_pkg, local_pkg)
|
||||||
|
print("Package downloaded to: %s" % local_pkg)
|
||||||
|
|
||||||
|
else:
|
||||||
# download all the packages for the selected product
|
# download all the packages for the selected product
|
||||||
replicate_product(catalog, product_id, args.workdir, ignore_cache=args.ignore_cache)
|
replicate_product(catalog, product_id, args.workdir, ignore_cache=args.ignore_cache)
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user