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

View File

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

View File

@@ -16,7 +16,7 @@ limitations under the License.
*/ */
function uupApiVersion() { 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'; require_once dirname(__FILE__).'/auths.php';

View File

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

View File

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