Serializer.php 8.31 KB
Newer Older
Qiang Xue committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
<?php
/**
 * @link http://www.yiiframework.com/
 * @copyright Copyright (c) 2008 Yii Software LLC
 * @license http://www.yiiframework.com/license/
 */

namespace yii\rest;

use Yii;
use yii\base\Component;
use yii\base\Model;
use yii\data\DataProviderInterface;
use yii\data\Pagination;
use yii\helpers\ArrayHelper;
Qiang Xue committed
16
use yii\web\Link;
Qiang Xue committed
17 18 19 20
use yii\web\Request;
use yii\web\Response;

/**
Qiang Xue committed
21 22 23 24 25 26 27
 * Serializer converts resource objects and collections into array representation.
 *
 * Serializer is mainly used by REST controllers to convert different objects into array representation
 * so that they can be further turned into different formats, such as JSON, XML, by response formatters.
 *
 * The default implementation handles resources as [[Model]] objects and collections as objects
 * implementing [[DataProviderInterface]]. You may override [[serialize()]] to handle more types.
Qiang Xue committed
28 29 30 31 32 33
 *
 * @author Qiang Xue <qiang.xue@gmail.com>
 * @since 2.0
 */
class Serializer extends Component
{
Qiang Xue committed
34 35 36 37 38
	/**
	 * @var string the name of the query parameter containing the information about which fields should be returned
	 * for a [[Model]] object. If the parameter is not provided or empty, the default set of fields as defined
	 * by [[Model::fields()]] will be returned.
	 */
Qiang Xue committed
39
	public $fieldsParam = 'fields';
Qiang Xue committed
40 41 42 43
	/**
	 * @var string the name of the query parameter containing the information about which fields should be returned
	 * in addition to those listed in [[fieldsParam]] for a resource object.
	 */
Qiang Xue committed
44
	public $expandParam = 'expand';
Qiang Xue committed
45 46 47 48
	/**
	 * @var string the name of the HTTP header containing the information about total number of data items.
	 * This is used when serving a resource collection with pagination.
	 */
Qiang Xue committed
49
	public $totalCountHeader = 'X-Pagination-Total-Count';
Qiang Xue committed
50 51 52 53
	/**
	 * @var string the name of the HTTP header containing the information about total number of pages of data.
	 * This is used when serving a resource collection with pagination.
	 */
Qiang Xue committed
54
	public $pageCountHeader = 'X-Pagination-Page-Count';
Qiang Xue committed
55 56 57 58
	/**
	 * @var string the name of the HTTP header containing the information about the current page number (1-based).
	 * This is used when serving a resource collection with pagination.
	 */
Qiang Xue committed
59
	public $currentPageHeader = 'X-Pagination-Current-Page';
Qiang Xue committed
60 61 62 63
	/**
	 * @var string the name of the HTTP header containing the information about the number of data items in each page.
	 * This is used when serving a resource collection with pagination.
	 */
Qiang Xue committed
64 65
	public $perPageHeader = 'X-Pagination-Per-Page';
	/**
Qiang Xue committed
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
	 * @var string the name of the envelope (e.g. `items`) for returning the resource objects in a collection.
	 * This is used when serving a resource collection. When this is set and pagination is enabled, the serializer
	 * will return a collection in the following format:
	 *
	 * ```php
	 * [
	 *     'items' => [...],  // assuming collectionEnvelope is "items"
	 *     '_links' => {  // pagination links as returned by Pagination::getLinks()
	 *         'self' => '...',
	 *         'next' => '...',
	 *         'last' => '...',
	 *     },
	 *     '_meta' => {  // meta information as returned by Pagination::toArray()
	 *         'totalCount' => 100,
	 *         'pageCount' => 5,
	 *         'currentPage' => 1,
	 *         'perPage' => 20,
	 *     },
	 * ]
	 * ```
	 *
	 * If this property is not set, the resource arrays will be directly returned without using envelope.
	 * The pagination information as shown in `_links` and `_meta` can be accessed from the response HTTP headers.
	 */
	public $collectionEnvelope;
	/**
	 * @var Request the current request. If not set, the `request` application component will be used.
Qiang Xue committed
93 94 95
	 */
	public $request;
	/**
Qiang Xue committed
96
	 * @var Response the response to be sent. If not set, the `response` application component will be used.
Qiang Xue committed
97 98 99
	 */
	public $response;

Qiang Xue committed
100 101 102
	/**
	 * @inheritdoc
	 */
Qiang Xue committed
103 104 105 106 107 108 109 110 111 112
	public function init()
	{
		if ($this->request === null) {
			$this->request = Yii::$app->getRequest();
		}
		if ($this->response === null) {
			$this->response = Yii::$app->getResponse();
		}
	}

Qiang Xue committed
113 114 115 116 117 118 119 120 121
	/**
	 * Serializes the given data into a format that can be easily turned into other formats.
	 * This method mainly converts the objects of recognized types into array representation.
	 * It will not do conversion for unknown object types or non-object data.
	 * The default implementation will handle [[Model]] and [[DataProviderInterface]].
	 * You may override this method to support more object types.
	 * @param mixed $data the data to be serialized.
	 * @return mixed the converted data.
	 */
Qiang Xue committed
122 123 124 125 126 127 128 129 130 131 132
	public function serialize($data)
	{
		if ($data instanceof Model) {
			return $data->hasErrors() ? $this->serializeModelErrors($data) : $this->serializeModel($data);
		} elseif ($data instanceof DataProviderInterface) {
			return $this->serializeDataProvider($data);
		} else {
			return $data;
		}
	}

Qiang Xue committed
133 134 135 136 137 138 139
	/**
	 * @return array the names of the requested fields. The first element is an array
	 * representing the list of default fields requested, while the second element is
	 * an array of the extra fields requested in addition to the default fields.
	 * @see Model::fields()
	 * @see Model::extraFields()
	 */
Qiang Xue committed
140 141 142 143 144 145 146 147 148 149 150
	protected function getRequestedFields()
	{
		$fields = $this->request->get($this->fieldsParam);
		$expand = $this->request->get($this->expandParam);
		return [
			preg_split('/\s*,\s*/', $fields, -1, PREG_SPLIT_NO_EMPTY),
			preg_split('/\s*,\s*/', $expand, -1, PREG_SPLIT_NO_EMPTY),
		];
	}

