0
0
mirror of https://github.com/ezyang/htmlpurifier.git synced 2025-01-09 23:41:52 +00:00
htmlpurifier/library/HTMLPurifier/Injector/LinkifyEmail.php

44 lines
1.3 KiB
PHP
Raw Normal View History

<?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