#!/usr/bin/python3 # # This file is part of MagiskOnWSALocal. # # MagiskOnWSALocal is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as # published by the Free Software Foundation, either version 3 of the # License, or (at your option) any later version. # # MagiskOnWSALocal is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Affero General Public License for more details. # # You should have received a copy of the GNU Affero General Public License # along with MagiskOnWSALocal. If not, see . # # Copyright (C) 2023 LSPosed Contributors # import html import os import re import sys import warnings from pathlib import Path from threading import Thread from typing import OrderedDict from xml.dom import minidom from requests import Session class Prop(OrderedDict): def __init__(self, props: str=...) -> None: super().__init__() for i, line in enumerate(props.splitlines(False)): if '=' in line: k, v = line.split('=', 1) self[k] = v else: self[f".{i}"] = line def get(self, key: str) -> str: return self[key] warnings.filterwarnings("ignore") arch = sys.argv[1] release_name_map = {"retail": "Retail", "RP": "Release Preview", "WIS": "Insider Slow", "WIF": "Insider Fast"} release_type = sys.argv[2] if sys.argv[2] != "" else "Retail" release_name = release_name_map[release_type] download_dir = Path.cwd().parent / "download" if sys.argv[3] == "" else Path(sys.argv[3]).resolve() ms_account_conf = download_dir/".ms_account" tempScript = sys.argv[4] cat_id = '858014f3-3934-4abe-8078-4aa193e74ca8' user = '' session = Session() if ms_account_conf.is_file(): with open(ms_account_conf, "r") as f: conf = Prop(f.read()) user = conf.get('user_code') print(f"Generating WSA download link: arch={arch} release_type={release_name}", flush=True) with open(Path.cwd().parent / ("xml/GetCookie.xml"), "r") as f: cookie_content = f.read().format(user) out = session.post( 'https://fe3.delivery.mp.microsoft.com/ClientWebService/client.asmx', data=cookie_content, headers={'Content-Type': 'application/soap+xml; charset=utf-8'}, verify=False ) doc = minidom.parseString(out.text) cookie = doc.getElementsByTagName('EncryptedData')[0].firstChild.nodeValue with open(Path.cwd().parent / "xml/WUIDRequest.xml", "r") as f: cat_id_content = f.read().format(user, cookie, cat_id, release_type) out = session.post( 'https://fe3.delivery.mp.microsoft.com/ClientWebService/client.asmx', data=cat_id_content, headers={'Content-Type': 'application/soap+xml; charset=utf-8'}, verify=False ) doc = minidom.parseString(html.unescape(out.text)) filenames = {} for node in doc.getElementsByTagName('Files'): filenames[node.parentNode.parentNode.getElementsByTagName( 'ID')[0].firstChild.nodeValue] = f"{node.firstChild.attributes['InstallerSpecificIdentifier'].value}_{node.firstChild.attributes['FileName'].value}" pass identities = [] for node in doc.getElementsByTagName('SecuredFragment'): filename = filenames[node.parentNode.parentNode.parentNode.getElementsByTagName('ID')[ 0].firstChild.nodeValue] update_identity = node.parentNode.parentNode.firstChild identities += [(update_identity.attributes['UpdateID'].value, update_identity.attributes['RevisionNumber'].value, filename)] with open(Path.cwd().parent / "xml/FE3FileUrl.xml", "r") as f: FE3_file_content = f.read() if not download_dir.is_dir(): download_dir.mkdir() tmpdownlist = open(download_dir/tempScript, 'a') def send_req(i,v,out_file,out_file_name): out = session.post( 'https://fe3.delivery.mp.microsoft.com/ClientWebService/client.asmx/secured', data=FE3_file_content.format(user, i, v, release_type), headers={'Content-Type': 'application/soap+xml; charset=utf-8'}, verify=False ) doc = minidom.parseString(out.text) for l in doc.getElementsByTagName("FileLocation"): url = l.getElementsByTagName("Url")[0].firstChild.nodeValue if len(url) != 99: print(f"download link: {url} to {out_file}", flush=True) tmpdownlist.writelines(url + '\n') tmpdownlist.writelines(f' dir={download_dir}\n') tmpdownlist.writelines(f' out={out_file_name}\n') threads = [] for i, v, f in identities: if re.match(f"Microsoft\.UI\.Xaml\..*_{arch}_.*\.appx", f): out_file_name = f"Microsoft.UI.Xaml_{arch}.appx" out_file = download_dir / out_file_name # elif re.match(f"Microsoft\.VCLibs\..+\.UWPDesktop_.*_{arch}_.*\.appx", f): # out_file_name = f"Microsoft.VCLibs.140.00.UWPDesktop_{arch}.appx" # out_file = download_dir / out_file_name elif re.match(f"MicrosoftCorporationII\.WindowsSubsystemForAndroid_.*\.msixbundle", f): wsa_long_ver = re.search(u'\d{4}.\d{5}.\d{1,}.\d{1,}', f).group() print(f'WSA Version={wsa_long_ver}\n', flush=True) main_ver = wsa_long_ver.split(".")[0] with open(os.environ['WSA_WORK_ENV'], 'a') as environ_file: environ_file.write(f"DOWN_WSA_VERSION={wsa_long_ver}\n") environ_file.write(f"DOWN_WSA_MAIN_VERSION={main_ver}\n") out_file_name = f"wsa-{release_type}.zip" out_file = download_dir / out_file_name else: continue th = Thread(target=send_req, args=(i,v,out_file,out_file_name)) threads.append(th) th.daemon = True th.start() tmpdownlist.writelines(f'https://aka.ms/Microsoft.VCLibs.{arch}.14.00.Desktop.appx\n') tmpdownlist.writelines(f' dir={download_dir}\n') for th in threads: th.join() tmpdownlist.close()