2017-09-22 21:24:31 +02:00
|
|
|
UUP dump API
|
|
|
|
------------
|
|
|
|
|
2017-10-06 20:29:24 +02:00
|
|
|
### Functions
|
2019-04-23 02:53:42 +02:00
|
|
|
#### fetchupd.php: `uupFetchUpd($arch, $ring, $flight, $build, $minor, $sku, $cacheRequests);`
|
2017-10-06 20:29:24 +02:00
|
|
|
Fetches latest update information from Windows Update servers.
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
- `arch` - Architecture of build to find
|
|
|
|
- **Supported values:** `amd64`, `arm64`, `x86`
|
|
|
|
|
|
|
|
- `ring` - Ring to use when fetching information
|
2019-04-23 02:53:42 +02:00
|
|
|
- **Supported values:** `WIF`, `WIS`, `RP`, `RETAIL`
|
2017-10-06 20:29:24 +02:00
|
|
|
|
|
|
|
- `flight` - Flight to use when fetching information
|
|
|
|
- **Supported values:** `Active`, `Skip`, `Current`
|
|
|
|
- **NOTE:** `Skip` is for `WIF` ring only. `Current` is for `RP` ring only.
|
|
|
|
|
|
|
|
- `build` - Build number to use when fetching information
|
2019-04-23 02:53:42 +02:00
|
|
|
- **Supported values:** >= 9841 and <= PHP_INT_MAX-1
|
2017-10-13 22:55:46 +02:00
|
|
|
|
|
|
|
- `minor` - Build minor to use when fetching information
|
2019-04-23 02:53:42 +02:00
|
|
|
- **Supported values:** >= 0 and <= PHP_INT_MAX-1
|
2017-10-06 20:29:24 +02:00
|
|
|
|
2019-04-23 02:53:42 +02:00
|
|
|
- `sku` - SKU number to use when fetching information
|
|
|
|
- **Supported values:** Any integer
|
|
|
|
|
|
|
|
- `cacheRequests` - Should request responses be cached? (optional)
|
|
|
|
- **Supported values:** 0 = Disable (default), 1 = Enable
|
|
|
|
|
|
|
|
#### get.php: `uupGetFiles($updateId, $usePack, $desiredEdition, $requestType);`
|
2017-10-06 20:29:24 +02:00
|
|
|
Fetches files from `updateId` update and parses to array.
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
- `updateId` - Update identifier
|
|
|
|
- **Supported values:** any update UUID
|
|
|
|
|
|
|
|
- `usePack` - Generate list of files for selected language
|
|
|
|
- **Supported values:** language name in xx-xx format
|
|
|
|
|
|
|
|
- `desiredEdition` - Generate list of files for selected edition
|
|
|
|
- **Supported values:** any update UUID
|
|
|
|
- **NOTE:** You need to specify `usePack` to get successful request
|
|
|
|
|
2019-04-23 02:53:42 +02:00
|
|
|
- `$requestType` - Type of request to the API (optional)
|
|
|
|
- **Supported values:**
|
|
|
|
- 0 = uncached request (default)
|
|
|
|
- 1 = use cache if available
|
|
|
|
- 2 = offline information retrieval
|
|
|
|
|
|
|
|
#### listeditions.php: `uupListEditions($lang, $updateId);`
|
|
|
|
Outputs list of supported editions for selected language and Update ID.
|
2017-10-06 20:29:24 +02:00
|
|
|
|
|
|
|
Parameters:
|
|
|
|
- `lang` - Generate list for selected language
|
|
|
|
- **Supported values:** language name in xx-xx format
|
|
|
|
|
2019-04-23 02:53:42 +02:00
|
|
|
- `updateId` - Update identifier (optional)
|
|
|
|
- **Supported values:** any update UUID
|
|
|
|
|
|
|
|
#### listid.php: `uupListIds($search, $sortByDate);`
|
2017-10-06 20:29:24 +02:00
|
|
|
Outputs list of updates in fileinfo database.
|
|
|
|
|
|
|
|
Parameters:
|
2019-04-23 02:53:42 +02:00
|
|
|
- `search` - Search query (optional)
|
|
|
|
- **Supported values:** any text
|
2017-10-06 20:29:24 +02:00
|
|
|
|
2019-04-23 02:53:42 +02:00
|
|
|
- `sortByDate` - Sort results by creation date (optional)
|
|
|
|
- **Supported values:** 0 = Disable, 1 = Enable
|
|
|
|
|
|
|
|
|
|
|
|
#### listlangs.php: `uupListLangs($updateId);`
|
|
|
|
Outputs list of languages supported for specified Update ID.
|
2017-10-06 20:29:24 +02:00
|
|
|
|
|
|
|
Parameters:
|
2019-04-23 02:53:42 +02:00
|
|
|
- `updateId` - Update identifier (optional)
|
|
|
|
- **Supported values:** any update UUID
|
|
|
|
|
2017-10-06 20:29:24 +02:00
|
|
|
|
|
|
|
#### updateinfo.php: `uupUpdateInfo($updateId, $onlyInfo);`
|
|
|
|
Outputs specified information of specified `updateId`.
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
- `updateId` - Update identifier
|
|
|
|
- **Supported values:** any update UUID
|
|
|
|
|
|
|
|
- `onlyInfo` - Key to output
|
|
|
|
- **Supported values:** any string
|
|
|
|
|
|
|
|
#### shared/main.php: `uupApiVersion();`
|
|
|
|
Returns version of the API.
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
- None
|
|
|
|
|
|
|
|
### Error codes thrown by API
|
|
|
|
**fetchupd.php**
|
|
|
|
- UNKNOWN_ARCH
|
|
|
|
- UNKNOWN_RING
|
|
|
|
- UNKNOWN_FLIGHT
|
|
|
|
- UNKNOWN_COMBINATION
|
|
|
|
- ILLEGAL_BUILD
|
2017-10-13 22:55:46 +02:00
|
|
|
- ILLEGAL_MINOR
|
|
|
|
- NO_UPDATE_FOUND
|
2017-10-06 20:29:24 +02:00
|
|
|
- EMPTY_FILELIST
|
|
|
|
|
|
|
|
**get.php**
|
|
|
|
- UNSUPPORTED_LANG
|
|
|
|
- UNSPECIFIED_LANG
|
|
|
|
- UNSUPPORTED_EDITION
|
|
|
|
- UNSUPPORTED_COMBINATION
|
|
|
|
- EMPTY_FILELIST
|
2019-04-23 02:53:42 +02:00
|
|
|
- MISSING_FILES
|
|
|
|
- NO_FILES
|
|
|
|
- XML_PARSE_ERROR
|
2017-10-06 20:29:24 +02:00
|
|
|
|
|
|
|
**listeditions.php**
|
|
|
|
- UNSUPPORTED_LANG
|
|
|
|
|
|
|
|
**listid.php**
|
|
|
|
- NO_FILEINFO_DIR
|
2019-04-23 02:53:42 +02:00
|
|
|
- SEARCH_NO_RESULTS
|
2017-10-06 20:29:24 +02:00
|
|
|
|
|
|
|
**updateinfo.php**
|
|
|
|
- UPDATE_INFORMATION_NOT_EXISTS
|
|
|
|
- KEY_NOT_EXISTS
|