-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathicon_avax.php
35 lines (32 loc) · 1.17 KB
/
icon_avax.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<?php
header ('Content-Type: image/png');
$selectedToken = $_GET['token'];
$autoResolve = $_GET['autoResolve'];
$filename = 'icons/avalanche/' . $selectedToken . '.png';
if (file_exists($filename)) {
$image = file_get_contents('icons/avalanche/' . $selectedToken . '.png');
} else {
$image = file_get_contents('icons/avalanche/' . strtolower($selectedToken) . '.png');
if ($image) {
} else {
$image = file_get_contents('https://raw.githubusercontent.com/ava-labs/bridge-tokens/main/avalanche-tokens/' . $selectedToken . '/logo.png');
if ($image) {
} else {
$image = file_get_contents('https://raw.githubusercontent.com/traderjoe-xyz/joe-tokenlists/main/logos/' . $selectedToken . '/logo.png');
}
if ($image) {
$file = 'icons/avalanche/' . $selectedToken . '.png';
file_put_contents($file, $image, FILE_APPEND | LOCK_EX);
$file = 'icons/avalanche/' . strtolower($selectedToken) . '.png';
file_put_contents($file, $image, FILE_APPEND | LOCK_EX);
} else {
if ($autoResolve === 'false') {
http_response_code(404);
die();
} else {
$image = file_get_contents('unknown.png');
}
}
}
}
echo $image;