exercise/htmlpurifier-bundle
Composer 安装命令:
composer require exercise/htmlpurifier-bundle
包简介
HTMLPurifier integration for your Symfony project
README 文档
README
ExerciseHTMLPurifierBundle
This bundle integrates HTMLPurifier into Symfony.
Installation
Install the bundle:
$ composer require exercise/htmlpurifier-bundle
Configuration
If you do not explicitly configure this bundle, an HTMLPurifier service will be
defined as exercise_html_purifier.default. This behavior is the same as if you
had specified the following configuration:
# config/packages/exercise_html_purifier.yaml exercise_html_purifier: default_cache_serializer_path: '%kernel.cache_dir%/htmlpurifier' # 493 int => ocl "0755" default_cache_serializer_permissions: 493
The default profile is special, it is always defined and its configuration
is inherited by all custom profiles.
exercise_html_purifier.default is the default service using the base
configuration.
# config/packages/exercise_html_purifier.yaml exercise_html_purifier: default_cache_serializer_path: '%kernel.cache_dir%/htmlpurifier' html_profiles: custom: config: Core.Encoding: 'ISO-8859-1' HTML.Allowed: 'a[href|target],p,br' Attr.AllowedFrameTargets: '_blank'
In this example, a exercise_html_purifier.custom service will also be defined,
which includes cache, encoding, HTML tags and attributes options. Available configuration
options may be found in HTMLPurifier's configuration documentation.
Note: If you define a default profile but omit Cache.SerializerPath, it
will still default to the path above. You can specify a value of null for the
option to suppress the default path.
Autowiring
By default type hinting \HtmlPurifier in your services will autowire
the exercise_html_purifier.default service.
To override it and use your own config as default autowired services just add
this configuration:
# config/services.yaml services: #... exercise_html_purifier.default: '@exercise_html_purifier.custom'
Using a custom purifier class as default
If you want to use your own class as default purifier, define the new alias as below:
# config/services.yaml services: # ... exercise_html_purifier.default: '@App\Html\CustomHtmlPurifier'
Argument binding
The bundle also leverages the alias argument binding for each profile. So the following config:
html_profiles: blog: # ... gallery: # ...
will register the following binding:
// default config is bound whichever argument name is used public function __construct(\HTMLPurifier $purifier) {} public function __construct(\HTMLPurifier $htmlPurifier) {} public function __construct(\HTMLPurifier $blogPurifier) {} // blog config public function __construct(\HTMLPurifier $galleryPurifier) {} // gallery config
Form Type Extension
This bundles provides a form type extension for filtering form fields with HTMLPurifier. Purification is done early during the PRE_SUBMIT event, which means that client data will be filtered before being bound to the form.
Two options are automatically available in all TextType based types:
<?php namespace App\Form\Type; use Symfony\Component\Form\AbstractType; use Symfony\Component\Form\Extension\Core\Type\TextType; use Symfony\Component\Form\Extension\Core\Type\TextareaType; use Symfony\Component\Form\FormBuilderInterface; class ArticleType extends AbstractType { public function buildForm(FormBuilderInterface $builder, array $options) { $builder ->add('content', TextareaType::class, ['purify_html' => true]) // will use default profile ->add('sneek_peak', TextType::class, ['purify_html' => true, 'purify_html_profile' => 'sneak_peak']) // ... ; } // ... }
Every type extending TextType (i.e: TextareaType) inherit these options.
It also means that if you use a type such as CKEditorType, you will benefit
from these options without configuring anything.
Twig Filter
This bundles registers a purify filter with Twig. Output from this filter is
marked safe for HTML, much like Twig's built-in escapers. The filter may be used
as follows:
{# Filters text's value through the "default" HTMLPurifier service #} {{ text|purify }} {# Filters text's value through the "custom" HTMLPurifier service #} {{ text|purify('custom') }}
Purifiers Registry
A Exercise\HtmlPurifierBundle\HtmlPurifiersRegistry class is registered by default
as a service. To add your custom instance of purifier, and make it available to
the form type and Twig extensions through its profile name, you can use the tag
exercise.html_purifier as follow:
# config/services.yaml services: # ... App\HtmlPurifier\CustomPurifier: tags: - name: exercise.html_purifier profile: custom
Now your purifier can be used when:
// In a form type $builder ->add('content', TextareaType::class, [ 'purify_html' => true, 'purify_html_profile' => 'custom', ]) // ...
{# in a template #} {{ html_string|purify('custom') }}
How to Customize a Config Definition
Whitelist Attributes
In some case, you might want to set some rules for a specific tag. This is what the following config is about:
# config/packages/exercise_html_purifier.yaml exercise_html_purifier: html_profiles: default: config: HTML.Allowed: < *[id|class|name], a[href|title|rel|target], img[src|alt|height|width], br,div,embed,object,u,em,ul,ol,li,strong,span attributes: img: # attribute name, type (Integer, Color, ...) data-id: ID data-image-size: Text span: data-link: URI
See HTMLPurifier_AttrTypes for more options.
Whitelist Elements
In some case, you might want to set some rules for a specific tag. This is what the following config is about:
# config/packages/exercise_html_purifier.yaml exercise_html_purifier: html_profiles: default: # ... elements: video: - Block - 'Optional: (source, Flow) | (Flow, source) | Flow' - Common # allows a set of common attributes # The 4th and 5th arguments are optional - src: URI # list of type rules by attributes type: Text width: Length height: Length poster: URI preload: 'Enum#auto,metadata,none' controls: Bool source: - Block - Flow - Common - { src: URI, type: Text } - [style] # list of forbidden attributes
Would be equivalent to:
$def = $config->getHTMLDefintion(true); $def->addElement('video', 'Block', 'Optional: (source, Flow) | (Flow, source) | Flow', 'Common', [ 'src' => 'URI', 'type' => 'Text', 'width' => 'Length', 'height' => 'Length', 'poster' => 'URI', 'preload' => 'Enum#auto,metadata,none', 'controls' => 'Bool', ]); $source = $def->addElement('source', 'Block', 'Flow', 'Common', [ 'src' => 'URI', 'type' => 'Text', ]); $source->excludes = ['style' => true];
See HTMLPurifier documentation for more details.
Blank Elements
It might happen that you need a tag clean from any attributes. Then just add it to the list:
# config/packages/exercise_html_purifier.yaml exercise_html_purifier: html_profiles: default: # ... blank_elements: [legend, figcaption]
How to Reuse Profiles
What can really convenient is to reuse some profile definition to build other custom definitions.
# config/packages/exercise_html_purifier.yaml exercise_html_purifier: html_profiles: base: # ... video: # ... all: parents: [base, video]
In this example the profile named "all" will inherit the "default" profile, then the two custom ones. The order is important as each profile overrides the previous, and "all" could define its own rules too.
Contributing
PRs are welcomed :). Please target the 4.x branch for bug fixes and master
for new features.
exercise/htmlpurifier-bundle 适用场景与选型建议
exercise/htmlpurifier-bundle 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 11.97M 次下载、GitHub Stars 达 276, 最近一次更新时间为 2012 年 05 月 03 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「symfony」 「html」 「htmlpurifier」 「Purifier」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 exercise/htmlpurifier-bundle 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 exercise/htmlpurifier-bundle 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 exercise/htmlpurifier-bundle 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Texy converts plain text in easy to read Texy syntax into structurally valid (X)HTML. It supports adding of images, links, nested lists, tables and has full support for CSS. Texy supports hyphenation of long words (which reflects language rules), clickable emails and URL (emails are obfuscated again
The bundle for easy using json-rpc api on your project
Laravel 5/6/7/8/9/10 HtmlPurifier Package
HTML and form generation
Bundle Symfony DaplosBundle
Laravel HtmlPurifier Package
统计信息
- 总下载量: 11.97M
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 280
- 点击次数: 17
- 依赖项目数: 16
- 推荐数: 1
其他信息
- 授权协议: MIT
- 更新时间: 2012-05-03