Fixed JSON Cache and Cache returning VERIFY_CODE

This commit is contained in:
Pablo Ferreiro 2022-03-12 19:28:37 +01:00
parent 7ba324c935
commit 8ece2c2b25
No known key found for this signature in database
GPG key ID: 41FBCE65B779FA24
3 changed files with 12 additions and 20 deletions

View file

@ -9,19 +9,14 @@ class JSONCache {
$this->cache_path = $_ENV['API_CACHE_JSON'];
}
}
public function get(string $cache_key): object|false {
public function get(string $cache_key): ?object {
$filename = $this->cache_path . '/' . $cache_key . '.json';
if (is_file($filename)) {
$time = time();
$json_string = file_get_contents($filename);
$element = json_decode($json_string);
if ($time < $element->expires) {
return $element->data;
}
// Remove file if expired
unlink($filename);
return $element;
}
return false;
return null;
}
public function exists(string $cache_key): bool {
@ -30,9 +25,6 @@ class JSONCache {
}
public function set(string $cache_key, mixed $data, $timeout = 3600) {
file_put_contents($this->cache_path . '/' . $cache_key . '.json', json_encode([
'data' => $data,
'expires' => time() + $timeout
]));
file_put_contents($this->cache_path . '/' . $cache_key . '.json', $data);
}
}

View file

@ -24,7 +24,7 @@
"vlucas/phpdotenv": "^5.4",
"bramus/router": "^1.6",
"mibe/feedwriter": "^1.1",
"pablouser1/tikscraper": "v1.2.7.4"
"pablouser1/tikscraper": "^1.2"
},
"autoload": {
"psr-4": {

14
composer.lock generated
View file

@ -4,7 +4,7 @@
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically"
],
"content-hash": "4cef118e8b6abab34ab1af853d20598b",
"content-hash": "cadd5f76328389373f21a069e55f8aae",
"packages": [
{
"name": "bramus/router",
@ -306,16 +306,16 @@
},
{
"name": "pablouser1/tikscraper",
"version": "v1.2.7.4",
"version": "v1.2.7.6",
"source": {
"type": "git",
"url": "https://github.com/pablouser1/TikScraperPHP.git",
"reference": "f42df2e947cfe9afc31a46737a48e720f161ef1c"
"reference": "e7e682726e76541dc47d14dd259a29b3c0364790"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/pablouser1/TikScraperPHP/zipball/f42df2e947cfe9afc31a46737a48e720f161ef1c",
"reference": "f42df2e947cfe9afc31a46737a48e720f161ef1c",
"url": "https://api.github.com/repos/pablouser1/TikScraperPHP/zipball/e7e682726e76541dc47d14dd259a29b3c0364790",
"reference": "e7e682726e76541dc47d14dd259a29b3c0364790",
"shasum": ""
},
"require": {
@ -339,9 +339,9 @@
"description": "Get data from TikTok API",
"support": {
"issues": "https://github.com/pablouser1/TikScraperPHP/issues",
"source": "https://github.com/pablouser1/TikScraperPHP/tree/v1.2.7.4"
"source": "https://github.com/pablouser1/TikScraperPHP/tree/v1.2.7.6"
},
"time": "2022-03-11T21:42:09+00:00"
"time": "2022-03-12T18:27:40+00:00"
},
{
"name": "phpoption/phpoption",