mirror of
https://github.com/silverstripe/silverstripe-iframe
synced 2024-10-22 11:05:51 +02:00
146 lines
4.7 KiB
PHP
146 lines
4.7 KiB
PHP
<?php
|
|
namespace SilverStripe\IFrame;
|
|
|
|
use Page;
|
|
use SilverStripe\Forms\TextField;
|
|
use SilverStripe\Forms\DropdownField;
|
|
use SilverStripe\Forms\CheckboxField;
|
|
use SilverStripe\Forms\NumericField;
|
|
use SilverStripe\Forms\HTMLEditor\HtmlEditorField;
|
|
use SilverStripe\ORM\FieldType\DBField;
|
|
|
|
/**
|
|
* Iframe page type embeds an iframe of URL of choice into the page.
|
|
* CMS editor can choose width, height, or set it to attempt automatic size configuration.
|
|
*/
|
|
|
|
class IFramePage extends Page
|
|
{
|
|
private static $db = array(
|
|
'IFrameURL' => 'Text',
|
|
'AutoHeight' => 'Boolean(1)',
|
|
'AutoWidth' => 'Boolean(1)',
|
|
'FixedHeight' => 'Int(500)',
|
|
'FixedWidth' => 'Int(0)',
|
|
'AlternateContent' => 'HTMLText',
|
|
'BottomContent' => 'HTMLText',
|
|
'ForceProtocol' => 'Varchar',
|
|
);
|
|
|
|
private static $defaults = array(
|
|
'AutoHeight' => '1',
|
|
'AutoWidth' => '1',
|
|
'FixedHeight' => '500',
|
|
'FixedWidth' => '0'
|
|
);
|
|
|
|
private static $table_name = 'IFramePage';
|
|
|
|
private static $description = 'Embeds an iframe into the body of the page.';
|
|
|
|
private static $singular_name = 'IFrame Page';
|
|
|
|
public function getCMSFields()
|
|
{
|
|
$fields = parent::getCMSFields();
|
|
|
|
$fields->removeFieldFromTab('Root.Main', 'Content');
|
|
$fields->addFieldToTab('Root.Main', $url = new TextField('IFrameURL', 'Iframe URL'));
|
|
$url->setRightTitle(
|
|
DBField::create_field(
|
|
'HTMLText',
|
|
'Can be absolute (<em>http://silverstripe.com</em>) or relative to this site (<em>about-us</em>).'
|
|
)
|
|
);
|
|
$fields->addFieldToTab(
|
|
'Root.Main',
|
|
DropdownField::create('ForceProtocol', 'Force protocol?')
|
|
->setSource(array('http://' => 'http://', 'https://' => 'https://'))
|
|
->setEmptyString('')
|
|
->setDescription(
|
|
'Avoids mixed content warnings when iframe content is just available under a specific protocol'
|
|
),
|
|
'Metadata'
|
|
);
|
|
$fields->addFieldsToTab('Root.Main', [
|
|
CheckboxField::create('AutoHeight', 'Auto height (only works with same domain URLs)'),
|
|
CheckboxField::create('AutoWidth', 'Auto width (100% of the available space)'),
|
|
NumericField::create('FixedHeight', 'Fixed height (in pixels)'),
|
|
NumericField::create('FixedWidth', 'Fixed width (in pixels)'),
|
|
HtmlEditorField::create('Content', 'Content (appears above iframe)'),
|
|
HtmlEditorField::create('BottomContent', 'Content (appears below iframe)'),
|
|
HtmlEditorField::create('AlternateContent', 'Alternate Content (appears when user has iframes disabled)')
|
|
]);
|
|
|
|
// Move the Metadata field to last position, but make a check for it's
|
|
// existence first.
|
|
//
|
|
// See https://github.com/silverstripe-labs/silverstripe-iframe/issues/18
|
|
$mainTab = $fields->findOrMakeTab('Root.Main');
|
|
$mainTabFields = $mainTab->FieldList();
|
|
$metaDataField = $mainTabFields->fieldByName('Metadata');
|
|
if ($metaDataField) {
|
|
$mainTabFields->removeByName('Metadata');
|
|
$mainTabFields->push($metaDataField);
|
|
}
|
|
return $fields;
|
|
}
|
|
|
|
/**
|
|
* Compute class from the size parameters.
|
|
*/
|
|
public function getClass()
|
|
{
|
|
$class = '';
|
|
if ($this->AutoHeight) {
|
|
$class .= 'iframepage-height-auto';
|
|
}
|
|
|
|
return $class;
|
|
}
|
|
|
|
/**
|
|
* Compute style from the size parameters.
|
|
*/
|
|
public function getStyle()
|
|
{
|
|
$style = '';
|
|
|
|
// Always add fixed height as a fallback if autosetting or JS fails.
|
|
$height = $this->FixedHeight;
|
|
if (!$height) {
|
|
$height = 800;
|
|
}
|
|
$style .= "height: {$height}px; ";
|
|
|
|
if ($this->AutoWidth) {
|
|
$style .= "width: 100%; ";
|
|
} elseif ($this->FixedWidth) {
|
|
$style .= "width: {$this->FixedWidth}px; ";
|
|
}
|
|
|
|
return $style;
|
|
}
|
|
|
|
/**
|
|
* Ensure that the IFrameURL is a valid url and prevents XSS
|
|
*
|
|
* @throws ValidationException
|
|
* @return ValidationResult
|
|
*/
|
|
public function validate()
|
|
{
|
|
$result = parent::validate();
|
|
|
|
//whitelist allowed URL schemes
|
|
$allowed_schemes = array('http', 'https');
|
|
if ($matches = parse_url($this->IFrameURL)) {
|
|
if (isset($matches['scheme']) && !in_array($matches['scheme'], $allowed_schemes)) {
|
|
$result->addError(_t(__CLASS__ . '.VALIDATION_BANNEDURLSCHEME', "This URL scheme is not allowed."));
|
|
}
|
|
}
|
|
|
|
return $result;
|
|
}
|
|
}
|