X-Git-Url: http://git.shiar.net/sc2-widget/blobdiff_plain/203777569f73b769b10164e3b37e8183e8d8c900..HEAD:/widget.php diff --git a/widget.php b/widget.php index e222f22..c996111 100644 --- a/widget.php +++ b/widget.php @@ -17,16 +17,23 @@ function error($message, $status = 500) exit; } -$request = trim($_SERVER['PATH_INFO'], '/'); +$request = trim($_GET['clan'] ?? $_SERVER['PATH_INFO'], '/'); $target = "data/$request.json"; -$last = file_exists($target) ? filemtime($target) : 0; +$last = file_exists($target) ? lstat($target)['mtime'] : 0; if ($last < time() - 3600) { $recipe = NULL; if (is_numeric($request)) { $recipe = $request; } - elseif (!$last) { + elseif ($last) { + if ($data = json_decode(file_get_contents($target), true)) { + $profiles = array_column($data['members'], 'profileId'); + #TODO: reduce profiles by checking ladder presence + $recipe = join(' ', array_merge([$request], $profiles)); + } + } + else { error("Unknown profile request $request", 400); }