1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
|
<?php
# Movable Type (r) Open Source (C) 2001-2012 Six Apart, Ltd.
# This program is distributed under the terms of the
# GNU General Public License, version 2.
#
# $Id$
function smarty_modifier_nofollowfy($str, $arg = 1) {
# manipulate hyperlinks in $str...
if (!isset($str)) return $str;
if (!$arg) return $str;
$mt = MT::get_instance();
$ctx =& $mt->context();
$blog = $ctx->stash('blog');
$curr_tag = $ctx->_tag_stack[count($ctx->_tag_stack) - 1];
$enable= false;
if ( isset($curr_tag[1]['nofollowfy']) )
$enable = $curr_tag[1]['nofollowfy'] ? true : false;
if (!$enable && !$blog->blog_nofollow_urls)
return $str;
$arg = strtolower($arg);
if ($arg == 'mtcommentbody' || $arg == 'mtcommentauthorlink' || $arg == 'mtcommenturl') {
$comment = $ctx->stash('comment');
if ($comment->comment_commenter_id) {
// is an authenticated comment
$auth = $comment->commenter();
if ($auth && $blog->blog_follow_auth_links)
return $str;
}
}
return preg_replace_callback('#<a\s([^>]*\s*href\s*=[^>]*)>#i', 'nofollowfy_cb', $str);
}
function nofollowfy_cb($matches) {
$str = $matches[1];
preg_match_all('/[^=[:space:]]*\s*=\s*"[^"]*"|[^=[:space:]]*\s*=\s*\'[^\']*\'|[^=[:space:]]*\s*=[^[:space:]]*/', $str, $attr);
$rel_arr = preg_grep('/^rel\s*=/i', $attr[0]);
$attr = array_diff($attr[0], $rel_arr);
if (count($rel_arr) > 0)
$rel = array_pop($rel_arr);
if ($rel) {
$rel = preg_replace('/ ?\bnofollow\b ?/', ' ', $rel);
$rel = preg_replace('/^(rel\s*=\s*[\'"]?) ?/i', '\1nofollow ', $rel);
} else {
$rel = 'rel="nofollow"';
}
return '<a ' . join(' ', $attr) . ' ' . $rel . '>';
}
?>
|