mirror of
https://git.uupdump.net/uup-dump/json-api.git
synced 2025-07-01 19:19:54 +09:00
Initial commit
This commit is contained in:
37
fetchupd.php
Normal file
37
fetchupd.php
Normal file
@ -0,0 +1,37 @@
|
||||
<?php
|
||||
require_once 'api/fetchupd.php';
|
||||
require_once 'shared/main.php';
|
||||
require_once 'shared/ratelimits.php';
|
||||
|
||||
$arch = isset($_GET['arch']) ? $_GET['arch'] : 'amd64';
|
||||
$ring = isset($_GET['ring']) ? $_GET['ring'] : 'WIF';
|
||||
$flight = isset($_GET['flight']) ? $_GET['flight'] : 'Active';
|
||||
$build = isset($_GET['build']) ? $_GET['build'] : 'latest';
|
||||
$sku = isset($_GET['sku']) ? $_GET['sku'] : '48';
|
||||
|
||||
header('Content-Type: application/json');
|
||||
|
||||
$resource = hash('sha1', strtolower("fetch-$arch-$ring-$flight-$build-$sku"));
|
||||
if(checkIfUserIsRateLimited($resource)) {
|
||||
http_response_code(429);
|
||||
sendResponse(['error' => 'USER_RATE_LIMITED']);
|
||||
die();
|
||||
}
|
||||
|
||||
$apiResponse = uupFetchUpd($arch, $ring, $flight, $build, 0, $sku, 1);
|
||||
if(isset($apiResponse['error'])) {
|
||||
switch($apiResponse['error']) {
|
||||
case 'EMPTY_FILELIST':
|
||||
http_response_code(500);
|
||||
break;
|
||||
|
||||
case 'NO_UPDATE_FOUND':
|
||||
http_response_code(500);
|
||||
break;
|
||||
|
||||
default:
|
||||
http_response_code(400);
|
||||
}
|
||||
}
|
||||
|
||||
sendResponse($apiResponse);
|
Reference in New Issue
Block a user