2008-08-09 05:19:54 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
API CHANGE: Renamed conflicting classes to have an "SS_" namespace, and renamed existing "SS" namespace to "SS_". The affected classes are: HTTPRequest, HTTPResponse, Query, Database, SSBacktrace, SSCli, SSDatetime, SSDatetimeTest, SSLog, SSLogTest, SSLogEmailWriter, SSLogErrorEmailFormatter, SSLogErrorFileFormatter, SSLogFileWriter and SSZendLog.
MINOR: Replaced usage of renamed classes with the new namespaced name.
From: Andrew Short <andrewjshort@gmail.com>
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@90075 467b73ca-7a2a-4603-9d3b-597d59a354a9
2009-10-26 04:06:31 +01:00
|
|
|
* Tests for RequestHandler and SS_HTTPRequest.
|
2008-08-09 05:19:54 +02:00
|
|
|
* We've set up a simple URL handling model based on
|
|
|
|
*/
|
2010-12-20 01:00:38 +01:00
|
|
|
class RequestHandlingTest extends FunctionalTest {
|
2008-08-09 05:19:54 +02:00
|
|
|
static $fixture_file = null;
|
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
// public function testRequestHandlerChainingLatestParams() {
|
2010-10-15 04:53:11 +02:00
|
|
|
// $c = new RequestHandlingTest_Controller();
|
|
|
|
// $c->init();
|
|
|
|
// $response = $c->handleRequest(new SS_HTTPRequest('GET', 'testGoodBase1/TestForm/fields/MyField'));
|
|
|
|
// $this->assertEquals(
|
|
|
|
// $c->getRequest()->latestParams(),
|
|
|
|
// array(
|
|
|
|
// 'Action' => 'fields',
|
|
|
|
// 'ID' => 'MyField'
|
|
|
|
// )
|
|
|
|
// );
|
|
|
|
// }
|
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function testConstructedWithNullRequest() {
|
2010-12-16 05:06:13 +01:00
|
|
|
$r = new RequestHandler();
|
2012-05-09 12:43:22 +02:00
|
|
|
$this->assertInstanceOf('NullHTTPRequest', $r->getRequest());
|
2010-12-16 05:06:13 +01:00
|
|
|
}
|
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function testRequestHandlerChainingAllParams() {
|
2012-11-23 14:55:19 +01:00
|
|
|
$this->markTestIncomplete();
|
2010-10-15 04:53:11 +02:00
|
|
|
}
|
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function testMethodCallingOnController() {
|
2008-08-09 05:19:54 +02:00
|
|
|
/* Calling a controller works just like it always has */
|
|
|
|
$response = Director::test("testGoodBase1");
|
|
|
|
$this->assertEquals("This is the controller", $response->getBody());
|
|
|
|
|
|
|
|
/* ID and OtherID are extracted from the URL and passed in $request->params. */
|
|
|
|
$response = Director::test("testGoodBase1/method/1/2");
|
|
|
|
$this->assertEquals("This is a method on the controller: 1, 2", $response->getBody());
|
|
|
|
|
2012-09-26 23:34:00 +02:00
|
|
|
/* In addition, these values are availalbe in $controller->urlParams. This is mainly for backward
|
|
|
|
* compatability. */
|
2008-08-09 05:19:54 +02:00
|
|
|
$response = Director::test("testGoodBase1/legacymethod/3/4");
|
|
|
|
$this->assertEquals("\$this->urlParams can be used, for backward compatibility: 3, 4", $response->getBody());
|
|
|
|
}
|
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function testPostRequests() {
|
2008-08-09 05:19:54 +02:00
|
|
|
/* The HTTP Request handler can trigger special behaviour for GET and POST. */
|
|
|
|
$response = Director::test("testGoodBase1/TestForm", array("MyField" => 3), null, "POST");
|
|
|
|
$this->assertEquals("Form posted", $response->getBody());
|
|
|
|
|
|
|
|
$response = Director::test("testGoodBase1/TestForm");
|
|
|
|
$this->assertEquals("Get request on form", $response->getBody());
|
|
|
|
}
|
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function testRequestHandlerChaining() {
|
2008-08-09 05:19:54 +02:00
|
|
|
/* Request handlers can be chained, from Director to Controller to Form to FormField. Here, we can make a get
|
|
|
|
request on a FormField. */
|
|
|
|
$response = Director::test("testGoodBase1/TestForm/fields/MyField");
|
|
|
|
$this->assertEquals("MyField requested", $response->getBody());
|
|
|
|
|
|
|
|
/* We can also make a POST request on a form field, which could be used for in-place editing, for example. */
|
|
|
|
$response = Director::test("testGoodBase1/TestForm/fields/MyField" ,array("MyField" => 5));
|
|
|
|
$this->assertEquals("MyField posted, update to 5", $response->getBody());
|
|
|
|
}
|
2010-10-15 04:53:11 +02:00
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function testBadBase() {
|
2012-09-26 23:34:00 +02:00
|
|
|
/* Without a double-slash indicator in the URL, the entire URL is popped off the stack. The controller's
|
|
|
|
* default action handlers have been designed for this to an extend: simple actions can still be called.
|
|
|
|
* This is the set-up of URL rules written before this new request handler. */
|
2008-08-09 05:19:54 +02:00
|
|
|
$response = Director::test("testBadBase/method/1/2");
|
|
|
|
$this->assertEquals("This is a method on the controller: 1, 2", $response->getBody());
|
|
|
|
|
|
|
|
$response = Director::test("testBadBase/TestForm", array("MyField" => 3), null, "POST");
|
|
|
|
$this->assertEquals("Form posted", $response->getBody());
|
|
|
|
|
|
|
|
/* It won't, however, let you chain requests to access methods on forms, or form fields. In order to do that,
|
2012-09-26 23:34:00 +02:00
|
|
|
* you need to have a // marker in your URL parsing rule */
|
2008-08-09 05:19:54 +02:00
|
|
|
$response = Director::test("testBadBase/TestForm/fields/MyField");
|
|
|
|
$this->assertNotEquals("MyField requested", $response->getBody());
|
|
|
|
}
|
2008-09-16 22:37:46 +02:00
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function testBaseWithExtension() {
|
2008-09-16 22:37:46 +02:00
|
|
|
/* Rules with an extension always default to the index() action */
|
|
|
|
$response = Director::test("testBaseWithExtension/virtualfile.xml");
|
|
|
|
$this->assertEquals("This is the controller", $response->getBody());
|
|
|
|
|
|
|
|
/* Without the extension, the methodname should be matched */
|
|
|
|
$response = Director::test("testBaseWithExtension/virtualfile");
|
|
|
|
$this->assertEquals("This is the virtualfile method", $response->getBody());
|
|
|
|
}
|
2008-10-05 21:21:35 +02:00
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function testNestedBase() {
|
2008-10-05 21:21:35 +02:00
|
|
|
/* Nested base should leave out the two parts and correctly map arguments */
|
|
|
|
$response = Director::test("testParentBase/testChildBase/method/1/2");
|
|
|
|
$this->assertEquals("This is a method on the controller: 1, 2", $response->getBody());
|
|
|
|
}
|
2008-10-30 23:28:01 +01:00
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function testInheritedUrlHandlers() {
|
2008-10-30 23:28:01 +01:00
|
|
|
/* $url_handlers can be defined on any class, and */
|
|
|
|
$response = Director::test("testGoodBase1/TestForm/fields/SubclassedField/something");
|
|
|
|
$this->assertEquals("customSomething", $response->getBody());
|
|
|
|
|
|
|
|
/* However, if the subclass' url_handlers don't match, then the parent class' url_handlers will be used */
|
|
|
|
$response = Director::test("testGoodBase1/TestForm/fields/SubclassedField");
|
|
|
|
$this->assertEquals("SubclassedField requested", $response->getBody());
|
|
|
|
}
|
2008-10-31 03:16:51 +01:00
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function testDisallowedExtendedActions() {
|
2008-10-31 03:16:51 +01:00
|
|
|
/* Actions on magic methods are only accessible if explicitly allowed on the controller. */
|
|
|
|
$response = Director::test("testGoodBase1/extendedMethod");
|
2009-10-11 02:07:24 +02:00
|
|
|
$this->assertEquals(404, $response->getStatusCode());
|
2008-10-31 03:16:51 +01:00
|
|
|
|
|
|
|
/* Actions on an extension are allowed because they specifically provided appropriate allowed_actions items */
|
|
|
|
$response = Director::test("testGoodBase1/otherExtendedMethod");
|
|
|
|
$this->assertEquals("otherExtendedMethod", $response->getBody());
|
|
|
|
|
|
|
|
/* The failoverMethod action wasn't explicitly listed and so isnt' allowed */
|
|
|
|
$response = Director::test("testGoodBase1/failoverMethod");
|
2009-10-11 02:07:24 +02:00
|
|
|
$this->assertEquals(404, $response->getStatusCode());
|
2008-10-31 03:16:51 +01:00
|
|
|
|
|
|
|
/* However, on RequestHandlingTest_AllowedController it has been explicitly allowed */
|
|
|
|
$response = Director::test("RequestHandlingTest_AllowedController/failoverMethod");
|
|
|
|
$this->assertEquals("failoverMethod", $response->getBody());
|
|
|
|
|
|
|
|
/* The action on the extension has also been explicitly allowed even though it wasn't on the extension */
|
|
|
|
$response = Director::test("RequestHandlingTest_AllowedController/extendedMethod");
|
|
|
|
$this->assertEquals("extendedMethod", $response->getBody());
|
|
|
|
|
|
|
|
}
|
2009-06-27 10:48:44 +02:00
|
|
|
|
|
|
|
public function testHTTPException() {
|
|
|
|
$exception = Director::test('RequestHandlingTest_Controller/throwexception');
|
|
|
|
$this->assertEquals(400, $exception->getStatusCode());
|
|
|
|
$this->assertEquals('This request was invalid.', $exception->getBody());
|
|
|
|
|
|
|
|
$responseException = (Director::test('RequestHandlingTest_Controller/throwresponseexception'));
|
|
|
|
$this->assertEquals(500, $responseException->getStatusCode());
|
|
|
|
$this->assertEquals('There was an internal server error.', $responseException->getBody());
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testHTTPError() {
|
|
|
|
$response = Director::test('RequestHandlingTest_Controller/throwhttperror');
|
|
|
|
$this->assertEquals(404, $response->getStatusCode());
|
|
|
|
$this->assertEquals('This page does not exist.', $response->getBody());
|
|
|
|
}
|
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function testMethodsOnParentClassesOfRequestHandlerDeclined() {
|
2012-02-11 03:08:39 +01:00
|
|
|
$response = Director::test('testGoodBase1/getIterator');
|
2013-01-15 00:34:05 +01:00
|
|
|
$this->assertEquals(404, $response->getStatusCode());
|
2010-10-13 03:24:15 +02:00
|
|
|
}
|
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function testFormActionsCanBypassAllowedActions() {
|
2010-12-20 01:00:38 +01:00
|
|
|
SecurityToken::enable();
|
|
|
|
|
|
|
|
$response = $this->get('RequestHandlingTest_FormActionController');
|
|
|
|
$this->assertEquals(200, $response->getStatusCode());
|
|
|
|
$tokenEls = $this->cssParser()->getBySelector('#Form_Form_SecurityID');
|
|
|
|
$securityId = (string)$tokenEls[0]['value'];
|
|
|
|
|
|
|
|
$data = array('action_formaction' => 1);
|
|
|
|
$response = $this->post('RequestHandlingTest_FormActionController/Form', $data);
|
|
|
|
$this->assertEquals(400, $response->getStatusCode(),
|
|
|
|
'Should fail: Invocation through POST form handler, not contained in $allowed_actions, without CSRF token'
|
|
|
|
);
|
|
|
|
|
|
|
|
$data = array('action_disallowedcontrollermethod' => 1, 'SecurityID' => $securityId);
|
|
|
|
$response = $this->post('RequestHandlingTest_FormActionController/Form', $data);
|
|
|
|
$this->assertEquals(403, $response->getStatusCode(),
|
2012-09-26 23:34:00 +02:00
|
|
|
'Should fail: Invocation through POST form handler, controller action instead of form action,'
|
|
|
|
.' not contained in $allowed_actions, with CSRF token'
|
2010-12-20 01:00:38 +01:00
|
|
|
);
|
|
|
|
|
|
|
|
$data = array('action_formaction' => 1, 'SecurityID' => $securityId);
|
|
|
|
$response = $this->post('RequestHandlingTest_FormActionController/Form', $data);
|
|
|
|
$this->assertEquals(200, $response->getStatusCode());
|
|
|
|
$this->assertEquals('formaction', $response->getBody(),
|
|
|
|
'Should pass: Invocation through POST form handler, not contained in $allowed_actions, with CSRF token'
|
|
|
|
);
|
|
|
|
|
|
|
|
$data = array('action_controlleraction' => 1, 'SecurityID' => $securityId);
|
|
|
|
$response = $this->post('RequestHandlingTest_FormActionController/Form', $data);
|
|
|
|
$this->assertEquals(200, $response->getStatusCode(),
|
2012-09-26 23:34:00 +02:00
|
|
|
'Should pass: Invocation through POST form handler, controller action instead of form action, contained in'
|
|
|
|
. ' $allowed_actions, with CSRF token'
|
2010-12-20 01:00:38 +01:00
|
|
|
);
|
|
|
|
|
|
|
|
$data = array('action_formactionInAllowedActions' => 1);
|
|
|
|
$response = $this->post('RequestHandlingTest_FormActionController/Form', $data);
|
|
|
|
$this->assertEquals(400, $response->getStatusCode(),
|
|
|
|
'Should fail: Invocation through POST form handler, contained in $allowed_actions, without CSRF token'
|
|
|
|
);
|
|
|
|
|
|
|
|
$data = array('action_formactionInAllowedActions' => 1, 'SecurityID' => $securityId);
|
|
|
|
$response = $this->post('RequestHandlingTest_FormActionController/Form', $data);
|
|
|
|
$this->assertEquals(200, $response->getStatusCode(),
|
|
|
|
'Should pass: Invocation through POST form handler, contained in $allowed_actions, with CSRF token'
|
|
|
|
);
|
|
|
|
|
|
|
|
$data = array();
|
|
|
|
$response = $this->post('RequestHandlingTest_FormActionController/formaction', $data);
|
|
|
|
$this->assertEquals(404, $response->getStatusCode(),
|
|
|
|
'Should fail: Invocation through POST URL, not contained in $allowed_actions, without CSRF token'
|
|
|
|
);
|
|
|
|
|
|
|
|
$data = array();
|
|
|
|
$response = $this->post('RequestHandlingTest_FormActionController/formactionInAllowedActions', $data);
|
|
|
|
$this->assertEquals(200, $response->getStatusCode(),
|
|
|
|
'Should pass: Invocation of form action through POST URL, contained in $allowed_actions, without CSRF token'
|
|
|
|
);
|
|
|
|
|
|
|
|
$data = array('SecurityID' => $securityId);
|
|
|
|
$response = $this->post('RequestHandlingTest_FormActionController/formactionInAllowedActions', $data);
|
|
|
|
$this->assertEquals(200, $response->getStatusCode(),
|
|
|
|
'Should pass: Invocation of form action through POST URL, contained in $allowed_actions, with CSRF token'
|
|
|
|
);
|
|
|
|
|
|
|
|
$data = array(); // CSRF protection doesnt kick in for direct requests
|
|
|
|
$response = $this->post('RequestHandlingTest_FormActionController/formactionInAllowedActions', $data);
|
|
|
|
$this->assertEquals(200, $response->getStatusCode(),
|
|
|
|
'Should pass: Invocation of form action through POST URL, contained in $allowed_actions, without CSRF token'
|
|
|
|
);
|
|
|
|
|
|
|
|
SecurityToken::disable();
|
|
|
|
}
|
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function testAllowedActionsEnforcedOnForm() {
|
2010-12-20 01:00:38 +01:00
|
|
|
$data = array('action_allowedformaction' => 1);
|
|
|
|
$response = $this->post('RequestHandlingTest_ControllerFormWithAllowedActions/Form', $data);
|
|
|
|
$this->assertEquals(200, $response->getStatusCode());
|
|
|
|
$this->assertEquals('allowedformaction', $response->getBody());
|
|
|
|
|
|
|
|
$data = array('action_disallowedformaction' => 1);
|
|
|
|
$response = $this->post('RequestHandlingTest_ControllerFormWithAllowedActions/Form', $data);
|
|
|
|
$this->assertEquals(403, $response->getStatusCode());
|
|
|
|
// Note: Looks for a specific 403 thrown by Form->httpSubmission(), not RequestHandler->handleRequest()
|
|
|
|
$this->assertContains('not allowed on form', $response->getBody());
|
|
|
|
}
|
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function testActionHandlingOnField() {
|
2011-12-06 01:56:24 +01:00
|
|
|
$data = array('action_actionOnField' => 1);
|
|
|
|
$response = $this->post('RequestHandlingFieldTest_Controller/TestForm', $data);
|
|
|
|
$this->assertEquals(200, $response->getStatusCode());
|
|
|
|
$this->assertEquals('Test method on MyField', $response->getBody());
|
|
|
|
|
|
|
|
$data = array('action_actionNotAllowedOnField' => 1);
|
|
|
|
$response = $this->post('RequestHandlingFieldTest_Controller/TestForm', $data);
|
|
|
|
$this->assertEquals(404, $response->getStatusCode());
|
|
|
|
}
|
|
|
|
|
2008-08-09 05:19:54 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Director rules for the test
|
|
|
|
*/
|
2012-05-22 07:13:05 +02:00
|
|
|
Config::inst()->update('Director', 'rules', array(
|
2008-08-09 05:19:54 +02:00
|
|
|
// If we don't request any variables, then the whole URL will get shifted off. This is fine, but it means that the
|
|
|
|
// controller will have to parse the Action from the URL itself.
|
|
|
|
'testGoodBase1' => "RequestHandlingTest_Controller",
|
|
|
|
|
|
|
|
// The double-slash indicates how much of the URL should be shifted off the stack. This is important for dealing
|
|
|
|
// with nested request handlers appropriately.
|
|
|
|
'testGoodBase2//$Action/$ID/$OtherID' => "RequestHandlingTest_Controller",
|
|
|
|
|
|
|
|
// By default, the entire URL will be shifted off. This creates a bit of backward-incompatability, but makes the
|
|
|
|
// URL rules much more explicit.
|
|
|
|
'testBadBase/$Action/$ID/$OtherID' => "RequestHandlingTest_Controller",
|
2008-09-16 22:37:46 +02:00
|
|
|
|
|
|
|
// Rules with an extension always default to the index() action
|
|
|
|
'testBaseWithExtension/virtualfile.xml' => "RequestHandlingTest_Controller",
|
|
|
|
|
|
|
|
// Without the extension, the methodname should be matched
|
|
|
|
'testBaseWithExtension//$Action/$ID/$OtherID' => "RequestHandlingTest_Controller",
|
2008-10-05 21:21:35 +02:00
|
|
|
|
|
|
|
// Test nested base
|
|
|
|
'testParentBase/testChildBase//$Action/$ID/$OtherID' => "RequestHandlingTest_Controller",
|
2008-08-09 05:19:54 +02:00
|
|
|
));
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Controller for the test
|
|
|
|
*/
|
2011-02-13 23:14:51 +01:00
|
|
|
class RequestHandlingTest_Controller extends Controller implements TestOnly {
|
2013-01-15 00:34:05 +01:00
|
|
|
|
|
|
|
static $allowed_actions = array(
|
|
|
|
'method',
|
|
|
|
'legacymethod',
|
|
|
|
'virtualfile',
|
|
|
|
'TestForm',
|
|
|
|
'throwexception',
|
|
|
|
'throwresponseexception',
|
|
|
|
'throwhttperror',
|
|
|
|
);
|
|
|
|
|
2008-08-09 05:19:54 +02:00
|
|
|
static $url_handlers = array(
|
|
|
|
// The double-slash is need here to ensure that
|
|
|
|
'$Action//$ID/$OtherID' => "handleAction",
|
|
|
|
);
|
2008-10-31 03:16:51 +01:00
|
|
|
|
|
|
|
static $extensions = array(
|
|
|
|
'RequestHandlingTest_ControllerExtension',
|
|
|
|
'RequestHandlingTest_AllowedControllerExtension',
|
|
|
|
);
|
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function __construct() {
|
2008-10-31 03:16:51 +01:00
|
|
|
$this->failover = new RequestHandlingTest_ControllerFailover();
|
|
|
|
parent::__construct();
|
|
|
|
}
|
2008-08-09 05:19:54 +02:00
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function index($request) {
|
2008-08-09 05:19:54 +02:00
|
|
|
return "This is the controller";
|
|
|
|
}
|
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function method($request) {
|
2008-08-09 05:19:54 +02:00
|
|
|
return "This is a method on the controller: " . $request->param('ID') . ', ' . $request->param('OtherID');
|
|
|
|
}
|
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function legacymethod($request) {
|
2012-09-26 23:34:00 +02:00
|
|
|
return "\$this->urlParams can be used, for backward compatibility: " . $this->urlParams['ID'] . ', '
|
|
|
|
. $this->urlParams['OtherID'];
|
2008-08-09 05:19:54 +02:00
|
|
|
}
|
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function virtualfile($request) {
|
2008-09-16 22:37:46 +02:00
|
|
|
return "This is the virtualfile method";
|
|
|
|
}
|
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function TestForm() {
|
2011-05-11 09:51:54 +02:00
|
|
|
return new RequestHandlingTest_Form($this, "TestForm", new FieldList(
|
2008-10-30 23:28:01 +01:00
|
|
|
new RequestHandlingTest_FormField("MyField"),
|
|
|
|
new RequestHandlingTest_SubclassedFormField("SubclassedField")
|
2011-05-11 09:51:54 +02:00
|
|
|
), new FieldList(
|
2008-08-09 05:19:54 +02:00
|
|
|
new FormAction("myAction")
|
|
|
|
));
|
|
|
|
}
|
2009-06-27 10:48:44 +02:00
|
|
|
|
|
|
|
public function throwexception() {
|
API CHANGE: Renamed conflicting classes to have an "SS_" namespace, and renamed existing "SS" namespace to "SS_". The affected classes are: HTTPRequest, HTTPResponse, Query, Database, SSBacktrace, SSCli, SSDatetime, SSDatetimeTest, SSLog, SSLogTest, SSLogEmailWriter, SSLogErrorEmailFormatter, SSLogErrorFileFormatter, SSLogFileWriter and SSZendLog.
MINOR: Replaced usage of renamed classes with the new namespaced name.
From: Andrew Short <andrewjshort@gmail.com>
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@90075 467b73ca-7a2a-4603-9d3b-597d59a354a9
2009-10-26 04:06:31 +01:00
|
|
|
throw new SS_HTTPResponse_Exception('This request was invalid.', 400);
|
2009-06-27 10:48:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public function throwresponseexception() {
|
API CHANGE: Renamed conflicting classes to have an "SS_" namespace, and renamed existing "SS" namespace to "SS_". The affected classes are: HTTPRequest, HTTPResponse, Query, Database, SSBacktrace, SSCli, SSDatetime, SSDatetimeTest, SSLog, SSLogTest, SSLogEmailWriter, SSLogErrorEmailFormatter, SSLogErrorFileFormatter, SSLogFileWriter and SSZendLog.
MINOR: Replaced usage of renamed classes with the new namespaced name.
From: Andrew Short <andrewjshort@gmail.com>
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@90075 467b73ca-7a2a-4603-9d3b-597d59a354a9
2009-10-26 04:06:31 +01:00
|
|
|
throw new SS_HTTPResponse_Exception(new SS_HTTPResponse('There was an internal server error.', 500));
|
2009-06-27 10:48:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public function throwhttperror() {
|
|
|
|
$this->httpError(404, 'This page does not exist.');
|
|
|
|
}
|
2011-03-18 03:01:09 +01:00
|
|
|
|
2012-03-27 06:04:11 +02:00
|
|
|
public function getViewer($action) {
|
2011-03-23 04:32:24 +01:00
|
|
|
return new SSViewer('BlankPage');
|
2011-03-18 03:01:09 +01:00
|
|
|
}
|
2008-08-09 05:19:54 +02:00
|
|
|
}
|
|
|
|
|
2010-12-20 01:00:38 +01:00
|
|
|
class RequestHandlingTest_FormActionController extends Controller {
|
|
|
|
|
|
|
|
protected $template = 'BlankPage';
|
|
|
|
|
|
|
|
static $allowed_actions = array(
|
|
|
|
'controlleraction',
|
|
|
|
'Form',
|
|
|
|
'formactionInAllowedActions'
|
|
|
|
//'formaction', // left out, implicitly allowed through form action
|
|
|
|
);
|
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function Link($action = null) {
|
2010-12-20 01:00:38 +01:00
|
|
|
return Controller::join_links('RequestHandlingTest_FormActionController', $action);
|
|
|
|
}
|
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function controlleraction($request) {
|
2010-12-20 01:00:38 +01:00
|
|
|
return 'controlleraction';
|
|
|
|
}
|
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function disallowedcontrollermethod() {
|
2010-12-20 01:00:38 +01:00
|
|
|
return 'disallowedcontrollermethod';
|
|
|
|
}
|
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function Form() {
|
2010-12-20 01:00:38 +01:00
|
|
|
return new Form(
|
|
|
|
$this,
|
|
|
|
"Form",
|
2011-05-11 09:51:54 +02:00
|
|
|
new FieldList(
|
2010-12-20 01:00:38 +01:00
|
|
|
new TextField("MyField")
|
|
|
|
),
|
2011-05-11 09:51:54 +02:00
|
|
|
new FieldList(
|
2010-12-20 01:00:38 +01:00
|
|
|
new FormAction("formaction"),
|
|
|
|
new FormAction('formactionInAllowedActions')
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param $data
|
|
|
|
* @param $form Made optional to simulate error behaviour in "live" environment
|
|
|
|
* (missing arguments don't throw a fatal error there)
|
|
|
|
*/
|
2012-09-19 12:07:39 +02:00
|
|
|
public function formaction($data, $form = null) {
|
2010-12-20 01:00:38 +01:00
|
|
|
return 'formaction';
|
|
|
|
}
|
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function formactionInAllowedActions($data, $form = null) {
|
2010-12-20 01:00:38 +01:00
|
|
|
return 'formactionInAllowedActions';
|
|
|
|
}
|
2011-03-18 03:01:09 +01:00
|
|
|
|
2012-03-27 06:04:11 +02:00
|
|
|
public function getViewer($action = null) {
|
2011-03-23 04:32:24 +01:00
|
|
|
return new SSViewer('BlankPage');
|
2011-03-18 03:01:09 +01:00
|
|
|
}
|
|
|
|
|
2010-12-20 01:00:38 +01:00
|
|
|
}
|
|
|
|
|
2008-10-31 03:16:51 +01:00
|
|
|
/**
|
|
|
|
* Simple extension for the test controller
|
|
|
|
*/
|
|
|
|
class RequestHandlingTest_ControllerExtension extends Extension {
|
2012-09-19 12:07:39 +02:00
|
|
|
public function extendedMethod() {
|
2008-10-31 03:16:51 +01:00
|
|
|
return "extendedMethod";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Controller for the test
|
|
|
|
*/
|
2011-02-13 23:14:51 +01:00
|
|
|
class RequestHandlingTest_AllowedController extends Controller implements TestOnly {
|
2008-10-31 03:16:51 +01:00
|
|
|
static $url_handlers = array(
|
|
|
|
// The double-slash is need here to ensure that
|
|
|
|
'$Action//$ID/$OtherID' => "handleAction",
|
|
|
|
);
|
|
|
|
|
|
|
|
static $allowed_actions = array(
|
|
|
|
'failoverMethod', // part of the failover object
|
|
|
|
'extendedMethod', // part of the RequestHandlingTest_ControllerExtension object
|
|
|
|
);
|
|
|
|
|
|
|
|
static $extensions = array(
|
|
|
|
'RequestHandlingTest_ControllerExtension',
|
|
|
|
'RequestHandlingTest_AllowedControllerExtension',
|
|
|
|
);
|
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function __construct() {
|
2008-10-31 03:16:51 +01:00
|
|
|
$this->failover = new RequestHandlingTest_ControllerFailover();
|
|
|
|
parent::__construct();
|
|
|
|
}
|
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function index($request) {
|
2008-10-31 03:16:51 +01:00
|
|
|
return "This is the controller";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Simple extension for the test controller - with allowed_actions define
|
|
|
|
*/
|
|
|
|
class RequestHandlingTest_AllowedControllerExtension extends Extension {
|
|
|
|
static $allowed_actions = array(
|
|
|
|
'otherExtendedMethod'
|
|
|
|
);
|
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function otherExtendedMethod() {
|
2008-10-31 03:16:51 +01:00
|
|
|
return "otherExtendedMethod";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class RequestHandlingTest_ControllerFailover extends ViewableData {
|
2012-09-19 12:07:39 +02:00
|
|
|
public function failoverMethod() {
|
2008-10-31 03:16:51 +01:00
|
|
|
return "failoverMethod";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-08-09 05:19:54 +02:00
|
|
|
/**
|
|
|
|
* Form for the test
|
|
|
|
*/
|
|
|
|
class RequestHandlingTest_Form extends Form {
|
|
|
|
static $url_handlers = array(
|
|
|
|
'fields/$FieldName' => 'handleField',
|
|
|
|
"POST " => "handleSubmission",
|
|
|
|
"GET " => "handleGet",
|
|
|
|
);
|
|
|
|
|
2008-09-11 02:15:31 +02:00
|
|
|
// These are a different case from those in url_handlers to confirm that it's all case-insensitive
|
|
|
|
static $allowed_actions = array(
|
|
|
|
'handlesubmission',
|
|
|
|
'handlefield',
|
|
|
|
'handleget',
|
|
|
|
);
|
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function handleField($request) {
|
2012-01-02 15:03:35 +01:00
|
|
|
return $this->Fields()->dataFieldByName($request->param('FieldName'));
|
2008-08-09 05:19:54 +02:00
|
|
|
}
|
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function handleSubmission($request) {
|
2008-08-09 05:19:54 +02:00
|
|
|
return "Form posted";
|
|
|
|
}
|
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function handleGet($request) {
|
2008-08-09 05:19:54 +02:00
|
|
|
return "Get request on form";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-02-13 23:14:51 +01:00
|
|
|
class RequestHandlingTest_ControllerFormWithAllowedActions extends Controller implements TestOnly {
|
2010-12-20 01:00:38 +01:00
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function Form() {
|
2010-12-20 01:00:38 +01:00
|
|
|
return new RequestHandlingTest_FormWithAllowedActions(
|
|
|
|
$this,
|
|
|
|
'Form',
|
2011-05-11 09:51:54 +02:00
|
|
|
new FieldList(),
|
|
|
|
new FieldList(
|
2010-12-20 01:00:38 +01:00
|
|
|
new FormAction('allowedformaction'),
|
|
|
|
new FormAction('disallowedformaction') // disallowed through $allowed_actions in form
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class RequestHandlingTest_FormWithAllowedActions extends Form {
|
|
|
|
|
|
|
|
static $allowed_actions = array(
|
|
|
|
'allowedformaction' => 1,
|
|
|
|
'httpSubmission' => 1, // TODO This should be an exception on the parent class
|
|
|
|
);
|
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function allowedformaction() {
|
2010-12-20 01:00:38 +01:00
|
|
|
return 'allowedformaction';
|
|
|
|
}
|
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function disallowedformaction() {
|
2010-12-20 01:00:38 +01:00
|
|
|
return 'disallowedformaction';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-08-09 05:19:54 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Form field for the test
|
|
|
|
*/
|
|
|
|
class RequestHandlingTest_FormField extends FormField {
|
|
|
|
static $url_handlers = array(
|
|
|
|
"POST " => "handleInPlaceEdit",
|
|
|
|
'' => 'handleField',
|
|
|
|
'$Action' => '$Action',
|
|
|
|
);
|
2008-09-11 02:15:31 +02:00
|
|
|
|
|
|
|
// These contain uppercase letters to test that allowed_actions doesn't need to be all lowercase
|
|
|
|
static $allowed_actions = array(
|
|
|
|
'TEST',
|
|
|
|
'handleField',
|
|
|
|
'handleInPLACEEDIT',
|
|
|
|
);
|
2008-08-09 05:19:54 +02:00
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function test() {
|
2008-08-09 05:19:54 +02:00
|
|
|
return "Test method on $this->name";
|
|
|
|
}
|
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function handleField() {
|
2008-08-09 05:19:54 +02:00
|
|
|
return "$this->name requested";
|
|
|
|
}
|
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function handleInPlaceEdit($request) {
|
2008-08-09 05:19:54 +02:00
|
|
|
return "$this->name posted, update to " . $request->postVar($this->name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-10-30 23:28:01 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Form field for the test
|
|
|
|
*/
|
|
|
|
class RequestHandlingTest_SubclassedFormField extends RequestHandlingTest_FormField {
|
|
|
|
// We have some url_handlers defined that override RequestHandlingTest_FormField handlers.
|
|
|
|
// We will confirm that the url_handlers inherit.
|
|
|
|
static $url_handlers = array(
|
|
|
|
'something' => 'customSomething',
|
|
|
|
);
|
2008-10-31 03:16:51 +01:00
|
|
|
|
2008-10-30 23:28:01 +01:00
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function customSomething() {
|
2008-10-30 23:28:01 +01:00
|
|
|
return "customSomething";
|
|
|
|
}
|
2009-06-27 10:48:44 +02:00
|
|
|
}
|
2011-12-06 01:56:24 +01:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Controller for the test
|
|
|
|
*/
|
|
|
|
class RequestHandlingFieldTest_Controller extends Controller implements TestOnly {
|
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function TestForm() {
|
2011-12-06 01:56:24 +01:00
|
|
|
return new Form($this, "TestForm", new FieldList(
|
|
|
|
new RequestHandlingTest_HandlingField("MyField")
|
|
|
|
), new FieldList(
|
|
|
|
new FormAction("myAction")
|
|
|
|
));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Form field for the test
|
|
|
|
*/
|
|
|
|
class RequestHandlingTest_HandlingField extends FormField {
|
|
|
|
|
|
|
|
static $allowed_actions = array(
|
|
|
|
'actionOnField'
|
|
|
|
);
|
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function actionOnField() {
|
2011-12-06 01:56:24 +01:00
|
|
|
return "Test method on $this->name";
|
|
|
|
}
|
|
|
|
}
|