9 Commits

Author SHA1 Message Date
84a149c044 Add br_release 2025-08-30 14:23:24 +02:00
2d2321b21c Remove unnecessary parameters 2025-08-30 00:04:22 +02:00
5bed3a028a Add 25H2 2025-08-29 21:45:15 +02:00
37cefa11c6 1.49.0 2025-03-28 13:41:39 +01:00
862d157672 Update branch builds 2025-03-28 13:22:59 +01:00
e433df62cf Add ge_prerelease as acceptable 2025-03-28 12:49:48 +01:00
1933521e0d Disable some safety features in the development mode 2025-03-28 12:48:59 +01:00
7b3cd4eb10 1.48.0 2024-10-22 23:28:00 +02:00
c1f00cecbd Merge pull request 'Add support for NetFX updates' (#1) from abbodi1406/api:master into master
Reviewed-on: uup-dump/api#1
2024-10-22 23:27:34 +02:00
5 changed files with 32 additions and 6 deletions

View File

@@ -50,8 +50,12 @@ function uupApiPrivateGetLatestBuild() {
return $build;
}
function uupApiPrivateGetAcceptableBranches() {
return [
function uupApiPrivateIsAcceptableBranch($branch) {
if(!uupApiConfigIsTrue('production_mode')) {
return true;
}
$branches = [
'auto',
'rs2_release',
'rs3_release',
@@ -66,8 +70,12 @@ function uupApiPrivateGetAcceptableBranches() {
'ni_release',
'zn_release',
'ge_release',
'br_release',
'ge_prerelease',
'rs_prerelease',
];
return in_array($branch, $branches);
}
function uupApiPrivateNormalizeFetchParams($params) {
@@ -173,7 +181,7 @@ function uupFetchUpd2($params, $cacheRequests = 0) {
return array('error' => 'ILLEGAL_MINOR');
}
if(!in_array($branch, uupApiPrivateGetAcceptableBranches()))
if(!uupApiPrivateIsAcceptableBranch($branch))
$branch = 'auto';
if($ring == 'DEV') $ring = 'WIF';

View File

@@ -35,6 +35,10 @@ class UupDumpCache {
}
public function get() {
if(!uupApiConfigIsTrue('production_mode')) {
return false;
}
$cacheFile = $this->cacheFile;
if(!file_exists($cacheFile)) {
@@ -58,6 +62,10 @@ class UupDumpCache {
}
public function put($content, $validity) {
if(!uupApiConfigIsTrue('production_mode')) {
return false;
}
$cacheFile = $this->cacheFile;
$expires = $validity ? time() + $validity : false;

View File

@@ -16,7 +16,7 @@ limitations under the License.
*/
function uupApiVersion() {
return '1.47.4';
return "I can't be bothered to update the version; use commit hash.";
}
require_once dirname(__FILE__).'/auths.php';

View File

@@ -124,6 +124,7 @@ function composeDeviceAttributes($flight, $ring, $build, $arch, $sku, $type, $fl
'BranchReadinessLevel=CB',
'CIOptin=1',
'CurrentBranch='.$branch,
'DataExpDateEpoch_GE25H2='.(time()+82800),
'DataExpDateEpoch_GE24H2='.(time()+82800),
'DataExpDateEpoch_GE24H2Setup='.(time()+82800),
'DataExpDateEpoch_CU23H2='.(time()+82800),
@@ -148,6 +149,7 @@ function composeDeviceAttributes($flight, $ring, $build, $arch, $sku, $type, $fl
//'FlightContent='.$fltContent,
'FlightRing='.$fltRing,
'Free=gt64',
'GStatus_GE25H2=2',
'GStatus_GE24H2=2',
'GStatus_GE24H2Setup=2',
'GStatus_CU23H2=2',
@@ -211,6 +213,7 @@ function composeDeviceAttributes($flight, $ring, $build, $arch, $sku, $type, $fl
'TPMVersion=2',
'UpdateManagementGroup=2',
'UpdateOfferedDays=0',
'UpgEx_GE25H2=Green',
'UpgEx_GE24H2Setup=Green',
'UpgEx_GE24H2=Green',
'UpgEx_CU23H2=Green',
@@ -298,6 +301,7 @@ function branchFromBuild($build) {
case 22621:
case 22631:
case 22635:
$branch = 'ni_release';
break;
@@ -306,6 +310,8 @@ function branchFromBuild($build) {
break;
case 26100:
case 26120:
case 26200:
$branch = 'ge_release';
break;

View File

@@ -64,8 +64,12 @@ function sendWuPostRequestInternal($url, $postData, $saveCookie = true) {
curl_setopt($req, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($req, CURLOPT_ENCODING, '');
curl_setopt($req, CURLOPT_POSTFIELDS, $postData);
if(uupApiConfigIsTrue('production_mode')) {
curl_setopt($req, CURLOPT_CONNECTTIMEOUT, 5);
curl_setopt($req, CURLOPT_TIMEOUT, 15);
}
curl_setopt($req, CURLOPT_SSL_VERIFYPEER, 0);
curl_setopt($req, CURLOPT_HTTPHEADER, array(
'User-Agent: Windows-Update-Agent/10.0.10011.16384 Client-Protocol/2.50',