the format configurations page. TEXT , array('@formats' => url('admin/config/content/formats'))); break; } return $output; } /* * Implements hook_menu(). */ function htmlpurifier_menu() { $items['admin/config/content/htmlpurifier'] = array( 'title' => 'HTML Purifier settings', 'description' => 'Configure overall settings for the HTML Purifier filters, including how they are cached.', 'page callback' => 'drupal_get_form', 'page arguments' => array('htmlpurifier_admin_settings'), 'access arguments' => array('administer filters'), 'file' => 'htmlpurifier.admin.inc', ); return $items; } /** * Implementation of hook_cron(). */ function htmlpurifier_cron() { // Force an attempt at checking for a new version; this is safe to do in // hook_cron because a slow timeout will not degrade the user experience. htmlpurifier_check_version(TRUE); } /** * Checks for updates to the HTML Purifier library. */ function htmlpurifier_check_version($force = FALSE) { if ($force || !variable_get('htmlpurifier_version_check_failed', FALSE)) { // Maybe this should be changed in the future: $result = drupal_http_request('http://htmlpurifier.org/live/VERSION'); if ($result->code == 200) { $version = trim($result->data); variable_set('htmlpurifier_version_check_failed', FALSE); variable_set('htmlpurifier_version_current', $version); return $version; } else { variable_set('htmlpurifier_version_check_failed', TRUE); // Delete any previously known "latest" version so that people can be // alerted if a problem appears on a previously working site. variable_del('htmlpurifier_version_current'); } } } /** * Implementation of hook_filter_info(). */ function htmlpurifier_filter_info() { _htmlpurifier_load(); $filters['htmlpurifier_basic'] = array( 'title' => t('HTML Purifier'), 'description' => t('Removes malicious HTML code and ensures that the ' . 'output is standards compliant. Warning: For ' . 'performance reasons, please ensure that there are no highly dynamic ' . 'filters before HTML Purifier. '), 'process callback' => '_htmlpurifier_process', 'settings callback' => '_htmlpurifier_settings', 'default settings' => array( 'htmlpurifier_help' => TRUE, ), 'tips callback' => '_htmlpurifier_filter_tips', // Since HTML Purifier implements its own caching layer, having filter // cache it again is wasteful. Returns TRUE if double caching is permitted. 'cache' => variable_get("htmlpurifier_doublecache", FALSE), ); $filters['htmlpurifier_advanced'] = array( 'title' => t('HTML Purifier (advanced)'), 'description' => $filters['htmlpurifier_basic']['description'] . t('This version has advanced configuration options, do not enable both at the same time.'), ) + $filters['htmlpurifier_basic']; return $filters; } /** * Implementation of hook_nodeapi(). */ function htmlpurifier_nodeapi(&$node, $op, $a3, $a4) { if ($op == 'view') { // Should we load CSS cache data from teaser or body? if ($a3 == TRUE) { _htmlpurifier_add_css( $node->content['teaser']['#value'], $node->nid ); } else { _htmlpurifier_add_css( $node->content['body']['#value'], $node->nid ); } } // @todo: Deal with CCK fields - probably needs to go in op alter? } // -- INTERNAL FUNCTIONS ---------------------------------------------------- // /** * Filter tips callback, used by htmlpurifier_filter_info(). */ function _htmlpurifier_filter_tips($delta, $format, $long = FALSE) { if (!empty($filter->settings['htmlpurifier_help'])) { return t('HTML tags will be transformed to conform to HTML standards.'); } } /** * Process callback, used by htmlpurifier_filter_info(). * * Passes data along to the helper function with instructions to always try to * use this module's custom cache mechanism. * * We need this helper function because the filter system passes in $cache as * fifth parameter to this hook (which corresponds to whether or not the core * filter system itself will cache the data), but we want to cache it always so * we need to ignore that parameter. */ function _htmlpurifier_process($text, $filter, $format, $langcode, $cache) { return _htmlpurifier_process_text($text, $filter, $format, $langcode, TRUE); } /** * Helper function for hook_nodeapi * Finds extracted style blocks based on a cache link left by hook_filter * Aggregates the extracted style blocks and adds them to the document head * Also removes the cache link left in hook_filter to the CSS cache * * @param string &$field * Field to process, this should be the actual field value * ex. $node->content['body']['#value'] * * @param int $nid * Node ID of the node to which these stylesheets belong * Since filters don't know their node context, we have to use a token * to generate the stylesheet scope, and replace it in hook_nodeapi */ function _htmlpurifier_add_css( &$field, $nid ) { // Some basic validation to assure we really got a rendered field if (!is_string($field)) { return; } $cache_matches = array(); $cache_match = preg_match('##', $field, $cache_matches); // If there's an HTML Purifier Cache #, we need to load CSSTidy blocks if ($cache_match == 1) { $cid = 'css:' . $cache_matches[1]; $old = cache_get($cid, 'cache_htmlpurifier'); // We should always have some cached style blocks to load, but if we don't, just bail if ($old) { $styles = array(); $style_rendered = ''; foreach($old->data as $i => $style) { // Replace Node ID tokens if necessary, otherwise use cached CSSTidy blocks // NOTE: This token is forgeable, but we expect that if the user // is able to invoke this transformation, it will be relatively // harmless. if (strpos($style, '[%HTMLPURIFIER:NID%]') !== FALSE) { $styles[$i] = str_replace('[%HTMLPURIFIER:NID%]', (int) $nid, $style); } else { $styles[$i] = $style; } // Save any CSSTidy blocks we find to be rendered in the document head if (!empty($style)) { $style_rendered .= $styles[$i] . "\n"; } } // Add the rendered stylesheet to the document header if ($style_rendered != '') { drupal_set_html_head(''); } // Remove the HTML Purifier cache key from the field argument $field = str_replace($cache_matches[0], '', $field); // If we had to update CSSTidy blocks, cache the results if ($old->data != $styles) { cache_set($cid, $styles, 'cache_htmlpurifier', CACHE_PERMANENT); } } } } /** * Processes HTML according to a format and returns purified HTML. Makes a * cache pass if possible. * * @param string $text * Text to purify * @param object $filter * The filter object containing settings for the given format. * @param object $format * The format object of the text to be filtered. * @param string $langcode * The language code of the text to be filtered. * @param boolean $cache * Whether or not to check the cache. * * @note * We ignore $delta because the only difference it makes is in the configuration * screen. */ function _htmlpurifier_process_text($text, $filter, $format, $langcode, $cache = TRUE) { if ($cache) { $cid = $format->format . ':' . $langcode . ':' . hash('sha256', $text); $old = cache_get($cid, 'cache_htmlpurifier'); if ($old) return $old->data; } _htmlpurifier_load(); $config = _htmlpurifier_get_config($format->format); // If ExtractStyleBlocks is enabled, we'll need to do a bit more for CSSTidy $config_extractstyleblocks = $config->get('Filter.ExtractStyleBlocks'); // Maybe this works if CSSTidy is at root? CSSTidy could be other places though if ($config_extractstyleblocks == true) { _htmlpurifier_load_csstidy(); } $purifier = new HTMLPurifier($config); $ret = $purifier->purify($text); // If using Filter.ExtractStyleBlocks we need to handle the CSSTidy output if ($config_extractstyleblocks == true) { // We're only going to bother if we're caching! - no caching? no style blocks! if ($cache) { // Get style blocks, cache them, and help hook_nodeapi find the cache $styles = $purifier->context->get('StyleBlocks'); cache_set('css:' . $cid, $styles, 'cache_htmlpurifier', CACHE_PERMANENT); $ret = '' . $ret; } } if ($cache) cache_set($cid, $ret, 'cache_htmlpurifier', CACHE_PERMANENT); return $ret; } /** * Loads the HTML Purifier library, and performs global initialization. */ function _htmlpurifier_load() { static $done = false; if ($done) { return; } $done = true; $module_path = drupal_get_path('module', 'htmlpurifier'); $library_path = $module_path; if (function_exists('libraries_get_path')) { $library_path = libraries_get_path('htmlpurifier'); // This may happen if the user has HTML Purifier installed under the // old configuration, but also installed libraries and forgot to // move it over. There is code for emitting errors in // htmlpurifier.install when this is the case. if (!file_exists("$library_path/library/HTMLPurifier.auto.php")) { $library_path = $module_path; } } require_once "$library_path/library/HTMLPurifier.auto.php"; require_once "$module_path/HTMLPurifier_DefinitionCache_Drupal.php"; $factory = HTMLPurifier_DefinitionCacheFactory::instance(); $factory->register('Drupal', 'HTMLPurifier_DefinitionCache_Drupal'); // Register the version as a variable: variable_set('htmlpurifier_version_ours', HTMLPurifier::VERSION); } /** * Returns the HTMLPurifier_Config object corresponding to a text format. * @param int $format * (Optional) Text format ID. If left empty, the default configuration is * returned. * @return * Instance of HTMLPurifier_Config. */ function _htmlpurifier_get_config($format = 0) { $config = HTMLPurifier_Config::createDefault(); $config->set('AutoFormat.AutoParagraph', TRUE); $config->set('AutoFormat.Linkify', TRUE); $config->set('HTML.Doctype', 'XHTML 1.0 Transitional'); // Probably $config->set('Core.AggressivelyFixLt', TRUE); $config->set('Cache.DefinitionImpl', 'Drupal'); // Filter HTML doesn't allow external images, so neither will we... // for now. This can be configured off. $config->set('URI.DisableExternalResources', TRUE); if (!empty($_SERVER['SERVER_NAME'])) { // SERVER_NAME is more reliable than HTTP_HOST $config->set('URI.Host', $_SERVER['SERVER_NAME']); } if (defined('LANGUAGE_RTL') && $GLOBALS['language']->direction === LANGUAGE_RTL) { $config->set('Attr.DefaultTextDir', 'rtl'); } if ($format && ($config_function = _htmlpurifier_config_load($format))) { $config_function($config); } else { // We only support one instance of this module's filters (either basic or // advanced) per text format, so choose the first settings we find. // TODO: This is awkward, but the most straightforward conversion from the // D6 version, which also treated this as a per-format setting and // therefore had the same limitation. $filters = $format ? filter_list_format($format) : array(); if (!empty($filters['htmlpurifier_advanced']->status) && isset($filters['htmlpurifier_advanced']->settings['htmlpurifier_config'])) { $config_data = $filters['htmlpurifier_advanced']->settings['htmlpurifier_config']; } elseif (!empty($filters['htmlpurifier_basic']->status) && isset($filters['htmlpurifier_basic']->settings['htmlpurifier_config'])) { $config_data = $filters['htmlpurifier_basic']->settings['htmlpurifier_config']; } else { $config_data = FALSE; } if (!empty($config_data['Filter.ExtractStyleBlocks'])) { if (!_htmlpurifier_load_csstidy()) { $config_data['Filter.ExtractStyleBlocks'] = '0'; drupal_set_message("Could not enable ExtractStyleBlocks because CSSTidy was not installed. You can download CSSTidy module from http://drupal.org/project/csstidy", 'error', FALSE); } } // {FALSE, TRUE, FALSE} = {no index, everything is allowed, don't do mq fix} $config->mergeArrayFromForm($config_data, FALSE, TRUE, FALSE); } return $config; } function _htmlpurifier_load_csstidY() { // If CSSTidy module is installed, it should have a copy we can use $csstidy_path = drupal_get_path('module', 'csstidy') .'/csstidy'; // Some future-proofing for library path if (function_exists('libraries_get_path')) { $csstidy_library = libraries_get_path('csstidy'); if (file_exists("$csstidy_library/class.csstidy.php")) { $csstidy_path = $csstidy_library; } } // Load CSSTidy if we can find it if (file_exists("$csstidy_path/class.csstidy.php")) { require_once "$csstidy_path/class.csstidy.php"; return TRUE; } return FALSE; } /** * Returns the name of the configuration function for $format, or FALSE if none * exists. Function name will be htmlpurifier_config_N. * * @param int $format * Integer format to check function for. * @return * String function name for format, or FALSE if none. */ function _htmlpurifier_config_load($format) { $config_file = drupal_get_path('module', 'htmlpurifier') . "/config/$format.php"; $config_function = "htmlpurifier_config_$format"; if ( !function_exists($config_function) && file_exists($config_file) ) { include_once $config_file; } return function_exists($config_function) ? $config_function : FALSE; } /** * Generates a settings form for configuring HTML Purifier. * * @param array $form * The prepopulated form array. * @param array $form_state * The form state of the (entire) configuration form. * @param object $filter * The filter object containing settings for the given format. $filter->name * can be either 'htmlpurifier_basic' or 'htmlpurifier_advanced' (the two * filters defined by this module). * @param object $format * The format object being configured. * @param array $defaults * The default settings for the filter, as defined in 'default settings' in * hook_filter_info(). * * @return * Form API array. */ function _htmlpurifier_settings($form, &$form_state, $filter, $format, $defaults) { _htmlpurifier_load(); // Dry run, testing for errors: _htmlpurifier_process_text('', $filter, $format, LANGUAGE_NONE, FALSE); $module_path = drupal_get_path('module', 'htmlpurifier'); $settings = array(); $settings['#attached']['css'][] = "$module_path/config-form.css"; $settings['#attached']['js'][] = "$module_path/config-form.js"; // TODO: This is broken. The JavaScript may need to be rewritten, or it may // need to be added via more standard methods. $settings['#attached']['js'][] = array( 'data' => HTMLPurifier_Printer_ConfigForm::getJavaScript(), 'type' => 'inline', ); $settings['htmlpurifier_help'] = array( '#type' => 'checkbox', '#title' => t('Display help text'), '#default_value' => isset($filter->settings['htmlpurifier_help']) ? $filter->settings['htmlpurifier_help'] : $defaults['htmlpurifier_help'], '#description' => t('If enabled, a short note will be added to the filter tips explaining that HTML will be transformed to conform with HTML standards. You may want to disable this option when the HTML Purifier is used to check the output of another filter like BBCode.'), ); if ($config_function = _htmlpurifier_config_load($format->format)) { $settings['notice'] = array( '#type' => 'markup', '#value' => t('
!function()
is already defined. To edit HTML Purifier\'s configuration, edit the corresponding configuration file, which is usually htmlpurifier/config/!format.php
. To restore the web configuration form, delete or rename this file.Filter.ExtractStyleBlocks.Scope
; this means that users can add CSS that affects all of your Drupal theme and not just their content block. It is recommended to set this to #node-[%HTMLPURIFIER:NID%]
(including brackets) which will automatically ensure that CSS directives only apply to their node.", 'warning', FALSE);
} elseif (!isset($config_data['Filter.ExtractStyleBlocks.Scope']) || $config_data['Filter.ExtractStyleBlocks.Scope'] !== '#node-[%HTMLPURIFIER:NID%]') {
drupal_set_message("You have enabled Filter.ExtractStyleBlocks.Scope, but you did not set it to #node-[%HTMLPURIFIER:NID%]
; CSS may not work unless you have special theme support.", 'warning', FALSE);
}
}
}
return $form_element;
}
/**
* Clears the HTML Purifier internal Drupal cache.
*/
function _htmlpurifier_clear_cache($form, &$form_state) {
drupal_set_message(t('Cache cleared.'));
cache_clear_all('*', 'cache_htmlpurifier', TRUE);
cache_clear_all('htmlpurifier:', 'cache', TRUE);
}