2010-03-04 04:20:04 +00:00
|
|
|
<?php
|
|
|
|
/*
|
|
|
|
* StatusNet - the distributed open-source microblogging tool
|
|
|
|
* Copyright (C) 2010, StatusNet, Inc.
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2010-10-08 18:42:59 +01:00
|
|
|
if (!defined('STATUSNET')) {
|
|
|
|
exit(1);
|
|
|
|
}
|
2010-09-19 14:17:36 +01:00
|
|
|
|
2010-03-04 04:20:04 +00:00
|
|
|
/**
|
|
|
|
* @package OStatusPlugin
|
|
|
|
* @maintainer James Walker <james@status.net>
|
|
|
|
*/
|
|
|
|
class UserxrdAction extends XrdAction
|
|
|
|
{
|
|
|
|
function prepare($args)
|
|
|
|
{
|
|
|
|
parent::prepare($args);
|
2011-06-29 21:39:33 +01:00
|
|
|
global $config;
|
2010-03-04 04:20:04 +00:00
|
|
|
|
|
|
|
$this->uri = $this->trimmed('uri');
|
2010-11-27 03:09:51 +00:00
|
|
|
$this->uri = self::normalize($this->uri);
|
2010-09-03 00:35:04 +01:00
|
|
|
|
2010-11-27 03:09:51 +00:00
|
|
|
if (self::isWebfinger($this->uri)) {
|
2010-03-22 18:27:39 +00:00
|
|
|
$parts = explode('@', substr(urldecode($this->uri), 5));
|
|
|
|
if (count($parts) == 2) {
|
|
|
|
list($nick, $domain) = $parts;
|
|
|
|
// @fixme confirm the domain too
|
2010-09-27 19:38:26 +01:00
|
|
|
// @fixme if domain checking is added, ensure that it will not
|
|
|
|
// cause problems with sites that have changed domains!
|
2010-03-22 18:27:39 +00:00
|
|
|
$nick = common_canonical_nickname($nick);
|
2013-08-18 12:04:58 +01:00
|
|
|
$this->user = User::getKV('nickname', $nick);
|
2010-03-22 18:27:39 +00:00
|
|
|
}
|
2010-03-13 23:35:00 +00:00
|
|
|
} else {
|
2013-08-18 12:04:58 +01:00
|
|
|
$this->user = User::getKV('uri', $this->uri);
|
2010-10-14 16:07:37 +01:00
|
|
|
if (empty($this->user)) {
|
|
|
|
// try and get it by profile url
|
2013-08-18 12:04:58 +01:00
|
|
|
$profile = Profile::getKV('profileurl', $this->uri);
|
2010-10-14 16:07:37 +01:00
|
|
|
if (!empty($profile)) {
|
2013-08-18 12:04:58 +01:00
|
|
|
$this->user = User::getKV('id', $profile->id);
|
2010-10-14 16:07:37 +01:00
|
|
|
}
|
|
|
|
}
|
2010-03-13 23:35:00 +00:00
|
|
|
}
|
2010-10-14 16:07:37 +01:00
|
|
|
|
2010-03-04 04:20:04 +00:00
|
|
|
if (!$this->user) {
|
2011-04-03 23:12:52 +01:00
|
|
|
// TRANS: Client error displayed when user not found for an action.
|
2011-02-16 23:39:53 +00:00
|
|
|
$this->clientError(_('No such user.'), 404);
|
2010-03-04 04:20:04 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|