' . t('About') . ''; $output .= '

' . t('The Filter module allows administrators to configure text formats. A text format defines the HTML tags, codes, and other input allowed in content and comments, and is a key feature in guarding against potentially damaging input from malicious users. For more information, see the online handbook entry for Filter module.', array('@filter' => 'http://drupal.org/documentation/modules/filter/')) . '

'; $output .= '

' . t('Uses') . '

'; $output .= '
'; $output .= '
' . t('Configuring text formats') . '
'; $output .= '
' . t('Configure text formats on the Text formats page. Improper text format configuration is a security risk. To ensure security, untrusted users should only have access to text formats that restrict them to either plain text or a safe set of HTML tags, since certain HTML tags can allow embedding malicious links or scripts in text. More trusted registered users may be granted permission to use less restrictive text formats in order to create rich content.', array('@formats' => url('admin/config/content/formats'))) . '
'; $output .= '
' . t('Applying filters to text') . '
'; $output .= '
' . t('Each text format uses filters to manipulate text, and most formats apply several different filters to text in a specific order. Each filter is designed for a specific purpose, and generally either adds, removes, or transforms elements within user-entered text before it is displayed. A filter does not change the actual content, but instead, modifies it temporarily before it is displayed. One filter may remove unapproved HTML tags, while another automatically adds HTML to make URLs display as clickable links.') . '
'; $output .= '
' . t('Defining text formats') . '
'; $output .= '
' . t('One format is included by default: Plain text (which removes all HTML tags). Additional formats may be created by your installation profile when you install Drupal, and more can be created by an administrator on the Text formats page.', array('@text-formats' => url('admin/config/content/formats'))) . '
'; $output .= '
' . t('Choosing a text format') . '
'; $output .= '
' . t('Users with access to more than one text format can use the Text format widget to choose between available text formats when creating or editing multi-line content. Administrators can define the text formats available to each user role, and control the order of formats listed in the Text format widget on the Text formats page.', array('@text-formats' => url('admin/config/content/formats'))) . '
'; $output .= '
'; return $output; case 'admin/config/content/formats': $output = '

' . t('Text formats define the HTML tags, code, and other formatting that can be used when entering text. Improper text format configuration is a security risk. Learn more on the Filter module help page.', array('@filterhelp' => url('admin/help/filter'))) . '

'; $output .= '

' . t('Text formats are presented on content editing pages in the order defined on this page. The first format available to a user will be selected by default.') . '

'; return $output; case 'admin/config/content/formats/%': $output = '

' . t('A text format contains filters that change the user input, for example stripping out malicious HTML or making URLs clickable. Filters are executed from top to bottom and the order is important, since one filter may prevent another filter from doing its job. For example, when URLs are converted into links before disallowed HTML tags are removed, all links may be removed. When this happens, the order of filters may need to be re-arranged.') . '

