blob: 52a056662772d0e5372b13b5be4f1ba9d95a50e8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<?php
$list = json_decode(file_get_contents($_SERVER['DOCUMENT_ROOT'] . "/data/gdapd/members.json"), true);
$data = [
"count" => count($list),
"ponies" => array_values(array_map(function ($i) {
return [
"url" => $i["avatar_url"] ?? null,
"label" => $i["display_name"] ?? $i["name"]
];
}, $list))
];
header("Content-Type: application/json");
die(json_encode($data, JSON_PRETTY_PRINT));
|