0
0
mirror of https://github.com/ezyang/htmlpurifier.git synced 2025-01-09 15:31:53 +00:00
htmlpurifier/library/HTMLPurifier/Injector/LinkifyEmail.php
Bradley M. Froehle 6385f42ebc Add AutoFormat.LinkifyEmail Option.
If enabled, automatically provide links to e-mail addresses.
For example,
  Send an e-mail to user@example.com.
is transformed to
  Send an e-mail to <a href="mailto:user@example.com">user@example.com</a>.

Signed-off-by: Bradley M. Froehle <brad.froehle@gmail.com>
2011-02-15 10:05:12 -08:00

44 lines
1.3 KiB
PHP

<?php
/**
* Injector that converts e-mails to actual links.
*/
class HTMLPurifier_Injector_LinkifyEmail extends HTMLPurifier_Injector
{
public $name = 'LinkifyEmail';
public $needed = array('a' => array('href'));
public function handleText(&$token) {
if (!$this->allowsElement('a')) return;
if (strpos($token->data, '@') === false) {
// our really quick heuristic failed, abort
return;
}
// e-mail regex comes from Drupal 7, see http://api.drupal.org/_filter_url
$bits = preg_split('#([A-Za-z0-9._-]+@(?:(?:[A-Za-z0-9._+-]+\.)?[A-Za-z]{2,64}\b))#S', $token->data, -1, PREG_SPLIT_DELIM_CAPTURE);
$token = array();
// $i = index
// $c = count
// $l = is link
for ($i = 0, $c = count($bits), $l = false; $i < $c; $i++, $l = !$l) {
if (!$l) {
if ($bits[$i] === '') continue;
$token[] = new HTMLPurifier_Token_Text($bits[$i]);
} else {
$token[] = new HTMLPurifier_Token_Start('a', array('href' => 'mailto:' . $bits[$i]));
$token[] = new HTMLPurifier_Token_Text($bits[$i]);
$token[] = new HTMLPurifier_Token_End('a');
}
}
}
}
// vim: et sw=4 sts=4