v3 cache function
This commit is contained in:
parent
e797faed9e
commit
e5702a238c
28
cache.py
Normal file
28
cache.py
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
import os, time
|
||||||
|
import requests
|
||||||
|
|
||||||
|
while True:
|
||||||
|
# Read donor lists
|
||||||
|
for file in os.listdir("donors"):
|
||||||
|
print(file)
|
||||||
|
try:
|
||||||
|
donor_object = requests.get("https://api.foldingathome.org/user/{}".format(file))
|
||||||
|
if donor_object.status_code == 200:
|
||||||
|
with open(os.path.join("donors", file), "w+") as fb:
|
||||||
|
fb.write(donor_object.text)
|
||||||
|
except Exception as e:
|
||||||
|
print(e)
|
||||||
|
|
||||||
|
# Read team lists
|
||||||
|
for file in os.listdir("teams"):
|
||||||
|
print(file)
|
||||||
|
try:
|
||||||
|
donor_object = requests.get("https://api.foldingathome.org/team/{}".format(file))
|
||||||
|
if donor_object.status_code == 200:
|
||||||
|
with open(os.path.join("teams", file), "w+") as fb:
|
||||||
|
fb.write(donor_object.text)
|
||||||
|
except Exception as e:
|
||||||
|
print(e)
|
||||||
|
|
||||||
|
time.sleep(5)
|
||||||
|
|
0
donors/.keep
Normal file
0
donors/.keep
Normal file
0
fonts/.keep
Normal file
0
fonts/.keep
Normal file
38
index.php
38
index.php
@ -15,6 +15,9 @@ if (!isset($_GET["lang"]) || !in_array($_GET["lang"], $langs)) {
|
|||||||
// Get donor
|
// Get donor
|
||||||
$donor = $_GET["donor"];
|
$donor = $_GET["donor"];
|
||||||
|
|
||||||
|
// Get team
|
||||||
|
$team = $_GET["team"];
|
||||||
|
|
||||||
// Setting foor ssl
|
// Setting foor ssl
|
||||||
$arr_context_options = array(
|
$arr_context_options = array(
|
||||||
"ssl" => array(
|
"ssl" => array(
|
||||||
@ -24,14 +27,43 @@ $arr_context_options = array(
|
|||||||
) ,
|
) ,
|
||||||
);
|
);
|
||||||
|
|
||||||
|
// Read record
|
||||||
|
if (file_exists("donors/".$donor)) {
|
||||||
|
$local_donor = file_get_contents("donors/".$donor);
|
||||||
|
if (!$local_donor) {
|
||||||
// Request for data
|
// Request for data
|
||||||
$donor_data = file_get_contents("https://api.foldingathome.org/user/".$donor, false, stream_context_create($arr_context_options)) or die("api failed");
|
$donor_data = @file_get_contents("https://api.foldingathome.org/user/".$donor, false, stream_context_create($arr_context_options)) or die("api failed");
|
||||||
$donor_object = json_decode($donor_data, true);
|
$donor_object = json_decode($donor_data, true);
|
||||||
|
if (array_key_exists("status", $donor_object)) {
|
||||||
|
exit("api failed");
|
||||||
|
}
|
||||||
if ($DEBUG) var_dump($donor_object);
|
if ($DEBUG) var_dump($donor_object);
|
||||||
|
} else {
|
||||||
$team_data = file_get_contents("https://api.foldingathome.org/team/".$_GET["team"], false, stream_context_create($arr_context_options)) or die("api failed");
|
$donor_object = json_decode($local_donor, true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (file_exists("teams/".$team)) {
|
||||||
|
$local_team = file_get_contents("teams/".$team);
|
||||||
|
if (!$local_team) {
|
||||||
|
// Request for data
|
||||||
|
$team_data = @file_get_contents("https://api.foldingathome.org/team/".$team, false, stream_context_create($arr_context_options)) or die("api failed");
|
||||||
$team_object = json_decode($team_data, true);
|
$team_object = json_decode($team_data, true);
|
||||||
|
if (array_key_exists("status", $team_object)) {
|
||||||
|
exit("api failed");
|
||||||
|
}
|
||||||
if ($DEBUG) var_dump($team_object);
|
if ($DEBUG) var_dump($team_object);
|
||||||
|
} else {
|
||||||
|
$team_object = json_decode($local_donor, true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Save record
|
||||||
|
if (!file_exists("donors/".$donor)) {
|
||||||
|
file_put_contents("donors/".$donor, "");
|
||||||
|
}
|
||||||
|
if (!file_exists("teams/".$team)) {
|
||||||
|
file_put_contents("teams/".$team, "");
|
||||||
|
}
|
||||||
|
|
||||||
// Load canvas
|
// Load canvas
|
||||||
$canvas = imagecreatetruecolor(465, 92);
|
$canvas = imagecreatetruecolor(465, 92);
|
||||||
|
0
teams/.keep
Normal file
0
teams/.keep
Normal file
Loading…
x
Reference in New Issue
Block a user