forked from uup-dump/api
Save date of fetching build to fileinfo database
This commit is contained in:
parent
e32d7446ca
commit
767de7a1a5
@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
/*
|
/*
|
||||||
Copyright 2018 UUP dump API authors
|
Copyright 2019 UUP dump API authors
|
||||||
|
|
||||||
Licensed under the Apache License, Version 2.0 (the "License");
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
you may not use this file except in compliance with the License.
|
you may not use this file except in compliance with the License.
|
||||||
@ -88,7 +88,7 @@ function uupFetchUpd(
|
|||||||
|
|
||||||
$build = '10.0.'.$build.'.'.$minor;
|
$build = '10.0.'.$build.'.'.$minor;
|
||||||
|
|
||||||
$cacheHash = hash('sha1', strtolower("api-fetch-$arch-$ring-$flight-$build-$minor-$sku"));
|
$cacheHash = hash('sha256', strtolower("api-fetch-$arch-$ring-$flight-$build-$minor-$sku"));
|
||||||
$cached = 0;
|
$cached = 0;
|
||||||
|
|
||||||
if(file_exists('cache/'.$cacheHash.'.json.gz') && $cacheRequests == 1) {
|
if(file_exists('cache/'.$cacheHash.'.json.gz') && $cacheRequests == 1) {
|
||||||
@ -285,6 +285,7 @@ function parseFetchUpdate($updateInfo, $out, $arch, $ring, $flight, $build, $sku
|
|||||||
$temp['containsCU'] = 1;
|
$temp['containsCU'] = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$temp['created'] = time();
|
||||||
$temp['files'] = $shaArray;
|
$temp['files'] = $shaArray;
|
||||||
|
|
||||||
consoleLogger('Successfully parsed the information.');
|
consoleLogger('Successfully parsed the information.');
|
||||||
|
2
get.php
2
get.php
@ -222,7 +222,7 @@ function uupGetFiles(
|
|||||||
}
|
}
|
||||||
|
|
||||||
function uupGetOnlineFiles($updateId, $rev, $info, $cacheRequests) {
|
function uupGetOnlineFiles($updateId, $rev, $info, $cacheRequests) {
|
||||||
$cacheHash = hash('sha1', strtolower("api-get-${updateId}_rev.$rev"));
|
$cacheHash = hash('sha256', strtolower("api-get-${updateId}_rev.$rev"));
|
||||||
$cached = 0;
|
$cached = 0;
|
||||||
|
|
||||||
if(file_exists('cache/'.$cacheHash.'.json.gz') && $cacheRequests == 1) {
|
if(file_exists('cache/'.$cacheHash.'.json.gz') && $cacheRequests == 1) {
|
||||||
|
39
listid.php
39
listid.php
@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
/*
|
/*
|
||||||
Copyright 2018 UUP dump API authors
|
Copyright 2019 UUP dump API authors
|
||||||
|
|
||||||
Licensed under the Apache License, Version 2.0 (the "License");
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
you may not use this file except in compliance with the License.
|
you may not use this file except in compliance with the License.
|
||||||
@ -17,7 +17,7 @@ limitations under the License.
|
|||||||
|
|
||||||
require_once dirname(__FILE__).'/shared/main.php';
|
require_once dirname(__FILE__).'/shared/main.php';
|
||||||
|
|
||||||
function uupListIds($search = null) {
|
function uupListIds($search = null, $sortByDate = 0) {
|
||||||
uupApiPrintBrand();
|
uupApiPrintBrand();
|
||||||
|
|
||||||
if(!file_exists('fileinfo')) return array('error' => 'NO_FILEINFO_DIR');
|
if(!file_exists('fileinfo')) return array('error' => 'NO_FILEINFO_DIR');
|
||||||
@ -27,8 +27,24 @@ function uupListIds($search = null) {
|
|||||||
|
|
||||||
consoleLogger('Parsing database info...');
|
consoleLogger('Parsing database info...');
|
||||||
|
|
||||||
$database = @file_get_contents('cache/fileinfo.json');
|
$cacheFile = 'cache/fileinfo_v2.json';
|
||||||
|
$cacheV2Version = 1;
|
||||||
|
|
||||||
|
$database = @file_get_contents($cacheFile);
|
||||||
$database = json_decode($database, true);
|
$database = json_decode($database, true);
|
||||||
|
|
||||||
|
if(isset($database['version'])) {
|
||||||
|
$version = $database['version'];
|
||||||
|
} else {
|
||||||
|
$version = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
if($version == $cacheV2Version && isset($database['database'])) {
|
||||||
|
$database = $database['database'];
|
||||||
|
} else {
|
||||||
|
$database = array();
|
||||||
|
}
|
||||||
|
|
||||||
if(empty($database)) $database = array();
|
if(empty($database)) $database = array();
|
||||||
|
|
||||||
$newDb = array();
|
$newDb = array();
|
||||||
@ -44,11 +60,13 @@ function uupListIds($search = null) {
|
|||||||
$title = isset($info['title']) ? $info['title'] : 'UNKNOWN';
|
$title = isset($info['title']) ? $info['title'] : 'UNKNOWN';
|
||||||
$build = isset($info['build']) ? $info['build'] : 'UNKNOWN';
|
$build = isset($info['build']) ? $info['build'] : 'UNKNOWN';
|
||||||
$arch = isset($info['arch']) ? $info['arch'] : 'UNKNOWN';
|
$arch = isset($info['arch']) ? $info['arch'] : 'UNKNOWN';
|
||||||
|
$created = isset($info['created']) ? $info['created'] : null;
|
||||||
|
|
||||||
$temp = array(
|
$temp = array(
|
||||||
'title' => $title,
|
'title' => $title,
|
||||||
'build' => $build,
|
'build' => $build,
|
||||||
'arch' => $arch,
|
'arch' => $arch,
|
||||||
|
'created' => $created,
|
||||||
);
|
);
|
||||||
|
|
||||||
$newDb[$uuid] = $temp;
|
$newDb[$uuid] = $temp;
|
||||||
@ -56,6 +74,7 @@ function uupListIds($search = null) {
|
|||||||
$title = $database[$uuid]['title'];
|
$title = $database[$uuid]['title'];
|
||||||
$build = $database[$uuid]['build'];
|
$build = $database[$uuid]['build'];
|
||||||
$arch = $database[$uuid]['arch'];
|
$arch = $database[$uuid]['arch'];
|
||||||
|
$created = $database[$uuid]['created'];
|
||||||
|
|
||||||
$newDb[$uuid] = $database[$uuid];
|
$newDb[$uuid] = $database[$uuid];
|
||||||
}
|
}
|
||||||
@ -64,6 +83,7 @@ function uupListIds($search = null) {
|
|||||||
'title' => $title,
|
'title' => $title,
|
||||||
'build' => $build,
|
'build' => $build,
|
||||||
'arch' => $arch,
|
'arch' => $arch,
|
||||||
|
'created' => $created,
|
||||||
'uuid' => $uuid,
|
'uuid' => $uuid,
|
||||||
);
|
);
|
||||||
|
|
||||||
@ -77,6 +97,10 @@ function uupListIds($search = null) {
|
|||||||
$tmp = 0;
|
$tmp = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if($sortByDate) {
|
||||||
|
$tmp = $created.$tmp;
|
||||||
|
}
|
||||||
|
|
||||||
$buildAssoc[$tmp][] = $arch.$title.$uuid;
|
$buildAssoc[$tmp][] = $arch.$title.$uuid;
|
||||||
$builds[$tmp.$arch.$title.$uuid] = $temp;
|
$builds[$tmp.$arch.$title.$uuid] = $temp;
|
||||||
}
|
}
|
||||||
@ -104,9 +128,14 @@ function uupListIds($search = null) {
|
|||||||
if($newDb != $database) {
|
if($newDb != $database) {
|
||||||
if(!file_exists('cache')) mkdir('cache');
|
if(!file_exists('cache')) mkdir('cache');
|
||||||
|
|
||||||
|
$cacheData = array(
|
||||||
|
'version' => $cacheV2Version,
|
||||||
|
'database' => $newDb,
|
||||||
|
);
|
||||||
|
|
||||||
$success = @file_put_contents(
|
$success = @file_put_contents(
|
||||||
'cache/fileinfo.json',
|
$cacheFile,
|
||||||
json_encode($newDb)."\n"
|
json_encode($cacheData)."\n"
|
||||||
);
|
);
|
||||||
|
|
||||||
if(!$success) consoleLogger('Failed to update database cache.');
|
if(!$success) consoleLogger('Failed to update database cache.');
|
||||||
|
@ -16,7 +16,7 @@ limitations under the License.
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
function uupApiVersion() {
|
function uupApiVersion() {
|
||||||
return '1.19.3';
|
return '1.20.0';
|
||||||
}
|
}
|
||||||
|
|
||||||
require_once dirname(__FILE__).'/auths.php';
|
require_once dirname(__FILE__).'/auths.php';
|
||||||
|
Loading…
Reference in New Issue
Block a user