Extract liker phrase in own method

This commit is contained in:
Philipp 2023-04-01 20:49:38 +02:00
parent 83212252fd
commit 4ce6721c27
No known key found for this signature in database
GPG Key ID: 24A7501396EB5432

View File

@ -41,6 +41,7 @@ use Friendica\Model\Post;
use Friendica\Model\Tag; use Friendica\Model\Tag;
use Friendica\Model\User; use Friendica\Model\User;
use Friendica\Model\Verb; use Friendica\Model\Verb;
use Friendica\Network\HTTPException\InternalServerErrorException;
use Friendica\Object\Post as PostObject; use Friendica\Object\Post as PostObject;
use Friendica\Object\Thread; use Friendica\Object\Thread;
use Friendica\Protocol\Activity; use Friendica\Protocol\Activity;
@ -193,15 +194,24 @@ class Conversation
} }
} }
private function getLikers(array $likers): string /**
* Returns the liker phrase based on a list of likers
*
* @param string $verb the activity verb
* @param array $likers a list of likers
*
* @return string the liker phrase
*
* @throws InternalServerErrorException in case either the verb is invalid or the list of likers is empty
*/
private function getLikerPhrase(string $verb, array $likers): string
{ {
if (empty($likers)) {
return $this->l10n->t('Nobody');
}
$total = count($likers); $total = count($likers);
if ($total === 1) {
return $likers[0]; if ($total === 0) {
throw new InternalServerErrorException(sprintf('There has to be at least one Liker for verb "%s"', $verb));
} else if ($total === 1) {
$likerString = $likers[0];
} else { } else {
if ($total < $this->config->get('system', 'max_likers')) { if ($total < $this->config->get('system', 'max_likers')) {
$likerString = implode(', ', array_slice($likers, 0, -1)); $likerString = implode(', ', array_slice($likers, 0, -1));
@ -210,8 +220,23 @@ class Conversation
$likerString = implode(', ', array_slice($likers, 0, $this->config->get('system', 'max_likers') - 1)); $likerString = implode(', ', array_slice($likers, 0, $this->config->get('system', 'max_likers') - 1));
$likerString .= ' ' . $this->l10n->t('and %d other people', $total - $this->config->get('system', 'max_likers')); $likerString .= ' ' . $this->l10n->t('and %d other people', $total - $this->config->get('system', 'max_likers'));
} }
}
return $likerString; switch ($verb) {
case 'like':
return $this->l10n->tt('%2$s likes this.', '%2$s like this.', $total, $likerString);
case 'dislike':
return $this->l10n->tt('%2$s doesn\'t like this.', '%2$s don\'t like this.', $total, $likerString);
case 'attendyes':
return $this->l10n->tt('%2$s attends.', '%2$s attend.', $total, $likerString);
case 'attendno':
return $this->l10n->tt('%2$s doesn\'t attend.', '%2$s don\'t attend.', $total, $likerString);
case 'attendmaybe':
return $this->l10n->tt('%2$s attends maybe.', '%2$s attend maybe.', $total, $likerString);
case 'announce':
return $this->l10n->tt('%2$s reshared this.', '%2$s reshared this.', $total, $likerString);
default:
throw new InternalServerErrorException(sprintf('Unknown verb "%s"', $verb));
} }
} }
@ -228,32 +253,10 @@ class Conversation
{ {
$this->profiler->startRecording('rendering'); $this->profiler->startRecording('rendering');
$expanded = ''; $expanded = '';
$phrase = '';
$likers = $this->getLikers($links); $phrase = $this->getLikerPhrase($verb, $links);
$total = count($links); $total = count($links);
switch ($verb) {
case 'like':
$phrase = $this->l10n->tt('%2$s likes this.', '%2$s like this.', $total, $likers);
break;
case 'dislike':
$phrase = $this->l10n->tt('%2$s doesn\'t like this.', '%2$s don\'t like this.', $total, $likers);
break;
case 'attendyes':
$phrase = $this->l10n->tt('%2$s attends.', '%2$s attend.', $total, $likers);
break;
case 'attendno':
$phrase = $this->l10n->tt('%2$s doesn\'t attend.', '%2$s don\'t attend.', $total, $likers);
break;
case 'attendmaybe':
$phrase = $this->l10n->tt('%2$s attends maybe.', '%2$s attend maybe.', $total, $likers);
break;
case 'announce':
$phrase = $this->l10n->tt('%2$s reshared this.', '%2$s reshared this.', $total, $likers);
break;
}
if ($total > 1) { if ($total > 1) {
$spanatts = "class=\"btn btn-link fakelink\" onclick=\"openClose('{$verb}list-$id');\""; $spanatts = "class=\"btn btn-link fakelink\" onclick=\"openClose('{$verb}list-$id');\"";
$explikers = $phrase; $explikers = $phrase;