2017-09-22 21:24:31 +02:00
|
|
|
<?php
|
|
|
|
/*
|
2018-03-17 22:20:20 +01:00
|
|
|
Copyright 2018 UUP dump API authors
|
2017-09-22 21:24:31 +02:00
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
2017-09-29 23:40:56 +02:00
|
|
|
require_once dirname(__FILE__).'/shared/main.php';
|
|
|
|
require_once dirname(__FILE__).'/shared/requests.php';
|
2017-12-20 17:35:14 +01:00
|
|
|
require_once dirname(__FILE__).'/shared/packs.php';
|
2017-09-23 17:47:19 +02:00
|
|
|
|
2017-09-22 21:24:31 +02:00
|
|
|
function uupGetFiles($updateId = 'c2a1d787-647b-486d-b264-f90f3782cdc6', $usePack = 0, $desiredEdition = 0) {
|
2017-09-23 17:47:19 +02:00
|
|
|
uupApiPrintBrand();
|
2017-09-22 21:24:31 +02:00
|
|
|
|
|
|
|
function packsByEdition($edition, $pack, $lang, $filesKeys) {
|
|
|
|
$filesTemp = array();
|
|
|
|
|
|
|
|
if($edition != 'editionNeutral') {
|
|
|
|
$temp = preg_grep('/'.$edition.'_'.$lang.'\.esd/i', $filesKeys);
|
|
|
|
$filesTemp = array_merge($filesTemp, $temp);
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach($pack as $val) {
|
2017-10-27 21:38:31 +02:00
|
|
|
$temp = preg_grep('/'.$val.'.*/i', $filesKeys);
|
2017-09-22 21:24:31 +02:00
|
|
|
$filesTemp = array_merge($filesTemp, $temp);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $filesTemp;
|
|
|
|
}
|
|
|
|
|
2017-12-20 17:35:14 +01:00
|
|
|
$info = @file_get_contents('fileinfo/'.$updateId.'.json');
|
|
|
|
if(empty($info)) {
|
|
|
|
$info = array(
|
|
|
|
'ring' => 'WIF',
|
|
|
|
'flight' => 'Active',
|
|
|
|
'checkBuild' => '10.0.16251.0',
|
|
|
|
'files' => array(),
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
$info = json_decode($info, true);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(isset($info['build'])) {
|
|
|
|
$build = explode('.', $info['build']);
|
|
|
|
$build = $build[0];
|
|
|
|
} else {
|
|
|
|
$build = 9841;
|
|
|
|
}
|
|
|
|
|
|
|
|
$packs = uupGetPacks($build);
|
|
|
|
$packsForLangs = $packs['packsForLangs'];
|
|
|
|
$editionPacks = $packs['editionPacks'];
|
2017-12-24 22:23:18 +01:00
|
|
|
$checkEditions = $packs['allEditions'];
|
2017-12-20 17:35:14 +01:00
|
|
|
$packs = $packs['packs'];
|
|
|
|
|
2017-09-22 21:24:31 +02:00
|
|
|
if($usePack) {
|
|
|
|
$usePack = strtolower($usePack);
|
|
|
|
if(!isset($packsForLangs[$usePack])) {
|
|
|
|
return array('error' => 'UNSUPPORTED_LANG');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-10-16 18:03:26 +02:00
|
|
|
$desiredEdition = strtoupper($desiredEdition);
|
2017-09-22 21:24:31 +02:00
|
|
|
|
2018-03-17 22:20:20 +01:00
|
|
|
switch($desiredEdition) {
|
|
|
|
case 0: break;
|
|
|
|
case 'WUBFILE': break;
|
2017-09-22 21:24:31 +02:00
|
|
|
|
2018-03-17 22:20:20 +01:00
|
|
|
case 'UPDATEONLY':
|
|
|
|
if(!isset($info['containsCU']) || !$info['containsCU']) {
|
|
|
|
return array('error' => 'NOT_CUMULATIVE_UPDATE');
|
|
|
|
}
|
|
|
|
break;
|
2017-09-22 21:24:31 +02:00
|
|
|
|
2018-03-17 22:20:20 +01:00
|
|
|
default:
|
|
|
|
if(!$usePack) {
|
|
|
|
return array('error' => 'UNSPECIFIED_LANG');
|
|
|
|
}
|
|
|
|
if(!isset($editionPacks[$desiredEdition])) {
|
|
|
|
return array('error' => 'UNSUPPORTED_EDITION');
|
|
|
|
}
|
2017-12-24 22:23:18 +01:00
|
|
|
|
2018-03-17 22:20:20 +01:00
|
|
|
$supported = 0;
|
|
|
|
foreach($packsForLangs[$usePack] as $val) {
|
|
|
|
if($editionPacks[$desiredEdition] == $val) $supported = 1;
|
|
|
|
}
|
2017-09-22 21:24:31 +02:00
|
|
|
|
2018-03-17 22:20:20 +01:00
|
|
|
if(!$supported) {
|
|
|
|
return array('error' => 'UNSUPPORTED_COMBINATION');
|
|
|
|
}
|
|
|
|
unset($supported);
|
|
|
|
|
|
|
|
$checkEditions = array($desiredEdition);
|
|
|
|
break;
|
2017-10-16 18:03:26 +02:00
|
|
|
}
|
|
|
|
|
2017-10-23 22:53:33 +02:00
|
|
|
$rev = 1;
|
|
|
|
if(preg_match('/_rev\./', $updateId)) {
|
|
|
|
$rev = preg_replace('/.*_rev\./', '', $updateId);
|
|
|
|
$updateId = preg_replace('/_rev\..*/', '', $updateId);
|
|
|
|
}
|
|
|
|
|
2017-11-03 19:33:17 +01:00
|
|
|
$fetchTime = time();
|
2017-09-22 21:24:31 +02:00
|
|
|
consoleLogger('Fetching information from the server...');
|
2017-10-23 22:53:33 +02:00
|
|
|
$postData = composeFileGetRequest($updateId, uupDevice(), $info, $rev);
|
2017-09-22 21:24:31 +02:00
|
|
|
$out = sendWuPostRequest('https://fe3.delivery.mp.microsoft.com/ClientWebService/client.asmx/secured', $postData);
|
|
|
|
consoleLogger('Information was successfully fetched.');
|
|
|
|
|
|
|
|
consoleLogger('Parsing information...');
|
|
|
|
preg_match_all('/<FileLocation>.*?<\/FileLocation>/', $out, $out);
|
|
|
|
if(empty($out[0])) {
|
2017-10-01 16:06:01 +02:00
|
|
|
consoleLogger('An error has occurred');
|
2017-09-22 21:24:31 +02:00
|
|
|
return array('error' => 'EMPTY_FILELIST');
|
|
|
|
}
|
|
|
|
|
2017-09-30 23:04:30 +02:00
|
|
|
$updateArch = (isset($info['arch'])) ? $info['arch'] : 'UNKNOWN';
|
2018-03-29 19:41:22 +02:00
|
|
|
$updateBuild = (isset($info['build'])) ? $info['build'] : 'UNKNOWN';
|
2017-09-22 21:24:31 +02:00
|
|
|
$updateName = (isset($info['title'])) ? $info['title'] : 'Unknown update: '.$updateId;
|
2018-03-29 19:41:22 +02:00
|
|
|
|
2017-09-22 21:24:31 +02:00
|
|
|
$info = $info['files'];
|
|
|
|
$out = preg_replace('/<FileLocation>|<\/FileLocation>/', '', $out[0]);
|
|
|
|
|
|
|
|
$files = array();
|
|
|
|
foreach($out as $val) {
|
2017-11-03 19:33:17 +01:00
|
|
|
$sha1 = explode('<FileDigest>', $val, 2);
|
|
|
|
$sha1 = explode('</FileDigest>', $sha1[1], 2);
|
|
|
|
$sha1 = bin2hex(base64_decode($sha1[0]));
|
2017-09-22 21:24:31 +02:00
|
|
|
|
2017-10-27 21:38:31 +02:00
|
|
|
preg_match('/files\/.{8}-.{4}-.{4}-.{4}-.{12}/', $val, $guid);
|
2017-09-22 21:24:31 +02:00
|
|
|
$guid = preg_replace('/files\/|\?$/', '', $guid[0]);
|
|
|
|
|
|
|
|
if(empty($info[$sha1]['name'])) {
|
|
|
|
$name = $guid;
|
|
|
|
} else {
|
|
|
|
$name = $info[$sha1]['name'];
|
|
|
|
}
|
|
|
|
|
|
|
|
if(empty($info[$sha1]['name'])) {
|
2017-11-03 19:33:17 +01:00
|
|
|
$size = -1;
|
2017-09-22 21:24:31 +02:00
|
|
|
} else {
|
|
|
|
$size = $info[$sha1]['size'];
|
|
|
|
}
|
|
|
|
|
2017-11-03 19:33:17 +01:00
|
|
|
if(!isset($fileSizes[$name])) $fileSizes[$name] = -2;
|
2017-09-22 21:24:31 +02:00
|
|
|
|
2017-10-27 21:38:31 +02:00
|
|
|
if($size > $fileSizes[$name]) {
|
2017-11-03 19:33:17 +01:00
|
|
|
$url = explode('<Url>', $val, 2);
|
|
|
|
$url = explode('</Url>', $url[1], 2);
|
|
|
|
$url = html_entity_decode($url[0]);
|
2017-09-22 21:24:31 +02:00
|
|
|
|
2017-10-27 21:38:31 +02:00
|
|
|
preg_match('/P1=.*?&/', $url, $expire);
|
|
|
|
if(isset($expire[0])) {
|
|
|
|
$expire = preg_replace('/P1=|&$/', '', $expire[0]);
|
2017-10-16 18:03:26 +02:00
|
|
|
}
|
2017-10-27 21:38:31 +02:00
|
|
|
|
2017-11-03 19:33:17 +01:00
|
|
|
$expire = intval($expire);
|
|
|
|
|
|
|
|
if($size < 0) {
|
|
|
|
$temp = ($expire - $fetchTime) / 600;
|
|
|
|
$size = ($temp - 1) * 31457280;
|
|
|
|
if($size < 0) $size = 0;
|
|
|
|
unset($temp);
|
|
|
|
}
|
|
|
|
|
2017-10-27 21:38:31 +02:00
|
|
|
$fileSizes[$name] = $size;
|
|
|
|
|
|
|
|
$temp = array();
|
|
|
|
$temp['sha1'] = $sha1;
|
|
|
|
$temp['size'] = $size;
|
|
|
|
$temp['url'] = $url;
|
|
|
|
$temp['uuid'] = $guid;
|
2017-11-03 19:33:17 +01:00
|
|
|
$temp['expire'] = $expire;
|
2017-10-27 21:38:31 +02:00
|
|
|
|
|
|
|
$newName = preg_replace('/~31bf3856ad364e35/', '', $name);
|
|
|
|
$newName = preg_replace('/~~\.|~\./', '.', $newName);
|
|
|
|
$newName = preg_replace('/~/', '-', $newName);
|
|
|
|
|
|
|
|
$files[$newName] = $temp;
|
2017-09-22 21:24:31 +02:00
|
|
|
}
|
|
|
|
}
|
2017-10-28 23:10:21 +02:00
|
|
|
unset($temp, $newName);
|
2017-09-22 21:24:31 +02:00
|
|
|
|
2017-10-27 21:38:31 +02:00
|
|
|
$psf = array_keys($files);
|
|
|
|
$psf = preg_grep('/\.psf$/i', $psf);
|
|
|
|
|
|
|
|
$index = 0;
|
|
|
|
$removeFiles = array();
|
|
|
|
foreach($psf as $val) {
|
|
|
|
$name = preg_replace('/\.psf$/i', '', $val);
|
|
|
|
$removeFiles[$index] = $name;
|
|
|
|
unset($files[$val]);
|
|
|
|
$index++;
|
|
|
|
}
|
2017-10-28 23:10:21 +02:00
|
|
|
unset($index, $name, $psf);
|
2017-10-27 21:38:31 +02:00
|
|
|
|
2017-10-28 23:10:21 +02:00
|
|
|
$temp = preg_grep('/'.$updateArch.'_.*|arm64.arm_.*/i', $removeFiles);
|
|
|
|
foreach($temp as $key => $val) {
|
|
|
|
if(isset($files[$val.'.cab'])) unset($files[$val.'.cab']);
|
|
|
|
unset($removeFiles[$key]);
|
|
|
|
}
|
|
|
|
unset($temp);
|
2017-10-25 20:31:18 +02:00
|
|
|
|
2017-10-28 23:10:21 +02:00
|
|
|
foreach($removeFiles as $val) {
|
|
|
|
if(isset($files[$val.'.esd'])) {
|
2017-10-27 21:38:31 +02:00
|
|
|
if(isset($files[$val.'.cab'])) unset($files[$val.'.cab']);
|
|
|
|
}
|
2017-10-25 20:31:18 +02:00
|
|
|
|
2017-10-28 23:10:21 +02:00
|
|
|
if(isset($files[$val.'.ESD'])) {
|
|
|
|
if(isset($files[$val.'.cab'])) unset($files[$val.'.cab']);
|
2017-09-22 21:24:31 +02:00
|
|
|
}
|
|
|
|
}
|
2017-10-28 23:10:21 +02:00
|
|
|
unset($removeFiles);
|
2017-09-22 21:24:31 +02:00
|
|
|
|
|
|
|
$filesKeys = array_keys($files);
|
2017-10-16 18:03:26 +02:00
|
|
|
|
2018-03-17 22:20:20 +01:00
|
|
|
switch($desiredEdition) {
|
|
|
|
case 'UPDATEONLY':
|
|
|
|
$skipPackBuild = 1;
|
|
|
|
$removeFiles = preg_grep('/Windows10\.0-KB.*-EXPRESS/i', $filesKeys);
|
|
|
|
|
|
|
|
foreach($removeFiles as $val) {
|
|
|
|
if(isset($files[$val])) unset($files[$val]);
|
|
|
|
}
|
|
|
|
|
|
|
|
unset($removeFiles, $temp);
|
|
|
|
$filesKeys = array_keys($files);
|
|
|
|
|
|
|
|
$filesKeys = preg_grep('/Windows10\.0-KB/i', $filesKeys);
|
|
|
|
break;
|
2017-10-16 18:03:26 +02:00
|
|
|
|
2018-03-17 22:20:20 +01:00
|
|
|
case 'WUBFILE':
|
|
|
|
$skipPackBuild = 1;
|
|
|
|
$filesKeys = preg_grep('/WindowsUpdateBox.exe/i', $filesKeys);
|
|
|
|
break;
|
2017-10-16 18:03:26 +02:00
|
|
|
|
2018-03-17 22:20:20 +01:00
|
|
|
default:
|
|
|
|
$skipPackBuild = 0;
|
|
|
|
break;
|
2017-10-16 18:03:26 +02:00
|
|
|
}
|
|
|
|
|
2018-03-17 22:20:20 +01:00
|
|
|
if($usePack && !$skipPackBuild) {
|
2017-12-24 22:23:18 +01:00
|
|
|
$esd = array_keys($files);
|
|
|
|
$esd = preg_grep('/\.esd$/i', $esd);
|
|
|
|
|
|
|
|
foreach($esd as $key => $val) {
|
|
|
|
$esd[$key] = strtoupper($val);
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach($checkEditions as $val) {
|
|
|
|
$testEsd[] = $val.'_'.strtoupper($usePack).'.ESD';
|
|
|
|
}
|
|
|
|
|
|
|
|
$foundMetadata = array_intersect($testEsd, $esd);
|
|
|
|
consoleLogger('Found '.count($foundMetadata).' metadata ESD file(s).');
|
|
|
|
|
|
|
|
if(empty($foundMetadata)) {
|
|
|
|
return array('error' => 'NO_METADATA_ESD');
|
|
|
|
}
|
|
|
|
|
2017-10-28 23:10:21 +02:00
|
|
|
$removeFiles = array();
|
|
|
|
$removeFiles[0] = preg_grep('/RetailDemo-OfflineContent/i', $filesKeys);
|
|
|
|
$removeFiles[1] = preg_grep('/Windows10\.0-KB.*-EXPRESS/i', $filesKeys);
|
2017-09-22 21:24:31 +02:00
|
|
|
|
|
|
|
foreach($removeFiles as $val) {
|
2017-10-28 23:10:21 +02:00
|
|
|
foreach($val as $temp) {
|
|
|
|
if(isset($files[$temp])) unset($files[$temp]);
|
|
|
|
}
|
2017-09-22 21:24:31 +02:00
|
|
|
}
|
2017-10-28 23:10:21 +02:00
|
|
|
unset($removeFiles, $temp, $val);
|
2017-09-22 21:24:31 +02:00
|
|
|
|
|
|
|
$filesKeys = array_keys($files);
|
|
|
|
$filesTemp = array();
|
|
|
|
|
|
|
|
$temp = preg_grep('/.*'.$usePack.'-Package.*/i', $filesKeys);
|
|
|
|
$filesTemp = array_merge($filesTemp, $temp);
|
|
|
|
|
|
|
|
$temp = preg_grep('/.*'.$usePack.'_lp..../i', $filesKeys);
|
|
|
|
$filesTemp = array_merge($filesTemp, $temp);
|
|
|
|
|
|
|
|
foreach($packsForLangs[$usePack] as $num) {
|
|
|
|
foreach($packs[$num] as $key => $val) {
|
|
|
|
if($key == 'editionNeutral'
|
|
|
|
|| $key == $desiredEdition
|
|
|
|
|| !$desiredEdition) {
|
|
|
|
$temp = packsByEdition($key, $val, $usePack, $filesKeys);
|
|
|
|
$filesTemp = array_merge($filesTemp, $temp);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$filesKeys = array_unique($filesTemp);
|
|
|
|
unset($filesTemp, $temp, $val, $num);
|
|
|
|
}
|
|
|
|
|
2017-10-06 16:03:39 +02:00
|
|
|
if(empty($filesKeys)) {
|
|
|
|
return array('error' => 'NO_FILES');
|
|
|
|
}
|
|
|
|
|
2017-09-22 21:24:31 +02:00
|
|
|
foreach($filesKeys as $val) {
|
|
|
|
$filesNew[$val] = $files[$val];
|
|
|
|
}
|
|
|
|
|
|
|
|
$files = $filesNew;
|
|
|
|
ksort($files);
|
|
|
|
|
|
|
|
consoleLogger('Successfully parsed the information.');
|
|
|
|
|
|
|
|
return array(
|
2017-09-23 17:47:19 +02:00
|
|
|
'apiVersion' => uupApiVersion(),
|
|
|
|
'updateName' => $updateName,
|
2017-09-30 23:04:30 +02:00
|
|
|
'arch' => $updateArch,
|
2018-03-29 19:41:22 +02:00
|
|
|
'build' => $updateBuild,
|
2017-09-22 21:24:31 +02:00
|
|
|
'files' => $files,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
?>
|