summaryrefslogtreecommitdiff
path: root/api/raindrops-img.php
diff options
context:
space:
mode:
Diffstat (limited to 'api/raindrops-img.php')
-rw-r--r--api/raindrops-img.php11
1 files changed, 0 insertions, 11 deletions
diff --git a/api/raindrops-img.php b/api/raindrops-img.php
deleted file mode 100644
index 4cbac6b..0000000
--- a/api/raindrops-img.php
+++ /dev/null
@@ -1,11 +0,0 @@
-<?php
-
-require_once $_SERVER['DOCUMENT_ROOT'] . "/includes/functions.inc";
-$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"] ? $_SERVER['DOCUMENT_ROOT'] . getAsset("gdapd", $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