	/**
Qiang Xue committed
151
	 * Serializes a data provider.
Qiang Xue committed
152
	 * @param DataProviderInterface $dataProvider
Qiang Xue committed
153
	 * @return array the array representation of the data provider.
Qiang Xue committed
154 155 156
	 */
	protected function serializeDataProvider($dataProvider)
	{
Qiang Xue committed
157
		$models = $this->serializeModels($dataProvider->getModels());
Qiang Xue committed
158 159 160 161 162 163 164

		if (($pagination = $dataProvider->getPagination()) !== false) {
			$this->addPaginationHeaders($pagination);
		}

		if ($this->request->getIsHead()) {
			return null;
Qiang Xue committed
165 166
		} elseif ($this->collectionEnvelope === null) {
			return $models;
Qiang Xue committed
167
		} else {
Qiang Xue committed
168 169 170 171
			$result = [
				$this->collectionEnvelope => $models,
			];
			if ($pagination !== false) {
172 173 174
				return array_merge($result, $this->serializePagination($pagination));
			} else {
				return $result;
Qiang Xue committed
175
			}
Qiang Xue committed
176 177 178
		}
	}

179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197
	/**
	 * Serializes a pagination into an array.
	 * @param Pagination $pagination
	 * @return array the array representation of the pagination
	 * @see addPaginationHeader()
	 */
	protected function serializePagination($pagination)
	{
		return [
			'_links' => Link::serialize($pagination->getLinks(true)),
			'_meta' => [
				'totalCount' => $pagination->totalCount,
				'pageCount' => $pagination->getPageCount(),
				'currentPage' => $pagination->getPage(),
				'perPage' => $pagination->getPageSize(),
			],
		];
	}

Qiang Xue committed
198
	/**
Qiang Xue committed
199
	 * Adds HTTP headers about the pagination to the response.
Qiang Xue committed
200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217
	 * @param Pagination $pagination
	 */
	protected function addPaginationHeaders($pagination)
	{
		$links = [];
		foreach ($pagination->getLinks(true) as $rel => $url) {
			$links[] = "<$url>; rel=$rel";
		}

		$this->response->getHeaders()
			->set($this->totalCountHeader, $pagination->totalCount)
			->set($this->pageCountHeader, $pagination->getPageCount())
			->set($this->currentPageHeader, $pagination->getPage() + 1)
			->set($this->perPageHeader, $pagination->pageSize)
			->set('Link', implode(', ', $links));
	}

	/**
Qiang Xue committed
218
	 * Serializes a model object.
Qiang Xue committed
219
	 * @param Model $model
Qiang Xue committed
220
	 * @return array the array representation of the model
Qiang Xue committed
221 222 223 224 225 226 227 228 229 230 231 232
	 */
	protected function serializeModel($model)
	{
		if ($this->request->getIsHead()) {
			return null;
		} else {
			list ($fields, $expand) = $this->getRequestedFields();
			return $model->toArray($fields, $expand);
		}
	}

	/**
Qiang Xue committed
233
	 * Serializes the validation errors in a model.
Qiang Xue committed
234
	 * @param Model $model
Qiang Xue committed
235
	 * @return array the array representation of the errors
Qiang Xue committed
236 237 238
	 */
	protected function serializeModelErrors($model)
	{
Qiang Xue committed
239
		$this->response->setStatusCode(422, 'Data Validation Failed.');
Qiang Xue committed
240 241 242 243 244 245 246 247 248 249
		$result = [];
		foreach ($model->getFirstErrors() as $name => $message) {
			$result[] = [
				'field' => $name,
				'message' => $message,
			];
		}
		return $result;
	}

Qiang Xue committed
250 251 252 253 254
	/**
	 * Serializes a set of models.
	 * @param array $models
	 * @return array the array representation of the models
	 */
Qiang Xue committed
255 256 257 258 259 260 261 262 263 264 265 266 267
	protected function serializeModels(array $models)
	{
		list ($fields, $expand) = $this->getRequestedFields();
		foreach ($models as $i => $model) {
			if ($model instanceof Model) {
				$models[$i] = $model->toArray($fields, $expand);
			} elseif (is_array($model)) {
				$models[$i] = ArrayHelper::toArray($model);
			}
		}
		return $models;
	}
}