authenticated && $USER->role == "admin" && !in_array(strtoupper($USER->username), getBannedUsers($ban))) : exit(http_response_code(200)); else : exit(http_response_code(401)); endif; elseif (isset($_GET['user'])) : if($USER->authenticated && !in_array(strtoupper($USER->username), getBannedUsers($ban))) : exit(http_response_code(200)); else : exit(http_response_code(401)); endif; elseif (!isset($_GET['user']) && !isset($_GET['admin'])) : exit(http_response_code(401)); endif; ?>