2011-11-14 12:29:58 +01:00
|
|
|
<?php
|
|
|
|
|
2016-07-22 01:32:32 +02:00
|
|
|
namespace SilverStripe\CMS\Forms;
|
|
|
|
|
2016-08-10 06:08:39 +02:00
|
|
|
use SilverStripe\CMS\Model\SiteTree;
|
2016-08-23 04:36:06 +02:00
|
|
|
use SilverStripe\Control\Controller;
|
2016-09-09 01:26:24 +02:00
|
|
|
use SilverStripe\Control\HTTPRequest;
|
2016-08-23 04:36:06 +02:00
|
|
|
use SilverStripe\Core\Convert;
|
|
|
|
use SilverStripe\Forms\TextField;
|
|
|
|
use SilverStripe\View\Requirements;
|
2016-06-16 06:57:19 +02:00
|
|
|
|
2011-11-14 12:29:58 +01:00
|
|
|
/**
|
|
|
|
* Used to edit the SiteTree->URLSegment property, and suggest input based on the serverside rules
|
|
|
|
* defined through {@link SiteTree->generateURLSegment()} and {@link URLSegmentFilter}.
|
2016-01-06 00:42:07 +01:00
|
|
|
*
|
2011-11-14 12:29:58 +01:00
|
|
|
* Note: The actual conversion for saving the value takes place in the model layer.
|
|
|
|
*/
|
2017-01-25 21:59:25 +01:00
|
|
|
class SiteTreeURLSegmentField extends TextField
|
|
|
|
{
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected $helpText;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected $urlPrefix;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected $urlSuffix;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected $defaultUrl;
|
|
|
|
|
|
|
|
private static $allowed_actions = array(
|
|
|
|
'suggest'
|
|
|
|
);
|
|
|
|
|
|
|
|
public function Value()
|
|
|
|
{
|
|
|
|
return rawurldecode($this->value);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getAttributes()
|
|
|
|
{
|
|
|
|
return array_merge(
|
|
|
|
parent::getAttributes(),
|
|
|
|
array(
|
|
|
|
'data-prefix' => $this->getURLPrefix(),
|
|
|
|
'data-suffix' => '?stage=Stage',
|
|
|
|
'data-default-url' => $this->getDefaultURL()
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function Field($properties = array())
|
|
|
|
{
|
|
|
|
return parent::Field($properties);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param HTTPRequest $request
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function suggest($request)
|
|
|
|
{
|
|
|
|
if (!$request->getVar('value')) {
|
|
|
|
return $this->httpError(
|
|
|
|
405,
|
|
|
|
_t('SiteTreeURLSegmentField.EMPTY', 'Please enter a URL Segment or click cancel')
|
|
|
|
);
|
|
|
|
}
|
|
|
|
$page = $this->getPage();
|
|
|
|
|
|
|
|
// Same logic as SiteTree->onBeforeWrite
|
|
|
|
$page->URLSegment = $page->generateURLSegment($request->getVar('value'));
|
|
|
|
$count = 2;
|
|
|
|
while (!$page->validURLSegment()) {
|
|
|
|
$page->URLSegment = preg_replace('/-[0-9]+$/', null, $page->URLSegment) . '-' . $count;
|
|
|
|
$count++;
|
|
|
|
}
|
|
|
|
|
|
|
|
Controller::curr()->getResponse()->addHeader('Content-Type', 'application/json');
|
|
|
|
return Convert::raw2json(array('value' => $page->URLSegment));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return SiteTree
|
|
|
|
*/
|
|
|
|
public function getPage()
|
|
|
|
{
|
|
|
|
$idField = $this->getForm()->Fields()->dataFieldByName('ID');
|
|
|
|
return ($idField && $idField->Value())
|
|
|
|
? SiteTree::get()->byID($idField->Value())
|
|
|
|
: SiteTree::singleton();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $string The secondary text to show
|
|
|
|
* @return $this
|
|
|
|
*/
|
|
|
|
public function setHelpText($string)
|
|
|
|
{
|
|
|
|
$this->helpText = $string;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return string the secondary text to show in the template
|
|
|
|
*/
|
|
|
|
public function getHelpText()
|
|
|
|
{
|
|
|
|
return $this->helpText;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $url the url that prefixes the page url segment field
|
|
|
|
* @return $this
|
|
|
|
*/
|
|
|
|
public function setURLPrefix($url)
|
|
|
|
{
|
|
|
|
$this->urlPrefix = $url;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return string the url prefixes the page url segment field to show in template
|
|
|
|
*/
|
|
|
|
public function getURLPrefix()
|
|
|
|
{
|
|
|
|
return $this->urlPrefix;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getURLSuffix()
|
|
|
|
{
|
|
|
|
return $this->urlSuffix;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return string Indicator for UI to respond to changes accurately,
|
|
|
|
* and auto-update the field value if changes to the default occur.
|
|
|
|
* Does not set the field default value.
|
|
|
|
*/
|
|
|
|
public function getDefaultURL()
|
|
|
|
{
|
|
|
|
return $this->defaultUrl;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setDefaultURL($url)
|
|
|
|
{
|
|
|
|
$this->defaultUrl = $url;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function setURLSuffix($suffix)
|
|
|
|
{
|
|
|
|
$this->urlSuffix = $suffix;
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function Type()
|
|
|
|
{
|
|
|
|
return 'text urlsegment';
|
|
|
|
}
|
|
|
|
|
|
|
|
public function getURL()
|
|
|
|
{
|
|
|
|
return Controller::join_links($this->getURLPrefix(), $this->Value(), $this->getURLSuffix());
|
|
|
|
}
|
|
|
|
|
|
|
|
public function performReadonlyTransformation()
|
|
|
|
{
|
|
|
|
$newInst = parent::performReadonlyTransformation();
|
|
|
|
$newInst->helpText = $this->helpText;
|
|
|
|
$newInst->urlPrefix = $this->urlPrefix;
|
|
|
|
$newInst->urlSuffix = $this->urlSuffix;
|
|
|
|
$newInst->defaultUrl = $this->defaultUrl;
|
|
|
|
return $newInst;
|
|
|
|
}
|
2016-03-15 00:48:46 +01:00
|
|
|
}
|