-
Notifications
You must be signed in to change notification settings - Fork 2
/
icon_one.php
37 lines (34 loc) · 1.24 KB
/
icon_one.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
36
37
<?php
header('Content-Type: image/png');
$selectedToken = $_GET['token'];
$autoResolve = $_GET['autoResolve'];
$filename = 'icons/harmony/' . $selectedToken . '.png';
if (file_exists($filename)) {
$image = file_get_contents('icons/harmony/' . $selectedToken . '.png');
} else {
$image = file_get_contents('icons/harmony/' . strtolower($selectedToken) . '.png');
if ($image) {
} else {
$json_mochiswap = file_get_contents('https://s3-us-west-1.amazonaws.com/tokens.mochiswap.io/hashparty-default.tokenlist.json');
$infoMochiswapData = json_decode($json_mochiswap);
foreach ($infoMochiswapData->tokens as $infoMochiswap) {
if (strtolower($selectedToken) === strtolower($infoMochiswap->address)) {
$image = file_get_contents($infoMochiswap->logoURI);
}
}
if ($image) {
$file = 'icons/harmony/' . $selectedToken . '.png';
file_put_contents($file, $image, FILE_APPEND | LOCK_EX);
$file = 'icons/harmony/' . 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('icons/unknown.png');
}
}
}
}
echo $image;