'; return $output; } } /** * Implements hook_theme(). */ function filter_theme() { return array( 'filter_tips' => array( 'variables' => array('tips' => NULL, 'long' => FALSE), 'file' => 'filter.pages.inc', ), 'text_format_wrapper' => array( 'render element' => 'element', ), 'filter_guidelines' => array( 'variables' => array('format' => NULL), ), 'filter_html_image_secure_image' => array( 'variables' => array('image' => NULL), ), ); } /** * Implements hook_element_info(). * * @see filter_process_format() * @see text_format_wrapper() */ function filter_element_info() { $type['text_format'] = array( '#process' => array('filter_process_format'), '#base_type' => 'textarea', '#theme_wrappers' => array('text_format_wrapper'), ); return $type; } /** * Implements hook_menu(). */ function filter_menu() { $items['filter/tips'] = array( 'title' => 'Compose tips', 'type' => MENU_SUGGESTED_ITEM, 'route_name' => 'filter_tips_all', ); $items['filter/tips/%filter_format'] = array( 'title' => 'Compose tips', 'route_name' => 'filter_tips', ); $items['admin/config/content/formats'] = array( 'title' => 'Text formats', 'description' => 'Configure how content input by users is filtered, including allowed HTML tags. Also allows enabling of module-provided filters.', 'page callback' => 'drupal_get_form', 'page arguments' => array('filter_admin_overview'), 'access arguments' => array('administer filters'), 'file' => 'filter.admin.inc', ); $items['admin/config/content/formats/list'] = array( 'title' => 'List', 'type' => MENU_DEFAULT_LOCAL_TASK, ); $items['admin/config/content/formats/add'] = array( 'title' => 'Add text format', 'page callback' => 'filter_admin_format_page', 'access arguments' => array('administer filters'), 'type' => MENU_LOCAL_ACTION, 'file' => 'filter.admin.inc', ); $items['admin/config/content/formats/%filter_format'] = array( 'title callback' => 'filter_admin_format_title', 'title arguments' => array(4), 'page callback' => 'filter_admin_format_page', 'page arguments' => array(4), 'access arguments' => array('administer filters'), 'file' => 'filter.admin.inc', ); $items['admin/config/content/formats/%filter_format/disable'] = array( 'title' => 'Disable text format', 'route_name' => 'filter_admin_disable', ); return $items; } /** * Loads a text format object from the database. * * @param $format_id * The format ID. * * @return * A fully-populated text format object, if the requested format exists and * is enabled. If the format does not exist, or exists in the database but * has been marked as disabled, FALSE is returned. * * @see filter_format_exists() * * @todo Use entity_load(). */ function filter_format_load($format_id) { $formats = filter_formats(); return isset($formats[$format_id]) ? $formats[$format_id] : FALSE; } /** * Determines if a text format exists. * * @param $format_id * The ID of the text format to check. * * @return * TRUE if the text format exists, FALSE otherwise. Note that for disabled * formats filter_format_exists() will return TRUE while filter_format_load() * will return FALSE. * * @see filter_format_load() */ function filter_format_exists($format_id) { return entity_load('filter_format', $format_id); } /** * Displays a text format form title. * * @param object $format_id * A format object. * * @return string * The name of the format. * * @see filter_menu() */ function filter_admin_format_title($format) { return $format->name; } /** * Implements hook_permission(). */ function filter_permission() { $perms['administer filters'] = array( 'title' => t('Administer text formats and filters'), 'description' => t('Define how text is handled by combining filters into text formats.', array( '@url' => url('admin/config/content/formats'), )), 'restrict access' => TRUE, ); // Generate permissions for each text format. Warn the administrator that any // of them are potentially unsafe. foreach (filter_formats() as $format) { $permission = filter_permission_name($format); if (!empty($permission)) { // Only link to the text format configuration page if the user who is // viewing this will have access to that page. $format_name_replacement = user_access('administer filters') ? l($format->name, 'admin/config/content/formats/' . $format->format) : drupal_placeholder($format->name); $perms[$permission] = array( 'title' => t("Use the !text_format text format", array('!text_format' => $format_name_replacement,)), 'description' => drupal_placeholder(t('Warning: This permission may have security implications depending on how the text format is configured.')), ); } } return $perms; } /** * Returns the machine-readable permission name for a provided text format. * * @param $format * An object representing a text format. * * @return * The machine-readable permission name, or FALSE if the provided text format * is malformed or is the fallback format (which is available to all users). */ function filter_permission_name($format) { if (isset($format->format) && $format->format != filter_fallback_format()) { return 'use text format ' . $format->format; } return FALSE; } /** * Retrieves a list of text formats, ordered by weight. * * @param $account * (optional) If provided, only those formats that are allowed for this user * account will be returned. All formats will be returned otherwise. Defaults * to NULL. * * @return * An array of text format objects, keyed by the format ID and ordered by * weight. * * @see filter_formats_reset() */ function filter_formats($account = NULL) { $language_interface = language(Language::TYPE_INTERFACE); $formats = &drupal_static(__FUNCTION__, array()); // All available formats are cached for performance. if (!isset($formats['all'])) { if ($cache = cache()->get("filter_formats:{$language_interface->langcode}")) { $formats['all'] = $cache->data; } else { $filter_formats = entity_load_multiple('filter_format'); $formats['all'] = array(); foreach ($filter_formats as $format_name => $filter_format) { if ($filter_format->status()) { $formats['all'][$format_name] = $filter_format; } } uasort($formats['all'], 'Drupal\Core\Config\Entity\ConfigEntityBase::sort'); cache()->set("filter_formats:{$language_interface->langcode}", $formats['all'], CacheBackendInterface::CACHE_PERMANENT, array('filter_formats' => TRUE)); } } // Build a list of user-specific formats. if (isset($account) && !isset($formats['user'][$account->uid])) { $formats['user'][$account->uid] = array(); foreach ($formats['all'] as $format) { if (filter_access($format, $account)) { $formats['user'][$account->uid][$format->format] = $format; } } } return isset($account) ? $formats['user'][$account->uid] : $formats['all']; } /** * Resets the text format caches. * * @see filter_formats() */ function filter_formats_reset() { cache()->deleteTags(array('filter_formats' => TRUE)); cache()->delete('filter_list_format'); drupal_static_reset('filter_list_format'); drupal_static_reset('filter_formats'); } /** * Retrieves a list of roles that are allowed to use a given text format. * * @param $format * An object representing the text format. * * @return * An array of role names, keyed by role ID. */ function filter_get_roles_by_format($format) { // Handle the fallback format upfront (all roles have access to this format). if ($format->format == filter_fallback_format()) { return user_role_names(); } // Do not list any roles if the permission does not exist. $permission = filter_permission_name($format); return !empty($permission) ? user_role_names(FALSE, $permission) : array(); } /** * Retrieves a list of text formats that are allowed for a given role. * * @param $rid * The user role ID to retrieve text formats for. * * @return * An array of text format objects that are allowed for the role, keyed by * the text format ID and ordered by weight. */ function filter_get_formats_by_role($rid) { $formats = array(); foreach (filter_formats() as $format) { $roles = filter_get_roles_by_format($format); if (isset($roles[$rid])) { $formats[$format->format] = $format; } } return $formats; } /** * Returns the ID of the default text format for a particular user. * * The default text format is the first available format that the user is * allowed to access, when the formats are ordered by weight. It should * generally be used as a default choice when presenting the user with a list * of possible text formats (for example, in a node creation form). * * Conversely, when existing content that does not have an assigned text format * needs to be filtered for display, the default text format is the wrong * choice, because it is not guaranteed to be consistent from user to user, and * some trusted users may have an unsafe text format set by default, which * should not be used on text of unknown origin. Instead, the fallback format * returned by filter_fallback_format() should be used, since that is intended * to be a safe, consistent format that is always available to all users. * * @param $account * (optional) The user account to check. Defaults to the currently logged-in * user. Defaults to NULL. * * @return * The ID of the user's default text format. * * @see filter_fallback_format() */ function filter_default_format($account = NULL) { global $user; if (!isset($account)) { $account = $user; } // Get a list of formats for this user, ordered by weight. The first one // available is the user's default format. $formats = filter_formats($account); $format = reset($formats); return $format->format; } /** * Retrieves all filter types that are used in a given text format. * * @param string $format_id * A text format ID. * * @return array * All filter types used by filters of a given text format. * * @throws Exception */ function filter_get_filter_types_by_format($format_id) { $filter_types = array(); $filters = filter_list_format($format_id); foreach ($filters as $filter) { if ($filter->status) { $filter_types[] = $filter->getType(); } } return array_unique($filter_types); } /** * Retrieve all HTML restrictions (tags and attributes) for a given text format. * * Note that restrictions applied to the "*" tag (the wildcard tag, i.e. all * tags) are treated just like any other HTML tag. That means that any * restrictions applied to it are not automatically applied to all other tags. * It is up to the caller to handle this in whatever way it sees fit; this way * no information granularity is lost. * * @param string $format_id * A text format ID. * * @return array|FALSE * An structured array as returned by FilterInterface::getHTMLRestrictions(), * but with the intersection of all filters in this text format. * Will either indicate blacklisting of tags or whitelisting of tags. In the * latter case, it's possible that restrictions on attributes are also stored. * FALSE means there are no HTML restrictions. */ function filter_get_html_restrictions_by_format($format_id) { $format = filter_format_load($format_id); // Ignore filters that are disabled or don't have HTML restrictions. $filters = array_filter($format->filters()->getAll(), function($filter) { if (!$filter->status) { return FALSE; } if ($filter->getType() === FILTER_TYPE_HTML_RESTRICTOR && $filter->getHTMLRestrictions() !== FALSE) { return TRUE; } return FALSE; }); if (empty($filters)) { return FALSE; } else { // From the set of remaining filters (they were filtered by array_filter() // above), collect the list of tags and attributes that are allowed by all // filters, i.e. the intersection of all allowed tags and attributes. $restrictions = array_reduce($filters, function($restrictions, $filter) { $new_restrictions = $filter->getHTMLRestrictions(); // The first filter with HTML restrictions provides the initial set. if (!isset($restrictions)) { return $new_restrictions; } // Subsequent filters with an "allowed html" setting must be intersected // with the existing set, to ensure we only end up with the tags that are // allowed by *all* filters with an "allowed html" setting. else { // Track the union of forbidden (blacklisted) tags. if (isset($new_restrictions['forbidden_tags'])) { if (!isset($restrictions['forbidden_tags'])) { $restrictions['forbidden_tags'] = $new_restrictions['forbidden_tags']; } else { $restrictions['forbidden_tags'] = array_unique(array_merge($restrictions['forbidden_tags'], $new_restrictions['forbidden_tags'])); } } // Track the intersection of allowed (whitelisted) tags. if (isset($restrictions['allowed'])) { $intersection = $restrictions['allowed']; foreach ($intersection as $tag => $attributes) { // If the current tag is not whitelisted by the new filter, then // it's outside of the intersection. if (!array_key_exists($tag, $new_restrictions['allowed'])) { // The exception is the asterisk (which applies to all tags): it // does not need to be whitelisted by every filter in order to be // used; not every filter needs attribute restrictions on all tags. if ($tag === '*') { continue; } unset($intersection[$tag]); } // The tag is in the intersection, but now we must calculate the // intersection of the allowed attributes. else { $current_attributes = $intersection[$tag]; $new_attributes = $new_restrictions['allowed'][$tag]; // The current intersection does not allow any attributes, never // allow. if (!is_array($current_attributes) && $current_attributes == FALSE) { continue; } // The new filter allows less attributes (all -> list or none). else if (!is_array($current_attributes) && $current_attributes == TRUE && ($new_attributes == FALSE || is_array($new_attributes))) { $intersection[$tag] = $new_attributes; } // The new filter allows less attributes (list -> none). else if (is_array($current_attributes) && $new_attributes == FALSE) { $intersection[$tag] = $new_attributes; } // The new filter allows more attributes; retain current. else if (is_array($current_attributes) && $new_attributes == TRUE) { continue; } // The new filter allows the same attributes; retain current. else if ($current_attributes == $new_attributes) { continue; } // Both list an array of attribute values; do an intersection, // where we take into account that a value of: // - TRUE means the attribute value is allowed; // - FALSE means the attribute value is forbidden; // hence we keep the ANDed result. else { $intersection[$tag] = array_intersect_key($intersection[$tag], $new_attributes); foreach (array_keys($intersection[$tag]) as $attribute_value) { $intersection[$tag][$attribute_value] = $intersection[$tag][$attribute_value] && $new_attributes[$attribute_value]; } } } } $restrictions['allowed'] = $intersection; } return $restrictions; } }, NULL); // Simplification: if we have both a (intersected) whitelist and a (unioned) // blacklist, then remove any tags from the whitelist that also exist in the // blacklist. Now the whitelist alone expresses all tag-level restrictions, // and we can delete the blacklist. if (isset($restrictions['allowed']) && isset($restrictions['forbidden_tags'])) { foreach ($restrictions['forbidden_tags'] as $tag) { if (isset($restrictions['allowed'][$tag])) { unset($restrictions['allowed'][$tag]); } } unset($restrictions['forbidden_tags']); } // Simplification: if the only remaining allowed tag is the asterisk (which // contains attribute restrictions that apply to all tags), and only // whitelisting filters were used, then effectively nothing is allowed. if (isset($restrictions['allowed'])) { if (count($restrictions['allowed']) === 1 && array_key_exists('*', $restrictions['allowed']) && !isset($restrictions['forbidden_tags'])) { $restrictions['allowed'] = array(); } } return $restrictions; } } /** * Returns the ID of the fallback text format that all users have access to. * * The fallback text format is a regular text format in every respect, except * it does not participate in the filter permission system and cannot be * disabled. It needs to exist because any user who has permission to create * formatted content must always have at least one text format they can use. * * Because the fallback format is available to all users, it should always be * configured securely. For example, when the Filter module is installed, this * format is initialized to output plain text. Installation profiles and site * administrators have the freedom to configure it further. * * Note that the fallback format is completely distinct from the default format, * which differs per user and is simply the first format which that user has * access to. The default and fallback formats are only guaranteed to be the * same for users who do not have access to any other format; otherwise, the * fallback format's weight determines its placement with respect to the user's * other formats. * * Any modules implementing a format deletion functionality must not delete this * format. * * @return * The ID of the fallback text format. * * @see hook_filter_format_disable() * @see filter_default_format() */ function filter_fallback_format() { // This variable is automatically set in the database for all installations // of Drupal. In the event that it gets disabled or deleted somehow, there // is no safe default to return, since we do not want to risk making an // existing (and potentially unsafe) text format on the site automatically // available to all users. Returning NULL at least guarantees that this // cannot happen. return config('filter.settings')->get('fallback_format'); } /** * Returns the title of the fallback text format. * * @return string * The title of the fallback text format. */ function filter_fallback_format_title() { $fallback_format = filter_format_load(filter_fallback_format()); return filter_admin_format_title($fallback_format); } /** * Checks if the text in a certain text format is allowed to be cached. * * This function can be used to check whether the result of the filtering * process can be cached. A text format may allow caching depending on the * filters enabled. * * @param $format_id * The text format ID to check. * * @return * TRUE if the given text format allows caching, FALSE otherwise. */ function filter_format_allowcache($format_id) { $format = filter_format_load($format_id); return !empty($format->cache); } /** * Retrieves a list of filters for a given text format. * * Note that this function returns all associated filters regardless of whether * they are enabled or disabled. All functions working with the filter * information outside of filter administration should test for $filter->status * before performing actions with the filter. * * @param $format_id * The format ID to retrieve filters for. * * @return * An array of filter objects associated to the given text format, keyed by * filter name. * * @todo Change this function to only return enabled filters. Code that needs to * access disabled filters is not regular runtime code and thus can work with * the FilterFormat::filters(). */ function filter_list_format($format_id) { $filters = &drupal_static(__FUNCTION__, array()); if (!isset($filters['all'])) { if ($cache = cache()->get('filter_list_format')) { $filters['all'] = $cache->data; } else { $filters['all'] = array(); $filter_formats = filter_formats(); foreach ($filter_formats as $filter_format) { // This loop must not instantiate the actual filter plugins, since the // filter bag would be duplicated for each filter plugin instance upon // unserialization of the cache item. $filters['all'][$filter_format->id()] = $filter_format->filters(); } cache()->set('filter_list_format', $filters['all']); } } if (!isset($filters[$format_id]) && isset($filters['all'][$format_id])) { $filters[$format_id] = $filters['all'][$format_id]; } return isset($filters[$format_id]) ? $filters[$format_id] : array(); } /** * Runs all the enabled filters on a piece of text. * * Note: Because filters can inject JavaScript or execute PHP code, security is * vital here. When a user supplies a text format, you should validate it using * filter_access() before accepting/using it. This is normally done in the * validation stage of the Form API. You should for example never make a * preview of content in a disallowed format. * * @param $text * The text to be filtered. * @param $format_id * (optional) The format ID of the text to be filtered. If no format is * assigned, the fallback format will be used. Defaults to NULL. * @param $langcode * (optional) The language code of the text to be filtered, e.g. 'en' for * English. This allows filters to be language aware so language specific * text replacement can be implemented. Defaults to an empty string. * @param $cache * (optional) A Boolean indicating whether to cache the filtered output in the * {cache_filter} table. The caller may set this to FALSE when the output is * already cached elsewhere to avoid duplicate cache lookups and storage. * Defaults to FALSE. * @param array $filter_types_to_skip * (optional) An array of filter types to skip, or an empty array (default) * to skip no filter types. All of the format's filters will be applied, * except for filters of the types that are marked to be skipped. * FILTER_TYPE_HTML_RESTRICTOR is the only type that cannot be skipped. * * @return * The filtered text. * * @ingroup sanitization */ function check_markup($text, $format_id = NULL, $langcode = '', $cache = FALSE, $filter_types_to_skip = array()) { if (!isset($format_id)) { $format_id = filter_fallback_format(); } // If the requested text format does not exist, the text cannot be filtered. if (!$format = filter_format_load($format_id)) { watchdog('filter', 'Missing text format: %format.', array('%format' => $format_id), WATCHDOG_ALERT); return ''; } // Prevent FILTER_TYPE_HTML_RESTRICTOR from being skipped. if (in_array(FILTER_TYPE_HTML_RESTRICTOR, $filter_types_to_skip)) { $filter_types_to_skip = array_diff($filter_types_to_skip, array(FILTER_TYPE_HTML_RESTRICTOR)); } // When certain filters should be skipped, don't perform caching. if ($filter_types_to_skip) { $cache = FALSE; } // Check for a cached version of this piece of text. $cache = $cache && !empty($format->cache); $cache_id = ''; if ($cache) { $cache_id = $format->format . ':' . $langcode . ':' . hash('sha256', $text); if ($cached = cache('filter')->get($cache_id)) { return $cached->data; } } // Convert all Windows and Mac newlines to a single newline, so filters only // need to deal with one possibility. $text = str_replace(array("\r\n", "\r"), "\n", $text); // Get a complete list of filters, ordered properly. $filters = filter_list_format($format->format); // Give filters the chance to escape HTML-like data such as code or formulas. foreach ($filters as $filter) { // If necessary, skip filters of a certain type. if (in_array($filter->getType(), $filter_types_to_skip)) { continue; } if ($filter->status) { $text = $filter->prepare($text, $langcode, $cache, $cache_id); } } // Perform filtering. foreach ($filters as $filter) { // If necessary, skip filters of a certain type. if (in_array($filter->getType(), $filter_types_to_skip)) { continue; } if ($filter->status) { $text = $filter->process($text, $langcode, $cache, $cache_id); } } // Cache the filtered text. This cache is infinitely valid. It becomes // obsolete when $text changes (which leads to a new $cache_id). It is // automatically flushed when the text format is updated. // @see \Drupal\filter\Plugin\Core\Entity\FilterFormat::save() if ($cache) { cache('filter')->set($cache_id, $text, CacheBackendInterface::CACHE_PERMANENT, array('filter_format' => $format->format)); } return $text; } /** * Expands an element into a base element with text format selector attached. * * The form element will be expanded into two separate form elements, one * holding the original element, and the other holding the text format * selector: * - value: Holds the original element, having its #type changed to the value * of #base_type or 'textarea' by default. * - format: Holds the text format details and the text format selection, * using the text format ID specified in #format or the user's default format * by default, if NULL. * * The resulting value for the element will be an array holding the value and * the format. For example, the value for the body element will be: * @code * $form_state['values']['body']['value'] = 'foo'; * $form_state['values']['body']['format'] = 'foo'; * @endcode * * @param $element * The form element to process. Properties used: * - #base_type: The form element #type to use for the 'value' element. * 'textarea' by default. * - #format: (optional) The text format ID to preselect. If NULL or not set, * the default format for the current user will be used. * * @return * The expanded element. */ function filter_process_format($element) { global $user; // Ensure that children appear as subkeys of this element. $element['#tree'] = TRUE; $blacklist = array( // Make form_builder() regenerate child properties. '#parents', '#id', '#name', // Do not copy this #process function to prevent form_builder() from // recursing infinitely. '#process', // Description is handled by theme_text_format_wrapper(). '#description', // Ensure proper ordering of children. '#weight', // Properties already processed for the parent element. '#prefix', '#suffix', '#attached', '#processed', '#theme_wrappers', ); // Move this element into sub-element 'value'. unset($element['value']); foreach (element_properties($element) as $key) { if (!in_array($key, $blacklist)) { $element['value'][$key] = $element[$key]; } } $element['value']['#type'] = $element['#base_type']; $element['value'] += element_info($element['#base_type']); // Turn original element into a text format wrapper. $element['#attached']['library'][] = array('filter', 'drupal.filter'); // Setup child container for the text format widget. $element['format'] = array( '#type' => 'container', '#attributes' => array('class' => array('filter-wrapper')), ); // Get a list of formats that the current user has access to. $formats = filter_formats($user); // Use the default format for this user if none was selected. if (!isset($element['#format'])) { $element['#format'] = filter_default_format($user); } // If multiple text formats are available, remove the fallback. The // "always_show_fallback_choice" is a hidden variable that has no UI. It // defaults to false. if (!config('filter.settings')->get('always_show_fallback_choice')) { $fallback_format = filter_fallback_format(); if ($element['#format'] !== $fallback_format && count($formats) > 1) { unset($formats[$fallback_format]); } } // Prepare text format guidelines. $element['format']['guidelines'] = array( '#type' => 'container', '#attributes' => array('class' => array('filter-guidelines')), '#weight' => 20, ); foreach ($formats as $format) { $options[$format->format] = $format->name; $element['format']['guidelines'][$format->format] = array( '#theme' => 'filter_guidelines', '#format' => $format, ); } $element['format']['format'] = array( '#type' => 'select', '#title' => t('Text format'), '#options' => $options, '#default_value' => $element['#format'], '#access' => count($formats) > 1, '#weight' => 10, '#attributes' => array('class' => array('filter-list')), '#parents' => array_merge($element['#parents'], array('format')), ); $element['format']['help'] = array( '#type' => 'container', '#attributes' => array('class' => array('filter-help')), '#markup' => l(t('More information about text formats'), 'filter/tips', array('attributes' => array('target' => '_blank'))), '#weight' => 0, ); $all_formats = filter_formats(); $format_exists = isset($all_formats[$element['#format']]); $user_has_access = isset($formats[$element['#format']]); $user_is_admin = user_access('administer filters'); // If the stored format does not exist, administrators have to assign a new // format. if (!$format_exists && $user_is_admin) { $element['format']['format']['#required'] = TRUE; $element['format']['format']['#default_value'] = NULL; // Force access to the format selector (it may have been denied above if // the user only has access to a single format). $element['format']['format']['#access'] = TRUE; } // Disable this widget, if the user is not allowed to use the stored format, // or if the stored format does not exist. The 'administer filters' permission // only grants access to the filter administration, not to all formats. elseif (!$user_has_access || !$format_exists) { // Overload default values into #value to make them unalterable. $element['value']['#value'] = $element['value']['#default_value']; $element['format']['format']['#value'] = $element['format']['format']['#default_value']; // Prepend #pre_render callback to replace field value with user notice // prior to rendering. $element['value'] += array('#pre_render' => array()); array_unshift($element['value']['#pre_render'], 'filter_form_access_denied'); // Cosmetic adjustments. if (isset($element['value']['#rows'])) { $element['value']['#rows'] = 3; } $element['value']['#disabled'] = TRUE; $element['value']['#resizable'] = 'none'; // Hide the text format selector and any other child element (such as text // field's summary). foreach (element_children($element) as $key) { if ($key != 'value') { $element[$key]['#access'] = FALSE; } } } return $element; } /** * Render API callback: Hides the field value of 'text_format' elements. * * To not break form processing and previews if a user does not have access to * a stored text format, the expanded form elements in filter_process_format() * are forced to take over the stored #default_values for 'value' and 'format'. * However, to prevent the unfiltered, original #value from being displayed to * the user, we replace it with a friendly notice here. * * @see filter_process_format() */ function filter_form_access_denied($element) { $element['#value'] = t('This field has been disabled because you do not have sufficient permissions to edit it.'); return $element; } /** * Returns HTML for a text format-enabled form element. * * @param array $variables * An associative array containing: * - element: A render element containing #children and #description. * * @ingroup themeable */ function theme_text_format_wrapper($variables) { $element = $variables['element']; $output = '
'; $output .= $element['#children']; if (!empty($element['#description'])) { $output .= '
' . $element['#description'] . '
'; } $output .= "
\n"; return $output; } /** * Checks if a user has access to a particular text format. * * @param $format * An object representing the text format. * @param $account * (optional) The user account to check access for; if omitted, the currently * logged-in user is used. Defaults to NULL. * * @return * Boolean TRUE if the user is allowed to access the given format. */ function filter_access($format, $account = NULL) { global $user; if (!isset($account)) { $account = $user; } // Handle special cases up front. All users have access to the fallback // format. if ($format->format == filter_fallback_format()) { return TRUE; } // Check the permission if one exists; otherwise, we have a non-existent // format so we return FALSE. $permission = filter_permission_name($format); return !empty($permission) && user_access($permission, $account); } /** * Retrieves the filter tips. * * @param $format_id * The ID of the text format for which to retrieve tips, or -1 to return tips * for all formats accessible to the current user. * @param $long * (optional) Boolean indicating whether the long form of tips should be * returned. Defaults to FALSE. * * @return * An associative array of filtering tips, keyed by filter name. Each * filtering tip is an associative array with elements: * - tip: Tip text. * - id: Filter ID. */ function _filter_tips($format_id, $long = FALSE) { global $user; $formats = filter_formats($user); $tips = array(); // If only listing one format, extract it from the $formats array. if ($format_id != -1) { $formats = array($formats[$format_id]); } foreach ($formats as $format) { $filters = filter_list_format($format->format); foreach ($filters as $name => $filter) { if ($filter->status) { $tip = $filter->tips($long); if (isset($tip)) { $tips[$format->name][$name] = array('tip' => $tip, 'id' => $name); } } } } return $tips; } /** * Parses an HTML snippet and returns it as a DOM object. * * This function loads the body part of a partial (X)HTML document and returns * a full DOMDocument object that represents this document. You can use * filter_dom_serialize() to serialize this DOMDocument back to a XHTML * snippet. * * @param $text * The partial (X)HTML snippet to load. Invalid markup will be corrected on * import. * * @return * A DOMDocument that represents the loaded (X)HTML snippet. */ function filter_dom_load($text) { $dom_document = new DOMDocument(); // Ignore warnings during HTML soup loading. @$dom_document->loadHTML('' . $text . ''); return $dom_document; } /** * Converts a DOM object back to an HTML snippet. * * The function serializes the body part of a DOMDocument back to an XHTML * snippet. The resulting XHTML snippet will be properly formatted to be * compatible with HTML user agents. * * @param $dom_document * A DOMDocument object to serialize, only the tags below * the first node will be converted. * * @return * A valid (X)HTML snippet, as a string. */ function filter_dom_serialize($dom_document) { $body_node = $dom_document->getElementsByTagName('body')->item(0); $body_content = ''; foreach ($body_node->getElementsByTagName('script') as $node) { filter_dom_serialize_escape_cdata_element($dom_document, $node); } foreach ($body_node->getElementsByTagName('style') as $node) { filter_dom_serialize_escape_cdata_element($dom_document, $node, '/*', '*/'); } foreach ($body_node->childNodes as $child_node) { $body_content .= $dom_document->saveXML($child_node); } return $body_content; } /** * Adds comments around the childNodes as $node) { if (get_class($node) == 'DOMCdataSection') { // See drupal_get_js(). This code is more or less duplicated there. $embed_prefix = "\n{$comment_end}\n"; // Prevent invalid cdata escaping as this would throw a DOM error. // This is the same behavior as found in libxml2. // Related W3C standard: http://www.w3.org/TR/REC-xml/#dt-cdsection // Fix explanation: http://en.wikipedia.org/wiki/CDATA#Nesting $data = str_replace(']]>', ']]]]>', $node->data); $fragment = $dom_document->createDocumentFragment(); $fragment->appendXML($embed_prefix . $data . $embed_suffix); $dom_element->appendChild($fragment); $dom_element->removeChild($node); } } } /** * Returns HTML for guidelines for a text format. * * @param array $variables * An associative array containing: * - format: An object representing a text format. * * @ingroup themeable */ function theme_filter_guidelines($variables) { $format = $variables['format']; $attributes['class'][] = 'filter-guidelines-item'; $attributes['class'][] = 'filter-guidelines-' . $format->format; $output = ''; $output .= '

