controller.md 8.29 KB
Newer Older
1 2 3 4 5 6 7 8 9 10
Controller
==========

Controller is one of the key parts of the application. It determines how to handle incoming request and creates a response.

Most often a controller takes HTTP request data and returns HTML, JSON or XML as a response.

Basics
------

Qiang Xue committed
11 12
Controller resides in application's `controllers` directory and is named like `SiteController.php`,
where the `Site` part could be anything describing a set of actions it contains.
13

14
The basic web controller is a class that extends [[yii\web\Controller]] and could be very simple:
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37

```php
namespace app\controllers;

use yii\web\Controller;

class SiteController extends Controller
{
	public function actionIndex()
	{
		// will render view from "views/site/index.php"
		return $this->render('index');
	}

	public function actionTest()
	{
		// will just print "test" to the browser
		return 'test';
	}
}
```

As you can see, typical controller contains actions that are public class methods named as `actionSomething`.
Qiang Xue committed
38
The output of an action is what the method returns: it could be a string or an instance of [[yii\web\Response]], [for example](#custom-response-class).
Mark committed
39
The return value will be handled by the `response` application
Qiang Xue committed
40
component which can convert the output to different formats such as JSON for example. The default behavior
41
is to output the value unchanged though.
42

Mark committed
43
You also can disable CSRF validation per controller and/or action, by setting its property:
Mark committed
44 45 46 47 48 49 50 51 52 53 54 55

```php
namespace app\controllers;

use yii\web\Controller;

class SiteController extends Controller
{
	public $enableCsrfValidation = false;

	public function actionIndex()
	{
56
		// CSRF validation will not be applied to this and other actions
Mark committed
57 58 59 60 61
	}

}
```

Mark committed
62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
To disable CSRF validation per custom actions you can do:

```php
namespace app\controllers;

use yii\web\Controller;

class SiteController extends Controller
{
	public function beforeAction($action)
	{
		// ...set `$this->enableCsrfValidation` here based on some conditions...
		// call parent method that will check CSRF if such property is true.
		return parent::beforeAction($action);
	}
}
```

80 81 82 83
Routes
------

Each controller action has a corresponding internal route. In our example above `actionIndex` has `site/index` route
84
and `actionTest` has `site/test` route. In this route `site` is referred to as controller ID while `test` is action ID.
85 86

By default you can access specific controller and action using the `http://example.com/?r=controller/action` URL. This
87
behavior is fully customizable. For more details please refer to [URL Management](url.md).
88

89 90 91 92 93
If a controller is located inside a module, the route of its actions will be in the format of `module/controller/action`.

A controller can be located under a subdirectory of the controller directory of an application or module. The route
will be prefixed with the corresponding directory names. For example, you may have a `UserController` under `controllers/admin`.
The route of its `actionIndex` would be `admin/user/index`, and `admin/user` would be the controller ID.
94 95 96

In case module, controller or action specified isn't found Yii will return "not found" page and HTTP status code 404.

97
> Note: If module name, controller name or action name contains camelCased words, internal route will use dashes i.e. for
98 99
`DateTimeController::actionFastForward` route will be `date-time/fast-forward`.

100 101 102
### Defaults

If user isn't specifying any route i.e. using URL like `http://example.com/`, Yii assumes that default route should be
103
used. It is determined by [[yii\web\Application::defaultRoute]] method and is `site` by default meaning that `SiteController`
104 105
will be loaded.

106
A controller has a default action. When the user request does not specify which action to execute by using an URL such as
107
`http://example.com/?r=site`, the default action will be executed. By default, the default action is named as `index`.
108
It can be changed by setting the [[yii\base\Controller::defaultAction]] property.
109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132

Action parameters
-----------------

It was already mentioned that a simple action is just a public method named as `actionSomething`. Now we'll review
ways that an action can get parameters from HTTP.

### Action parameters

You can define named arguments for an action and these will be automatically populated from corresponding values from
`$_GET`. This is very convenient both because of the short syntax and an ability to specify defaults:

```php
namespace app\controllers;

use yii\web\Controller;

class BlogController extends Controller
{
	public function actionView($id, $version = null)
	{
		$post = Post::find($id);
		$text = $post->text;

133
		if ($version) {
134 135 136
			$text = $post->getHistory($version);
		}

Alexander Makarov committed
137
		return $this->render('view', [
138 139
			'post' => $post,
			'text' => $text,
Alexander Makarov committed
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
	}
}
```

The action above can be accessed using either `http://example.com/?r=blog/view&id=42` or
`http://example.com/?r=blog/view&id=42&version=3`. In the first case `version` isn't specified and default parameter
value is used instead.

### Getting data from request

If your action is working with data from HTTP POST or has too many GET parameters you can rely on request object that
is accessible via `\Yii::$app->request`:

```php
namespace app\controllers;

use yii\web\Controller;
use yii\web\HttpException;

class BlogController extends Controller
{
	public function actionUpdate($id)
	{
		$post = Post::find($id);
165
		if (!$post) {
166
			throw new NotFoundHttpException();
167 168
		}

169
		if (\Yii::$app->request->isPost) {
170
			$post->load(Yii::$app->request->post());
171
			if ($post->save()) {
172
				return $this->redirect(['view', 'id' => $post->id]);
173 174 175
			}
		}

Alexander Makarov committed
176
		return $this->render('update', ['post' => $post]);
177 178 179 180 181 182 183 184 185 186 187
	}
}
```

Standalone actions
------------------

If action is generic enough it makes sense to implement it in a separate class to be able to reuse it.
Create `actions/Page.php`

```php
Carsten Brandt committed
188
namespace app\actions;
189 190 191 192 193 194 195

class Page extends \yii\base\Action
{
	public $view = 'index';

	public function run()
	{
Carsten Brandt committed
196
		return $this->controller->render($view);
197 198 199 200 201 202 203 204
	}
}
```

The following code is too simple to implement as a separate action but gives an idea of how it works. Action implemented
can be used in your controller as following:

```php
205
class SiteController extends \yii\web\Controller
206 207 208
{
	public function actions()
	{
Alexander Makarov committed
209 210
		return [
			'about' => [
211
				'class' => 'app\actions\Page',
Alexander Makarov committed
212 213 214
				'view' => 'about',
			],
		];
215 216 217 218 219 220
	}
}
```

After doing so you can access your action as `http://example.com/?r=site/about`.

221 222 223 224 225 226

Action Filters
--------------

Action filters are implemented via behaviors. You should extend from `ActionFilter` to
define a new filter. To use a filter, you should attach the filter class to the controller
227
as a behavior. For example, to use the [[yii\web\AccessControl]] filter, you should have the following
228 229 230 231 232 233 234 235 236 237
code in a controller:

```php
public function behaviors()
{
    return [
        'access' => [
            'class' => 'yii\web\AccessControl',
            'rules' => [
                ['allow' => true, 'actions' => ['admin'], 'roles' => ['@']],
zvon committed
238 239 240
            ],
        ],
    ];
241 242 243
}
```

244 245
In order to learn more about access control check the [authorization](authorization.md) section of the guide.
Two other filters, [[yii\web\PageCache]] and [[yii\web\HttpCache]] are described in the [caching](caching.md) section of the guide.
246 247 248 249

Catching all incoming requests
------------------------------

250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267
Sometimes it is useful to handle all incoming requests with a single controller action. For example, displaying a notice
when website is in maintenance mode. In order to do it you should configure web application `catchAll` property either
dynamically or via application config:

```php
$config = [
	'id' => 'basic',
	'basePath' => dirname(__DIR__),
	// ...
	'catchAll' => [ // <-- here
		'offline/notice',
		'param1' => 'value1',
		'param2' => 'value2',
	],
```

In the above `offline/notice` refer to `OfflineController::actionNotice()`. `param1` and `param2` are parameters passed
to action method.
268

Mark committed
269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291
Custom response class
---------------------

```php
namespace app\controllers;

use yii\web\Controller;
use app\components\web\MyCustomResponse; #extended from yii\web\Response

class SiteController extends Controller
{
	public function actionCustom()
	{
		/*
		 * do your things here
		 * since Response in extended from yii\base\Object, you can initialize its values by passing in 
		 * __constructor() simple array.
		 */
		return new MyCustomResponse(['data' => $myCustomData]);
	}
}
```

Mark committed
292 293 294
See also
--------

295
- [Console](console.md)