Add bio field to getprofile

master
Skylar Ittner 5 years ago
parent e47cc7342f
commit 8b349fd0ea

@ -7,13 +7,13 @@
*/
if (empty($VARS["id"])) {
$profile = $database->get("accounts", ["[>]authkeys" => ["accountid"]], ["publicid", "name", "username", "type", "verified"], ["key" => $VARS["key"]]);
$profile = $database->get("accounts", ["[>]authkeys" => ["accountid"]], ["publicid", "name", "username", "type", "verified", "bio"], ["key" => $VARS["key"]]);
} else {
if (!$database->has("accounts", ["publicid" => $VARS["id"]])) {
sendJsonResp($Strings->get("Could not find a matching account.", false), "ERROR");
}
$profile = $database->get("accounts", ["publicid", "name", "username", "type", "verified"], ["publicid" => $VARS["id"]]);
$profile = $database->get("accounts", ["publicid", "name", "username", "type", "verified", "bio"], ["publicid" => $VARS["id"]]);
}
// Make sure the name field always has something useful
@ -21,6 +21,10 @@ if (empty($profile["name"])) {
$profile["name"] = $profile["username"];
}
if (empty($profile["bio"])) {
$profile["bio"] = "";
}
$profile["verified"] = $profile["verified"] == 1;
exitWithJson([

@ -60,7 +60,7 @@ $APIS = [
]
],
"getprofile" => [
"load" => "profile.php",
"load" => "getprofile.php",
"vars" => [
"key" => $keyregex,
"id (optional)" => "/[0-9a-z]+/"

Binary file not shown.
Loading…
Cancel
Save