mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
Merge branch '4' into 5.1
This commit is contained in:
commit
9a497f54d7
@ -145,7 +145,8 @@ class HTMLEditorField extends TextareaField
|
||||
// Sanitise if requested
|
||||
$htmlValue = HTMLValue::create($this->Value());
|
||||
if (HTMLEditorField::config()->sanitise_server_side) {
|
||||
$santiser = HTMLEditorSanitiser::create(HTMLEditorConfig::get_active());
|
||||
$config = $this->getEditorConfig();
|
||||
$santiser = HTMLEditorSanitiser::create($config);
|
||||
$santiser->sanitise($htmlValue);
|
||||
}
|
||||
|
||||
|
@ -11,6 +11,7 @@ use SilverStripe\Assets\Image;
|
||||
use SilverStripe\Core\Config\Config;
|
||||
use SilverStripe\Dev\CSSContentParser;
|
||||
use SilverStripe\Dev\FunctionalTest;
|
||||
use SilverStripe\Forms\HTMLEditor\HTMLEditorConfig;
|
||||
use SilverStripe\Forms\HTMLEditor\HTMLEditorField;
|
||||
use SilverStripe\Forms\HTMLEditor\TinyMCEConfig;
|
||||
use SilverStripe\Forms\HTMLReadonlyField;
|
||||
@ -229,4 +230,41 @@ EOS
|
||||
$field->obj('ValueEntities')->forTemplate()
|
||||
);
|
||||
}
|
||||
|
||||
public function testFieldConfigSanitization()
|
||||
{
|
||||
$obj = TestObject::create();
|
||||
$editor = HTMLEditorField::create('Content');
|
||||
$defaultValidElements = [
|
||||
'@[id|class|style|title|data*]',
|
||||
'a[id|rel|dir|tabindex|accesskey|type|name|href|target|title|class]',
|
||||
'-strong/-b[class]',
|
||||
'-em/-i[class]',
|
||||
'-ol[class]',
|
||||
'#p[id|dir|class|align|style]',
|
||||
'-li[class]',
|
||||
'br',
|
||||
'-span[class|align|style]',
|
||||
'-ul[class]',
|
||||
'-h3[id|dir|class|align|style]',
|
||||
'-h2[id|dir|class|align|style]',
|
||||
'hr[class]',
|
||||
];
|
||||
$restrictedConfig = HTMLEditorConfig::get('restricted');
|
||||
$restrictedConfig->setOption('valid_elements', implode(',', $defaultValidElements));
|
||||
$editor->setEditorConfig($restrictedConfig);
|
||||
|
||||
$expectedHtmlString = '<p>standard text</p>Header';
|
||||
$htmlValue = '<p>standard text</p><table><th><tr><td>Header</td></tr></th><tbody></tbody></table>';
|
||||
$editor->setValue($htmlValue);
|
||||
$editor->saveInto($obj);
|
||||
$this->assertEquals($expectedHtmlString, $obj->Content, 'Table is not removed');
|
||||
|
||||
$defaultConfig = HTMLEditorConfig::get('default');
|
||||
$editor->setEditorConfig($defaultConfig);
|
||||
|
||||
$editor->setValue($htmlValue);
|
||||
$editor->saveInto($obj);
|
||||
$this->assertEquals($htmlValue, $obj->Content, 'Table is removed');
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user