' . check_plain($format->name) . '

'; $filter_tips = array( '#theme' => 'filter_tips', '#tips' => _filter_tips($format->format, FALSE), ); $output .= drupal_render($filter_tips); $output .= ''; return $output; } /** * @defgroup standard_filters Standard filters * @{ * Filters implemented by the Filter module. */ /** * Provides filtering of input into accepted HTML. */ function _filter_html($text, $filter) { $allowed_tags = preg_split('/\s+|<|>/', $filter->settings['allowed_html'], -1, PREG_SPLIT_NO_EMPTY); $text = filter_xss($text, $allowed_tags); if ($filter->settings['filter_html_nofollow']) { $html_dom = filter_dom_load($text); $links = $html_dom->getElementsByTagName('a'); foreach ($links as $link) { $link->setAttribute('rel', 'nofollow'); } $text = filter_dom_serialize($html_dom); } return trim($text); } /** * Converts text into hyperlinks automatically. * * This filter identifies and makes clickable three types of "links". * - URLs like http://example.com. * - E-mail addresses like name@example.com. * - Web addresses without the "http://" protocol defined, like * www.example.com. * Each type must be processed separately, as there is no one regular * expression that could possibly match all of the cases in one pass. */ function _filter_url($text, $filter) { // Tags to skip and not recurse into. $ignore_tags = 'a|script|style|code|pre'; // Pass length to regexp callback. _filter_url_trim(NULL, $filter->settings['filter_url_length']); // Create an array which contains the regexps for each type of link. // The key to the regexp is the name of a function that is used as // callback function to process matches of the regexp. The callback function // is to return the replacement for the match. The array is used and // matching/replacement done below inside some loops. $tasks = array(); // Prepare protocols pattern for absolute URLs. // check_url() will replace any bad protocols with HTTP, so we need to support // the identical list. While '//' is technically optional for MAILTO only, // we cannot cleanly differ between protocols here without hard-coding MAILTO, // so '//' is optional for all protocols. // @see filter_xss_bad_protocol() $protocols = config('system.filter')->get('protocols'); $protocols = implode(':(?://)?|', $protocols) . ':(?://)?'; $valid_url_path_characters = "[\p{L}\p{M}\p{N}!\*\';:=\+,\.\$\/%#\[\]\-_~@&]"; // Allow URL paths to contain balanced parens // 1. Used in Wikipedia URLs like /Primer_(film) // 2. Used in IIS sessions like /S(dfd346)/ $valid_url_balanced_parens = '\('. $valid_url_path_characters . '+\)'; // Valid end-of-path chracters (so /foo. does not gobble the period). // 1. Allow =&# for empty URL parameters and other URL-join artifacts $valid_url_ending_characters = '[\p{L}\p{M}\p{N}:_+~#=/]|(?:' . $valid_url_balanced_parens . ')'; $valid_url_query_chars = '[a-z0-9!?\*\'@\(\);:&=\+\$\/%#\[\]\-_\.,~|]'; $valid_url_query_ending_chars = '[a-z0-9_&=#\/]'; //full path //and allow @ in a url, but only in the middle. Catch things like http://example.com/@user/ $valid_url_path = '(?:(?:'.$valid_url_path_characters . '*(?:'.$valid_url_balanced_parens .$valid_url_path_characters . '*)*'. $valid_url_ending_characters . ')|(?:@' . $valid_url_path_characters . '+\/))'; // Prepare domain name pattern. // The ICANN seems to be on track towards accepting more diverse top level // domains, so this pattern has been "future-proofed" to allow for TLDs // of length 2-64. $domain = '(?:[\p{L}\p{M}\p{N}._+-]+\.)?[\p{L}\p{M}]{2,64}\b'; $ip = '(?:[0-9]{1,3}\.){3}[0-9]{1,3}'; $auth = '[\p{L}\p{M}\p{N}:%_+*~#?&=.,/;-]+@'; $trail = '('.$valid_url_path.'*)?(\\?'.$valid_url_query_chars .'*'.$valid_url_query_ending_chars.')?'; // Match absolute URLs. $url_pattern = "(?:$auth)?(?:$domain|$ip)/?(?:$trail)?"; $pattern = "`((?:$protocols)(?:$url_pattern))`u"; $tasks['_filter_url_parse_full_links'] = $pattern; // Match e-mail addresses. $url_pattern = "[\p{L}\p{M}\p{N}._-]{1,254}@(?:$domain)"; $pattern = "`($url_pattern)`u"; $tasks['_filter_url_parse_email_links'] = $pattern; // Match www domains. $url_pattern = "www\.(?:$domain)/?(?:$trail)?"; $pattern = "`($url_pattern)`u"; $tasks['_filter_url_parse_partial_links'] = $pattern; // Each type of URL needs to be processed separately. The text is joined and // re-split after each task, since all injected HTML tags must be correctly // protected before the next task. foreach ($tasks as $task => $pattern) { // HTML comments need to be handled separately, as they may contain HTML // markup, especially a '>'. Therefore, remove all comment contents and add // them back later. _filter_url_escape_comments('', TRUE); $text = preg_replace_callback('``s', '_filter_url_escape_comments', $text); // Split at all tags; ensures that no tags or attributes are processed. $chunks = preg_split('/(<.+?>)/is', $text, -1, PREG_SPLIT_DELIM_CAPTURE); // PHP ensures that the array consists of alternating delimiters and // literals, and begins and ends with a literal (inserting NULL as // required). Therefore, the first chunk is always text: $chunk_type = 'text'; // If a tag of $ignore_tags is found, it is stored in $open_tag and only // removed when the closing tag is found. Until the closing tag is found, // no replacements are made. $open_tag = ''; for ($i = 0; $i < count($chunks); $i++) { if ($chunk_type == 'text') { // Only process this text if there are no unclosed $ignore_tags. if ($open_tag == '') { // If there is a match, inject a link into this chunk via the callback // function contained in $task. $chunks[$i] = preg_replace_callback($pattern, $task, $chunks[$i]); } // Text chunk is done, so next chunk must be a tag. $chunk_type = 'tag'; } else { // Only process this tag if there are no unclosed $ignore_tags. if ($open_tag == '') { // Check whether this tag is contained in $ignore_tags. if (preg_match("`<($ignore_tags)(?:\s|>)`i", $chunks[$i], $matches)) { $open_tag = $matches[1]; } } // Otherwise, check whether this is the closing tag for $open_tag. else { if (preg_match("`<\/$open_tag>`i", $chunks[$i], $matches)) { $open_tag = ''; } } // Tag chunk is done, so next chunk must be text. $chunk_type = 'text'; } } $text = implode($chunks); // Revert back to the original comment contents _filter_url_escape_comments('', FALSE); $text = preg_replace_callback('``', '_filter_url_escape_comments', $text); } return $text; } /** * Makes links out of absolute URLs. * * Callback for preg_replace_callback() within _filter_url(). */ function _filter_url_parse_full_links($match) { // The $i:th parenthesis in the regexp contains the URL. $i = 1; $match[$i] = decode_entities($match[$i]); $caption = check_plain(_filter_url_trim($match[$i])); $match[$i] = check_plain($match[$i]); return '' . $caption . ''; } /** * Makes links out of e-mail addresses. * * Callback for preg_replace_callback() within _filter_url(). */ function _filter_url_parse_email_links($match) { // The $i:th parenthesis in the regexp contains the URL. $i = 0; $match[$i] = decode_entities($match[$i]); $caption = check_plain(_filter_url_trim($match[$i])); $match[$i] = check_plain($match[$i]); return '' . $caption . ''; } /** * Makes links out of domain names starting with "www." * * Callback for preg_replace_callback() within _filter_url(). */ function _filter_url_parse_partial_links($match) { // The $i:th parenthesis in the regexp contains the URL. $i = 1; $match[$i] = decode_entities($match[$i]); $caption = check_plain(_filter_url_trim($match[$i])); $match[$i] = check_plain($match[$i]); return '' . $caption . ''; } /** * Escapes the contents of HTML comments. * * Callback for preg_replace_callback() within _filter_url(). * * @param $match * An array containing matches to replace from preg_replace_callback(), * whereas $match[1] is expected to contain the content to be filtered. * @param $escape * (optional) A Boolean indicating whether to escape (TRUE) or unescape * comments (FALSE). Defaults to NULL, indicating neither. If TRUE, statically * cached $comments are reset. */ function _filter_url_escape_comments($match, $escape = NULL) { static $mode, $comments = array(); if (isset($escape)) { $mode = $escape; if ($escape){ $comments = array(); } return; } // Replace all HTML coments with a '' placeholder. if ($mode) { $content = $match[1]; $hash = hash('sha256', $content); $comments[$hash] = $content; return ""; } // Or replace placeholders with actual comment contents. else { $hash = $match[1]; $hash = trim($hash); $content = $comments[$hash]; return ""; } } /** * Shortens long URLs to http://www.example.com/long/url... */ function _filter_url_trim($text, $length = NULL) { static $_length; if ($length !== NULL) { $_length = $length; } // Use +3 for '...' string length. if ($_length && strlen($text) > $_length + 3) { $text = substr($text, 0, $_length) . '...'; } return $text; } /** * Scans the input and makes sure that HTML tags are properly closed. */ function _filter_htmlcorrector($text) { return filter_dom_serialize(filter_dom_load($text)); } /** * Converts line breaks into

and
in an intelligent fashion. * * Based on: http://photomatt.net/scripts/autop */ function _filter_autop($text) { // All block level tags $block = '(?:table|thead|tfoot|caption|col|colgroup|tbody|tr|td|th|div|dl|dd|dt|ul|ol|li|pre|select|option|form|map|area|blockquote|address|math|input|p|h[1-6]|fieldset|legend|hr|article|aside|details|figcaption|figure|footer|header|hgroup|menu|nav|section|summary)'; // Split at opening and closing PRE, SCRIPT, STYLE, OBJECT, IFRAME tags // and comments. We don't apply any processing to the contents of these tags // to avoid messing up code. We look for matched pairs and allow basic // nesting. For example: // "processed

 ignored  ignored 
processed" $chunks = preg_split('@(|]*>)@i', $text, -1, PREG_SPLIT_DELIM_CAPTURE); // Note: PHP ensures the array consists of alternating delimiters and literals // and begins and ends with a literal (inserting NULL as required). $ignore = FALSE; $ignoretag = ''; $output = ''; foreach ($chunks as $i => $chunk) { if ($i % 2) { $comment = (substr($chunk, 0, 4) == '