Make Profile->getFancyName() return including the acct URI

This commit is contained in:
Mikael Nordfeldth 2016-03-01 23:37:38 +01:00
parent 47f408ca7c
commit ddd60e7142

View File

@ -225,11 +225,11 @@ class Profile extends Managed_DataObject
*/ */
function getFancyName() function getFancyName()
{ {
if ($this->fullname) { if ($this->getFullname()) {
// TRANS: Full name of a profile or group (%1$s) followed by nickname (%2$s) in parentheses. // TRANS: Full name of a profile or group (%1$s) followed by acct URI (%2$s) in parentheses without acct:.
return sprintf(_m('FANCYNAME','%1$s (%2$s)'), $this->fullname, $this->nickname); return sprintf(_m('FANCYNAME','%1$s (%2$s)'), $this->getFullname(), $this->getAcctUri());
} else { } else {
return $this->nickname; return $this->getAcctUri(false);
} }
} }
@ -1575,7 +1575,7 @@ class Profile extends Managed_DataObject
* *
* @return string $uri * @return string $uri
*/ */
public function getAcctUri() public function getAcctUri($scheme=true)
{ {
$acct = null; $acct = null;
@ -1586,11 +1586,15 @@ class Profile extends Managed_DataObject
if ($acct === null) { if ($acct === null) {
throw new ProfileNoAcctUriException($this); throw new ProfileNoAcctUriException($this);
} }
if (parse_url($acct, PHP_URL_SCHEME) !== 'acct') {
throw new ServerException('Acct URI does not have acct: scheme');
}
return $acct; // if we don't return the scheme, just remove the 'acct:' in the beginning
return $scheme ? $acct : mb_substr($acct, 5);
} }
function hasBlocked($other) function hasBlocked(Profile $other)
{ {
$block = Profile_block::exists($this, $other); $block = Profile_block::exists($this, $other);
return !empty($block); return !empty($block);