1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63: 64: 65: 66: 67: 68: 69: 70: 71: 72: 73: 74: 75: 76: 77: 78: 79: 80: 81: 82: 83: 84: 85: 86: 87: 88: 89: 90: 91: 92: 93: 94: 95: 96: 97: 98: 99: 100: 101: 102: 103: 104: 105: 106: 107: 108: 109: 110: 111: 112: 113: 114: 115: 116: 117: 118: 119: 120: 121: 122: 123: 124: 125: 126: 127: 128: 129: 130: 131: 132: 133: 134: 135: 136: 137: 138: 139: 140: 141: 142: 143: 144: 145: 146: 147: 148: 149: 150: 151: 152: 153: 154: 155: 156: 157: 158: 159: 160: 161: 162: 163: 164: 165: 166: 167: 168: 169: 170: 171: 172: 173: 174: 175: 176: 177: 178: 179: 180: 181: 182: 183: 184: 185: 186: 187: 188: 189: 190: 191: 192: 193: 194: 195: 196: 197: 198: 199: 200: 201: 202: 203: 204: 205: 206: 207: 208: 209: 210: 211: 212: 213: 214: 215: 216: 217: 218: 219: 220: 221: 222: 223: 224: 225: 226: 227: 228: 229: 230: 231: 232: 233: 234: 235: 236: 237: 238: 239: 240: 241: 242: 243: 244: 245: 246: 247: 248: 249: 250: 251: 252: 253: 254: 255: 256: 257: 258: 259: 260: 261: 262: 263: 264: 265: 266: 267: 268: 269: 270: 271: 272: 273: 274: 275: 276: 277: 278: 279: 280: 281: 282: 283: 284: 285: 286: 287: 288: 289: 290: 291: 292:
<?php
namespace Nethgui\Controller;
abstract class AbstractController extends \Nethgui\Module\AbstractModule implements \Nethgui\Controller\RequestHandlerInterface
{
protected $parameters;
private $validators = array();
private $invalidParameters = array();
private $request;
public function __construct($identifier = NULL)
{
parent::__construct($identifier);
$this->parameters = new \Nethgui\Adapter\ParameterSet();
$this->request = NullRequest::getInstance();
}
protected function declareParameter($parameterName, $validator = FALSE, $valueProvider = NULL)
{
if (is_string($validator) && $validator[0] == '/') {
$validator = $this->createValidator()->regexp($validator);
} elseif ($validator === FALSE) {
$validator = $this->createValidator()->forceResult(FALSE);
} elseif (is_integer($validator)) {
$validator = $this->createValidator($validator);
}
if ( ! $validator instanceof \Nethgui\System\ValidatorInterface) {
throw new \InvalidArgumentException(sprintf('%s: Invalid validator instance for parameter `%s`', get_class($this), $parameterName), 1322149486);
}
$this->validators[$parameterName] = $validator;
if (is_callable($valueProvider)) {
$this->parameters->addAdapter($this->getPlatform()->getMapAdapter($valueProvider, NULL, array()), $parameterName);
} elseif ($valueProvider instanceof \Nethgui\Adapter\AdapterInterface) {
$this->parameters->addAdapter($valueProvider, $parameterName);
} elseif (is_array($valueProvider)) {
$this->parameters[$parameterName] = $this->getAdapterForParameter($parameterName, $valueProvider);
} elseif (is_null($valueProvider)) {
$this->parameters[$parameterName] = NULL;
} else {
throw new \InvalidArgumentException(sprintf('%s: Invalid `valueProvider` argument', get_class($this)), 1322149487);
}
return $this;
}
protected function getValidator($parameterName)
{
if ( ! $this->validators[$parameterName] instanceof \Nethgui\System\ValidatorInterface) {
throw new \LogicException(sprintf('%s: you must declare a parameter to obtain its validator object', __CLASS__), 1337002629);
}
return $this->validators[$parameterName];
}
protected function createValidator($ruleCode = NULL)
{
if ( ! $this->getPlatform() instanceof \Nethgui\System\PlatformInterface) {
throw new \UnexpectedValueException(sprintf('%s: the platform instance has not been set!', get_class($this)), 1322822430);
}
return $this->getPlatform()->createValidator($ruleCode);
}
private function getAdapterForParameter($parameterName, $args)
{
$readerCallback = 'read' . ucfirst($parameterName);
$writerCallback = 'write' . ucfirst($parameterName);
if (is_callable(array($this, $readerCallback))) {
if (empty($args)) {
$args = array();
}
if (is_array($args) && isset($args[0]) && (is_string($args[0]) || $args[0] instanceof \ArrayAccess)) {
$args = array($args);
}
$adapterObject = $this->getPlatform()->getMapAdapter(
array($this, $readerCallback), array($this, $writerCallback), $args
);
} elseif (isset($args[0], $args[1])) {
$database = $args[0];
$key = (string) $args[1];
$prop = isset($args[2]) ? (string) $args[2] : NULL;
$separator = isset($args[3]) ? (string) $args[3] : NULL;
$adapterObject = $this->getPlatform()->getIdentityAdapter($database, $key, $prop, $separator);
}
if ( ! $adapterObject instanceof \Nethgui\Adapter\AdapterInterface) {
throw new \InvalidArgumentException(sprintf('%s: Cannot create an adapter for parameter `%s`', get_class($this), $parameterName), 1322149696);
}
return $adapterObject;
}
public function bind(\Nethgui\Controller\RequestInterface $request)
{
$this->request = $request;
foreach ($this->parameters->getKeys() as $parameterName) {
if ($request->hasParameter($parameterName)) {
$this->parameters[$parameterName] = $request->getParameter($parameterName);
}
}
}
public function validate(\Nethgui\Controller\ValidationReportInterface $report)
{
foreach ($this->parameters->getKeys() as $parameterName) {
if ( ! $this->getRequest()->hasParameter($parameterName)) {
continue;
}
if ( ! isset($this->validators[$parameterName])) {
throw new \Nethgui\Exception\HttpException(sprintf('%s: Do not know how to validate `%s`', get_class($this), $parameterName), 400, 1322148402);
}
$validator = $this->validators[$parameterName];
$isValid = $validator->evaluate($this->parameters[$parameterName]);
if ($isValid !== TRUE) {
$report->addValidationError($this, $parameterName, $validator);
$this->invalidParameters[] = $parameterName;
}
}
}
public function process()
{
if ($this->getRequest()->isMutation()) {
$changes = $this->parameters->getModifiedKeys();
if ($this->saveParameters()) {
$this->onParametersSaved($changes);
}
}
}
protected function saveParameters()
{
return $this->parameters->save();
}
protected function onParametersSaved($changedParameters)
{
}
public function nextPath()
{
return FALSE;
}
public function prepareView(\Nethgui\View\ViewInterface $view)
{
parent::prepareView($view);
$view->copyFrom($this->parameters);
$mandatoryFields = array();
foreach ($this->parameters->getKeys() as $parameter) {
$v = $this->getValidator($parameter);
if ($v instanceof \Nethgui\System\MandatoryValidatorInterface) {
$mandatoryFields[$view->getUniqueId($parameter)] = $v->isMandatory();
}
}
if ($view->getTargetFormat() === $view::TARGET_XHTML) {
$view['__invalidParameters'] = $this->invalidParameters;
if ( ! empty($mandatoryFields)) {
$view['__mandatoryFields'] = $mandatoryFields;
}
} else {
if ( ! empty($mandatoryFields)) {
$view->getCommandList()->setMandatoryFields($mandatoryFields);
}
}
}
protected function getRequest()
{
return $this->request;
}
}