add rel=nofollow to bookmark links if needed

This commit is contained in:
Evan Prodromou 2011-10-20 11:47:44 -04:00
parent e64ae1f03d
commit 053e99733f
1 changed files with 22 additions and 23 deletions

View File

@ -62,38 +62,37 @@ class BookmarkListItem extends NoticeListItemAdapter
$nb = Bookmark::getByNotice($notice);
$profile = $notice->getProfile();
$atts = $notice->attachments();
if (empty($atts)) {
// Something went wrong!
common_log(
LOG_ERR,
sprintf(
'Bookmark %1$s (notice %2$d) has no attachments.',
$nb->id,
$notice->id
)
);
// try to show the notice as plain text
if (empty($nb)) {
common_log(LOG_ERR, "No bookmark for notice {$notice->id}");
parent::showContent();
return;
} else if (empty($nb->url)) {
common_log(LOG_ERR, "No url for bookmark {$nb->id} for notice {$notice->id}");
parent::showContent();
return;
}
$profile = $notice->getProfile();
$out->elementStart('p', array('class' => 'entry-content'));
$att = $atts[0];
// Whether to nofollow
$attrs = array('href' => $nb->url,
'class' => 'bookmark-title');
$nf = common_config('nofollow', 'external');
if ($nf == 'never' || ($nf == 'sometimes' and $out instanceof ShowstreamAction)) {
$attrs['rel'] = 'external';
} else {
$attrs['rel'] = 'nofollow external';
}
$out->elementStart('h3');
$out->element('a',
array('href' => $att->url,
'class' => 'bookmark-title'),
$nb->title);
$attrs,
$nb->title);
$out->elementEnd('h3');
// Replies look like "for:" tags