-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathDataTableAction.php
257 lines (231 loc) · 7.51 KB
/
DataTableAction.php
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
<?php
/**
* @copyright Copyright (c) 2014 Serhiy Vinichuk
* @license MIT
* @author Serhiy Vinichuk <[email protected]>
*/
namespace nullref\datatable;
use Closure;
use Yii;
use yii\base\Action;
use yii\base\InvalidConfigException;
use yii\data\ActiveDataProvider;
use yii\db\ActiveQuery;
use yii\db\ActiveRecord;
use yii\helpers\ArrayHelper;
use yii\web\Response;
/**
* Action for processing ajax requests from DataTables.
* @see http://datatables.net/manual/server-side for more info
* @package nullref\datatable
*/
class DataTableAction extends Action
{
/**
* Types of request method
*/
const REQUEST_METHOD_GET = 'GET';
const REQUEST_METHOD_POST = 'POST';
/**
* @see \nullref\datatable\DataTableAction::getParam
* @var string
*/
public $requestMethod = self::REQUEST_METHOD_GET;
/**
* @var ActiveQuery|Closure
*/
public $query;
/**
* Applies ordering according to params from DataTable
* Signature is following:
* function ($query, $columns, $order)
* @var callable
*/
public $applyOrder;
/**
* Applies filtering according to params from DataTable
* Signature is following:
* function ($query, $columns, $search)
* @var callable
*/
public $applyFilter;
/**
* Format data
* Signature is following:
* function ($query, $columns)
* @var callable
*/
public $formatData;
/**
* Format response
* Signature is following:
* function ($response)
* @var callable
*/
public $formatResponse;
/**
* Add extra fields to dataset
* These fields could be used at render function
*
* @var array
*/
public $extraColumns = [];
/**
* Check if query is configured
* @throws InvalidConfigException
*/
public function init()
{
if ($this->query === null) {
throw new InvalidConfigException(get_class($this) . '::$query must be set.');
}
if ($this->query instanceof Closure) {
$this->query = call_user_func($this->query);
}
if ($this->formatData === null) {
$this->formatData = function ($query, $columns) {
$rows = [];
foreach ($query->all() as $obj) {
$row = [];
foreach ($columns as $column) {
if ($column['data']) {
$value = ArrayHelper::getValue($obj, $column['data'], null);
if (($pos = strrpos($column['data'], '.')) !== false) {
$keys = explode('.', $column['data']);
$a = $value;
foreach (array_reverse($keys) as $key) {
$a = [$key => $a];
}
$row[$keys[0]] = $a[$keys[0]];
} else {
$row[$column['data']] = $value;
}
}
}
$rows[] = $row;
}
return $rows;
};
}
}
/**
* @return array|ActiveRecord[]
*/
public function run()
{
/** @var ActiveQuery $originalQuery */
$originalQuery = $this->query;
$filterQuery = clone $originalQuery;
$draw = $this->getParam('draw');
$filterQuery->where = null;
$search = $this->getParam('search', ['value' => null, 'regex' => false]);
$columns = $this->getParam('columns', []);
$order = $this->getParam('order', []);
$filterQuery = $this->applyFilter($filterQuery, $columns, $search);
$filterQuery = $this->applyOrder($filterQuery, $columns, $order);
if (!empty($originalQuery->where)) {
$filterQuery->andWhere($originalQuery->where);
}
$filterQuery
->offset($this->getParam('start', 0))
->limit($this->getParam('length', -1));
$dataProvider = new ActiveDataProvider(['query' => $filterQuery, 'pagination' => ['pageSize' => Yii::$app->request->getQueryParam('length', 10)]]);
Yii::$app->response->format = Response::FORMAT_JSON;
try {
$allColumns = array_merge($columns, $this->getExtraColumns());
$response = [
'draw' => (int)$draw,
'recordsTotal' => (int)$originalQuery->count(),
'recordsFiltered' => (int)$dataProvider->getTotalCount(),
'data' => $this->formatData($filterQuery, $allColumns),
];
} catch (\Exception $e) {
return ['error' => $e->getMessage()];
}
return $this->formatResponse($response);
}
/**
* Extract param from request
* @param $name
* @param null $defaultValue
* @return mixed
*/
protected function getParam($name, $defaultValue = null)
{
return $this->requestMethod == self::REQUEST_METHOD_GET ?
Yii::$app->request->getQueryParam($name, $defaultValue) :
Yii::$app->request->getBodyParam($name, $defaultValue);
}
/**
* @param ActiveQuery $query
* @param array $columns
* @param array $search
* @return ActiveQuery
* @throws InvalidConfigException
*/
public function applyFilter(ActiveQuery $query, $columns, $search)
{
if ($this->applyFilter !== null) {
return call_user_func($this->applyFilter, $query, $columns, $search);
}
/** @var \yii\db\ActiveRecord $modelClass */
$modelClass = $query->modelClass;
$schema = $modelClass::getTableSchema()->columns;
foreach ($columns as $column) {
if ($column['searchable'] == 'true' && array_key_exists($column['data'], $schema) !== false) {
$value = empty($search['value']) ? $column['search']['value'] : $search['value'];
$query->orFilterWhere(['like', $column['data'], $value]);
}
}
return $query;
}
/**
* @param ActiveQuery $query
* @param array $columns
* @param array $order
* @return ActiveQuery
*/
public function applyOrder(ActiveQuery $query, $columns, $order)
{
if ($this->applyOrder !== null) {
return call_user_func($this->applyOrder, $query, $columns, $order);
}
foreach ($order as $key => $item) {
if (array_key_exists('orderable', $columns[$item['column']]) && $columns[$item['column']]['orderable'] === 'false') {
continue;
}
$sort = $item['dir'] == 'desc' ? SORT_DESC : SORT_ASC;
$query->addOrderBy([$columns[$item['column']]['data'] => $sort]);
}
return $query;
}
/**
* Prepare extraColumns for
*/
protected function getExtraColumns()
{
return array_map(function ($column) {
return ['data' => $column];
}, $this->extraColumns);
}
/**
* @param ActiveQuery $query
* @param array $columns
* @return array|ActiveRecord[]
*/
public function formatData(ActiveQuery $query, $columns)
{
return call_user_func($this->formatData, $query, $columns);
}
/**
* @param array $response
* @return array|ActiveRecord[]
*/
public function formatResponse($response)
{
if ($this->formatResponse !== null) {
return call_user_func($this->formatResponse, $response);
}
return $response;
}
}