forked from uup-dump/api
Compare commits
3
Commits
1e07081a0e
..
master
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
1c942f52d3 | ||
|
|
20ddcb74e5 | ||
|
|
287a25a353 |
+20
-5
@@ -33,6 +33,15 @@ function uupApiPrivateParseFlags($str) {
|
|||||||
return [$split[0], $flagsSafe];
|
return [$split[0], $flagsSafe];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function uupApiPrivateParseRing($str) {
|
||||||
|
$split = explode(':', $str);
|
||||||
|
if(!isset($split[1])) {
|
||||||
|
return [$split[0], -1];
|
||||||
|
}
|
||||||
|
|
||||||
|
return $split;
|
||||||
|
}
|
||||||
|
|
||||||
function uupApiPrivateGetLatestBuild() {
|
function uupApiPrivateGetLatestBuild() {
|
||||||
$ids = uupListIds();
|
$ids = uupListIds();
|
||||||
|
|
||||||
@@ -100,6 +109,7 @@ function uupApiPrivateNormalizeFetchParams($params) {
|
|||||||
'sku' => 48,
|
'sku' => 48,
|
||||||
'type' => 'Production',
|
'type' => 'Production',
|
||||||
'flags' => [],
|
'flags' => [],
|
||||||
|
'targetRelease' => -1,
|
||||||
], $params);
|
], $params);
|
||||||
|
|
||||||
if(!is_array($np['flags'])) $np['flags'] = [];
|
if(!is_array($np['flags'])) $np['flags'] = [];
|
||||||
@@ -113,6 +123,7 @@ function uupApiPrivateNormalizeFetchParams($params) {
|
|||||||
$np['sku'] = intval($np['sku']);
|
$np['sku'] = intval($np['sku']);
|
||||||
$np['type'] = ucwords(strtolower($np['type']));
|
$np['type'] = ucwords(strtolower($np['type']));
|
||||||
$np['flags'] = array_map('strtolower', $np['flags']);
|
$np['flags'] = array_map('strtolower', $np['flags']);
|
||||||
|
$np['targetRelease'] = intval($np['targetRelease']);
|
||||||
|
|
||||||
return $np;
|
return $np;
|
||||||
}
|
}
|
||||||
@@ -128,6 +139,7 @@ function uupFetchUpd(
|
|||||||
$cacheRequests = 0
|
$cacheRequests = 0
|
||||||
) {
|
) {
|
||||||
[$build, $flags] = uupApiPrivateParseFlags($build);
|
[$build, $flags] = uupApiPrivateParseFlags($build);
|
||||||
|
[$ring, $targetRelease] = uupApiPrivateParseRing($ring);
|
||||||
|
|
||||||
$params = [
|
$params = [
|
||||||
'arch' => $arch,
|
'arch' => $arch,
|
||||||
@@ -138,6 +150,7 @@ function uupFetchUpd(
|
|||||||
'sku' => $sku,
|
'sku' => $sku,
|
||||||
'type' => $type,
|
'type' => $type,
|
||||||
'flags' => $flags,
|
'flags' => $flags,
|
||||||
|
'targetRelease' => $targetRelease,
|
||||||
];
|
];
|
||||||
|
|
||||||
return uupFetchUpd2($params, $cacheRequests);
|
return uupFetchUpd2($params, $cacheRequests);
|
||||||
@@ -157,6 +170,7 @@ function uupFetchUpd2($params, $cacheRequests = 0) {
|
|||||||
$sku = $np['sku'];
|
$sku = $np['sku'];
|
||||||
$type = $np['type'];
|
$type = $np['type'];
|
||||||
$flags = $np['flags'];
|
$flags = $np['flags'];
|
||||||
|
$targetRelease = $np['targetRelease'];
|
||||||
|
|
||||||
$flagsStr = implode(',', $flags);
|
$flagsStr = implode(',', $flags);
|
||||||
|
|
||||||
@@ -214,13 +228,13 @@ function uupFetchUpd2($params, $cacheRequests = 0) {
|
|||||||
$type = 'Production';
|
$type = 'Production';
|
||||||
}
|
}
|
||||||
|
|
||||||
$res = "api-fetch-$arch-$ring-$flight-$branch-$build-$flagsStr-$minor-$sku-$type";
|
$res = "api-fetch-$arch-$ring-$flight-$branch-$build-$flagsStr-$minor-$sku-$type-$targetRelease";
|
||||||
$cache = new UupDumpCache($res);
|
$cache = new UupDumpCache($res);
|
||||||
$fromCache = $cache->get();
|
$fromCache = $cache->get();
|
||||||
if($fromCache !== false) return $fromCache;
|
if($fromCache !== false) return $fromCache;
|
||||||
|
|
||||||
consoleLogger('Fetching information from the server...');
|
consoleLogger('Fetching information from the server...');
|
||||||
$composerArgs = [$arch, $flight, $ring, $build, $sku, $type, $flags, $branch];
|
$composerArgs = [$arch, $flight, $ring, $build, $sku, $type, $flags, $branch, $targetRelease];
|
||||||
$out = sendWuPostRequestHelper('client', 'composeFetchUpdRequest', $composerArgs);
|
$out = sendWuPostRequestHelper('client', 'composeFetchUpdRequest', $composerArgs);
|
||||||
if($out === false || $out['error'] != 200) {
|
if($out === false || $out['error'] != 200) {
|
||||||
consoleLogger('The request has failed');
|
consoleLogger('The request has failed');
|
||||||
@@ -248,7 +262,7 @@ function uupFetchUpd2($params, $cacheRequests = 0) {
|
|||||||
$num++;
|
$num++;
|
||||||
consoleLogger("Checking build information for update {$num} of {$updatesNum}...");
|
consoleLogger("Checking build information for update {$num} of {$updatesNum}...");
|
||||||
|
|
||||||
$info = parseFetchUpdate($val, $out, $arch, $ring, $flight, $build, $sku, $type, $flags, $branch);
|
$info = parseFetchUpdate($val, $out, $arch, $ring, $flight, $build, $sku, $type, $flags, $branch, $targetRelease);
|
||||||
if(isset($info['error'])) {
|
if(isset($info['error'])) {
|
||||||
$errorCount++;
|
$errorCount++;
|
||||||
continue;
|
continue;
|
||||||
@@ -278,7 +292,7 @@ function uupFetchUpd2($params, $cacheRequests = 0) {
|
|||||||
return $data;
|
return $data;
|
||||||
}
|
}
|
||||||
|
|
||||||
function parseFetchUpdate($updateInfo, $out, $arch, $ring, $flight, $build, $sku, $type, $flags, $branch) {
|
function parseFetchUpdate($updateInfo, $out, $arch, $ring, $flight, $build, $sku, $type, $flags, $branch, $targetRelease) {
|
||||||
$updateNumId = preg_replace('/<UpdateInfo><ID>|<\/ID>.*/i', '', $updateInfo);
|
$updateNumId = preg_replace('/<UpdateInfo><ID>|<\/ID>.*/i', '', $updateInfo);
|
||||||
|
|
||||||
$updates = preg_replace('/<Update>/', "\n<Update>", $out);
|
$updates = preg_replace('/<Update>/', "\n<Update>", $out);
|
||||||
@@ -379,7 +393,7 @@ function parseFetchUpdate($updateInfo, $out, $arch, $ring, $flight, $build, $sku
|
|||||||
}
|
}
|
||||||
|
|
||||||
if($foundType == 'oobe' && !preg_match("/OOBE|Out of Box/i", $updateTitle)) {
|
if($foundType == 'oobe' && !preg_match("/OOBE|Out of Box/i", $updateTitle)) {
|
||||||
$updateTitle = str_replace('Update', 'Update for Windows OOBE', $updateTitle);
|
$updateTitle = str_replace('Update', 'OOBE Update', $updateTitle);
|
||||||
}
|
}
|
||||||
|
|
||||||
if($sku == 406)
|
if($sku == 406)
|
||||||
@@ -493,6 +507,7 @@ function parseFetchUpdate($updateInfo, $out, $arch, $ring, $flight, $build, $sku
|
|||||||
$temp['ring'] = $ring;
|
$temp['ring'] = $ring;
|
||||||
$temp['flight'] = $flight;
|
$temp['flight'] = $flight;
|
||||||
$temp['branch'] = $branch;
|
$temp['branch'] = $branch;
|
||||||
|
$temp['targetRelease'] = $targetRelease;
|
||||||
$temp['arch'] = $foundArch;
|
$temp['arch'] = $foundArch;
|
||||||
$temp['fetchArch'] = $arch == 'all' ? 'amd64' : $arch;
|
$temp['fetchArch'] = $arch == 'all' ? 'amd64' : $arch;
|
||||||
$temp['build'] = $foundBuild;
|
$temp['build'] = $foundBuild;
|
||||||
|
|||||||
+73
-74
@@ -27,19 +27,8 @@ function uupApiPrivateInvalidateFileinfoCache() {
|
|||||||
$cache2->delete();
|
$cache2->delete();
|
||||||
}
|
}
|
||||||
|
|
||||||
function uupApiPrivateGetFromFileinfo($sortByDate = 0) {
|
function uupApiGetFileInfoCache($cacheFile) {
|
||||||
$dirs = uupApiGetFileinfoDirs();
|
|
||||||
$fileinfo = $dirs['fileinfoData'];
|
|
||||||
$fileinfoRoot = $dirs['fileinfo'];
|
|
||||||
|
|
||||||
$files = scandir($fileinfo);
|
|
||||||
$files = preg_grep('/\.json$/', $files);
|
|
||||||
|
|
||||||
consoleLogger('Parsing database info...');
|
|
||||||
|
|
||||||
$cacheFile = $fileinfoRoot.'/cache.json';
|
|
||||||
$cacheV2Version = 1;
|
$cacheV2Version = 1;
|
||||||
|
|
||||||
$database = uupApiReadJson($cacheFile);
|
$database = uupApiReadJson($cacheFile);
|
||||||
|
|
||||||
if(isset($database['version'])) {
|
if(isset($database['version'])) {
|
||||||
@@ -54,88 +43,98 @@ function uupApiPrivateGetFromFileinfo($sortByDate = 0) {
|
|||||||
$database = array();
|
$database = array();
|
||||||
}
|
}
|
||||||
|
|
||||||
if(empty($database)) $database = array();
|
if(empty($database))
|
||||||
|
$database = [];
|
||||||
|
|
||||||
|
return $database;
|
||||||
|
}
|
||||||
|
|
||||||
|
function uupApiPrivateGetCachedBuild(&$cache, $uuid) {
|
||||||
|
if(!isset($cache[$uuid])) {
|
||||||
|
$info = uupApiReadFileinfoMeta($uuid);
|
||||||
|
$data = [
|
||||||
|
'title' => isset($info['title']) ? $info['title'] : 'UNKNOWN',
|
||||||
|
'build' => isset($info['build']) ? $info['build'] : 'UNKNOWN',
|
||||||
|
'arch' => isset($info['arch']) ? $info['arch'] : 'UNKNOWN',
|
||||||
|
'created' => isset($info['created']) ? $info['created'] : null,
|
||||||
|
];
|
||||||
|
|
||||||
|
$cache[$uuid] = $data;
|
||||||
|
} else {
|
||||||
|
$data = $cache[$uuid];
|
||||||
|
}
|
||||||
|
|
||||||
|
$data['uuid'] = $uuid;
|
||||||
|
return $data;
|
||||||
|
}
|
||||||
|
|
||||||
|
function uupApiPrivateGetSortTag($data, $sortByDate) {
|
||||||
|
$tmp = explode('.', $data['build']);
|
||||||
|
|
||||||
|
if($sortByDate) {
|
||||||
|
$tag = PHP_INT_MAX - intval($data['created']);
|
||||||
|
} else {
|
||||||
|
$tag = '';
|
||||||
|
}
|
||||||
|
|
||||||
|
$tag .= intval(uupApiIsUpdateLowPriority($data['title']));
|
||||||
|
|
||||||
|
if(isset($tmp[1])) {
|
||||||
|
$tag .= str_pad(999999999 - $tmp[0], 10, '0', STR_PAD_LEFT);
|
||||||
|
$tag .= str_pad(999999999 - $tmp[1], 10, '0', STR_PAD_LEFT);
|
||||||
|
}
|
||||||
|
|
||||||
|
$tag .= $data['arch'] . $data['title'] . $data['uuid'];
|
||||||
|
|
||||||
|
return $tag;
|
||||||
|
}
|
||||||
|
|
||||||
|
function uupApiPrivateGetFromFileinfo($sortByDate = 0) {
|
||||||
|
$dirs = uupApiGetFileinfoDirs();
|
||||||
|
$fileinfo = $dirs['fileinfoData'];
|
||||||
|
$fileinfoRoot = $dirs['fileinfo'];
|
||||||
|
|
||||||
|
$files = scandir($fileinfo);
|
||||||
|
$files = preg_grep('/\.json$/', $files);
|
||||||
|
|
||||||
|
consoleLogger('Parsing database info...');
|
||||||
|
|
||||||
|
$cacheFile = $fileinfoRoot.'/cache.json';
|
||||||
|
$cacheV2Version = 1;
|
||||||
|
|
||||||
|
$database = uupApiGetFileInfoCache($cacheFile);
|
||||||
|
$oldDb = $database;
|
||||||
|
|
||||||
$newDb = array();
|
|
||||||
$builds = array();
|
|
||||||
foreach($files as $file) {
|
foreach($files as $file) {
|
||||||
if($file == '.' || $file == '..')
|
if($file == '.' || $file == '..')
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
$uuid = preg_replace('/\.json$/', '', $file);
|
$uuid = preg_replace('/\.json$/', '', $file);
|
||||||
|
|
||||||
if(!isset($database[$uuid])) {
|
$data = uupApiPrivateGetCachedBuild($database, $uuid);
|
||||||
$info = uupApiReadFileinfoMeta($uuid);
|
$tag = uupApiPrivateGetSortTag($data, $sortByDate);
|
||||||
|
|
||||||
$title = isset($info['title']) ? $info['title'] : 'UNKNOWN';
|
$buildAssoc[$tag] = $uuid;
|
||||||
$build = isset($info['build']) ? $info['build'] : 'UNKNOWN';
|
|
||||||
$arch = isset($info['arch']) ? $info['arch'] : 'UNKNOWN';
|
|
||||||
$created = isset($info['created']) ? $info['created'] : null;
|
|
||||||
|
|
||||||
$temp = array(
|
|
||||||
'title' => $title,
|
|
||||||
'build' => $build,
|
|
||||||
'arch' => $arch,
|
|
||||||
'created' => $created,
|
|
||||||
);
|
|
||||||
|
|
||||||
$newDb[$uuid] = $temp;
|
|
||||||
} else {
|
|
||||||
$title = $database[$uuid]['title'];
|
|
||||||
$build = $database[$uuid]['build'];
|
|
||||||
$arch = $database[$uuid]['arch'];
|
|
||||||
$created = $database[$uuid]['created'];
|
|
||||||
|
|
||||||
$newDb[$uuid] = $database[$uuid];
|
|
||||||
}
|
|
||||||
|
|
||||||
$temp = array(
|
|
||||||
'title' => $title,
|
|
||||||
'build' => $build,
|
|
||||||
'arch' => $arch,
|
|
||||||
'created' => $created,
|
|
||||||
'uuid' => $uuid,
|
|
||||||
);
|
|
||||||
|
|
||||||
$tmp = explode('.', $build);
|
|
||||||
if(isset($tmp[1])) {
|
|
||||||
$tmp[0] = str_pad($tmp[0], 10, '0', STR_PAD_LEFT);
|
|
||||||
$tmp[1] = str_pad($tmp[1], 10, '0', STR_PAD_LEFT);
|
|
||||||
$tmp = $tmp[0].$tmp[1];
|
|
||||||
} else {
|
|
||||||
consoleLogger($uuid.'.json appears to be broken and may be useless.');
|
|
||||||
$tmp = 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
if($sortByDate) {
|
|
||||||
$tmp = $created.$tmp;
|
|
||||||
}
|
|
||||||
|
|
||||||
$buildAssoc[$tmp][] = $arch.$title.$uuid;
|
|
||||||
$builds[$tmp.$arch.$title.$uuid] = $temp;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if(empty($buildAssoc)) return [];
|
if(empty($buildAssoc))
|
||||||
|
return [];
|
||||||
|
|
||||||
krsort($buildAssoc);
|
ksort($buildAssoc);
|
||||||
$buildsNew = array();
|
|
||||||
|
|
||||||
foreach($buildAssoc as $key => $val) {
|
$builds = [];
|
||||||
sort($val);
|
foreach($buildAssoc as $val) {
|
||||||
foreach($val as $id) {
|
$builds[] = uupApiPrivateGetCachedBuild($database, $val);
|
||||||
$buildsNew[] = $builds[$key.$id];
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
$builds = $buildsNew;
|
|
||||||
consoleLogger('Done parsing database info.');
|
consoleLogger('Done parsing database info.');
|
||||||
|
|
||||||
if($newDb != $database) {
|
if($database != $oldDb) {
|
||||||
if(!file_exists('cache')) mkdir('cache');
|
if(!file_exists('cache')) mkdir('cache');
|
||||||
|
|
||||||
$cacheData = array(
|
$cacheData = array(
|
||||||
'version' => $cacheV2Version,
|
'version' => $cacheV2Version,
|
||||||
'database' => $newDb,
|
'database' => $database,
|
||||||
);
|
);
|
||||||
|
|
||||||
$success = @file_put_contents(
|
$success = @file_put_contents(
|
||||||
|
|||||||
+10
-3
@@ -16,7 +16,7 @@ limitations under the License.
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
// Composes DeviceAttributes parameter needed to fetch data
|
// Composes DeviceAttributes parameter needed to fetch data
|
||||||
function composeDeviceAttributes($flight, $ring, $build, $arch, $sku, $type, $flags, $branch) {
|
function composeDeviceAttributes($flight, $ring, $build, $arch, $sku, $type, $flags, $branch, $targetRelease) {
|
||||||
if($branch == 'auto')
|
if($branch == 'auto')
|
||||||
$branch = branchFromBuild($build);
|
$branch = branchFromBuild($build);
|
||||||
|
|
||||||
@@ -241,6 +241,11 @@ function composeDeviceAttributes($flight, $ring, $build, $arch, $sku, $type, $fl
|
|||||||
'WuClientVer='.$build,
|
'WuClientVer='.$build,
|
||||||
);
|
);
|
||||||
|
|
||||||
|
if($bldnum >= 26100) {
|
||||||
|
$attrib[] = 'FlightUpgradeTarget='.$targetRelease;
|
||||||
|
$attrib[] = 'IsFutureKeyEnabled=1';
|
||||||
|
}
|
||||||
|
|
||||||
if(in_array('thisonly', $flags)) {
|
if(in_array('thisonly', $flags)) {
|
||||||
$attrib[] = 'MediaBranch='.$branch;
|
$attrib[] = 'MediaBranch='.$branch;
|
||||||
}
|
}
|
||||||
@@ -363,6 +368,7 @@ function composeFileGetRequest($updateId, $info, $rev = 1, $type = 'Production')
|
|||||||
$type,
|
$type,
|
||||||
isset($info['flags']) ? $info['flags'] : [],
|
isset($info['flags']) ? $info['flags'] : [],
|
||||||
isset($info['branch']) ? $info['branch'] : 'auto',
|
isset($info['branch']) ? $info['branch'] : 'auto',
|
||||||
|
isset($info['targetRelease']) ? $info['targetRelease'] : -1
|
||||||
);
|
);
|
||||||
|
|
||||||
return <<<XML
|
return <<<XML
|
||||||
@@ -406,7 +412,7 @@ XML;
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Composes POST data for fetching the latest update information from Windows Update
|
// Composes POST data for fetching the latest update information from Windows Update
|
||||||
function composeFetchUpdRequest($arch, $flight, $ring, $build, $sku = 48, $type = 'Production', $flags = [], $branch = 'auto') {
|
function composeFetchUpdRequest($arch, $flight, $ring, $build, $sku = 48, $type = 'Production', $flags = [], $branch = 'auto', $targetRelease = -1) {
|
||||||
$encData = uupEncryptedData();
|
$encData = uupEncryptedData();
|
||||||
if($encData === false)
|
if($encData === false)
|
||||||
return false;
|
return false;
|
||||||
@@ -506,7 +512,8 @@ function composeFetchUpdRequest($arch, $flight, $ring, $build, $sku = 48, $type
|
|||||||
$sku,
|
$sku,
|
||||||
$type,
|
$type,
|
||||||
$flags,
|
$flags,
|
||||||
$branch
|
$branch,
|
||||||
|
$targetRelease
|
||||||
);
|
);
|
||||||
|
|
||||||
$syncCurrent = in_array('thisonly', $flags) ? 'true' : 'false';
|
$syncCurrent = in_array('thisonly', $flags) ? 'true' : 'false';
|
||||||
|
|||||||
@@ -207,3 +207,18 @@ function getAllowedFlags() {
|
|||||||
function uupAreAppxPresent($genPack) {
|
function uupAreAppxPresent($genPack) {
|
||||||
return isset($genPack['neutral']['APP']);
|
return isset($genPack['neutral']['APP']);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function uupApiIsUpdateLowPriority($title) {
|
||||||
|
$titles = [
|
||||||
|
'Update Stack Package',
|
||||||
|
'.NET Framework',
|
||||||
|
'OOBE'
|
||||||
|
];
|
||||||
|
|
||||||
|
foreach($titles as $val) {
|
||||||
|
if(str_contains($title, $val) == true)
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user