summaryrefslogtreecommitdiff
path: root/pages/api/cloudburst-img.php
diff options
context:
space:
mode:
Diffstat (limited to 'pages/api/cloudburst-img.php')
-rw-r--r--pages/api/cloudburst-img.php11
1 files changed, 11 insertions, 0 deletions
diff --git a/pages/api/cloudburst-img.php b/pages/api/cloudburst-img.php
new file mode 100644
index 0000000..1967a90
--- /dev/null
+++ b/pages/api/cloudburst-img.php
@@ -0,0 +1,11 @@
+<?php
+
+require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/functions.inc";
+$fronters = json_decode(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/includes/data/ynmuc/fronters.json"), true);
+
+$url = isset($fronters['members'][0]) ? ($fronters['members'][0]["avatar_url"] ? $_SERVER['DOCUMENT_ROOT'] . getAsset("ynmuc", $fronters['members'][0]["id"]) : $_SERVER['DOCUMENT_ROOT'] . "/uploads/raindrops.png") : $_SERVER['DOCUMENT_ROOT'] . "/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)); \ No newline at end of file