summaryrefslogtreecommitdiff
path: root/api/raindrops-img.php
blob: 3b24d9782f6babf4fadee6c9d638b1451812127a (plain)
1
2
3
4
5
6
7
8
9
10
<?php

$fronters = json_decode(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/data/gdapd-fronters.json"), true);

$url = isset($fronters['members'][0]) ? ($fronters['members'][0]["avatar_url"] ?? "https://static.equestria.horse/ponies/uploads/raindrops.png") : "https://static.equestria.horse/ponies/uploads/raindrops.png";
file_put_contents("/tmp/temp", file_get_contents($url));
header("Content-Type: " . mime_content_type("/tmp/temp"));
unlink("/tmp/temp");

echo(file_get_contents($url));