X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=actions%2Fuserbyid.php;h=1e3c9d8519bf13be3618881547508f3bbb4ffbe5;hb=38c84a92c71913fff570b64d21b7d2e07dfa3dd3;hp=f3e1556f3f143da067a6d259587b8e8edf493e47;hpb=745e35ac1fcee01298db09a8649f79f410138652;p=quix0rs-gnu-social.git diff --git a/actions/userbyid.php b/actions/userbyid.php index f3e1556f3f..1e3c9d8519 100644 --- a/actions/userbyid.php +++ b/actions/userbyid.php @@ -1,5 +1,4 @@ . */ -if (!defined('STATUSNET') && !defined('LACONICA')) { - exit(1); -} +if (!defined('GNUSOCIAL')) { exit(1); } /** * User by ID action class. @@ -43,48 +40,27 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 * @link http://status.net/ */ -class UserbyidAction extends Action +class UserbyidAction extends ShowstreamAction { - /** - * Is read only? - * - * @return boolean true - */ - function isReadOnly($args) + protected function doPreparation() { - return true; - } + // accessing by ID just requires an ID, not a nickname + $this->target = Profile::getByID($this->trimmed('id')); - /** - * Class handler. - * - * @param array $args array of arguments - * - * @return nothing - */ - function handle($args) - { - parent::handle($args); - $id = $this->trimmed('id'); - if (!$id) { - $this->clientError(_('No ID.')); - } - $user = User::staticGet($id); - if (!$user) { - $this->clientError(_('No such user.')); + // For local users when accessed by id number, redirect with + // the nickname as argument instead of id. + if ($this->target->isLocal()) { + // Support redirecting to FOAF rdf/xml if the agent prefers it... + // Internet Explorer doesn't specify "text/html" and does list "*/*" + // at least through version 8. We need to list text/html up front to + // ensure that only user-agents who specifically ask for RDF get it. + $page_prefs = 'text/html,application/xhtml+xml,application/rdf+xml,application/xml;q=0.3,text/xml;q=0.2'; + $httpaccept = isset($_SERVER['HTTP_ACCEPT']) ? $_SERVER['HTTP_ACCEPT'] : null; + $type = common_negotiate_type(common_accept_to_prefs($httpaccept), + common_accept_to_prefs($page_prefs)); + $page = $type === 'application/rdf+xml' ? 'foaf' : 'showstream'; + $url = common_local_url($page, array('nickname' => $this->target->getNickname())); + common_redirect($url, 303); } - - // Support redirecting to FOAF rdf/xml if the agent prefers it... - // Internet Explorer doesn't specify "text/html" and does list "*/*" - // at least through version 8. We need to list text/html up front to - // ensure that only user-agents who specifically ask for RDF get it. - $page_prefs = 'text/html,application/xhtml+xml,application/rdf+xml,application/xml;q=0.3,text/xml;q=0.2'; - $httpaccept = isset($_SERVER['HTTP_ACCEPT']) - ? $_SERVER['HTTP_ACCEPT'] : null; - $type = common_negotiate_type(common_accept_to_prefs($httpaccept), - common_accept_to_prefs($page_prefs)); - $page = $type == 'application/rdf+xml' ? 'foaf' : 'showstream'; - $url = common_local_url($page, array('nickname' => $user->nickname)); - common_redirect($url, 303); } }