Skip to content

Commit 541a3a9

Browse files
committed
Merge pull request #19 from setyolegowo/activerecord-test
Fix NULL object access in ActiveDataProvider
2 parents 939899a + 41ee5c1 commit 541a3a9

File tree

1 file changed

+13
-10
lines changed

1 file changed

+13
-10
lines changed

src/ActiveDataProvider.php

+13-10
Original file line numberDiff line numberDiff line change
@@ -39,13 +39,13 @@ class ActiveDataProvider extends \yii\data\BaseDataProvider
3939
* if it is not explicitly set.
4040
*/
4141
public $query;
42-
42+
4343
/**
4444
* @var Connection|array|string the DB connection object or the application component ID of the DB connection.
4545
* If not set, the default DB connection will be used.
4646
*/
4747
public $db = 'dynamodb';
48-
48+
4949
/**
5050
* @var string|callable the column that is used as the key of the data models.
5151
* This can be either a column name, or a callable that returns the key value of a given data model.
@@ -59,7 +59,7 @@ class ActiveDataProvider extends \yii\data\BaseDataProvider
5959
* @see getKeys()
6060
*/
6161
public $key;
62-
62+
6363
/**
6464
* Initializes the DB connection component.
6565
* This method will initialize the [[db]] property to make sure it refers to a valid DB connection.
@@ -130,19 +130,22 @@ protected function prepareModels()
130130
throw new InvalidConfigException('The "query" property must be an instance of a class that '.
131131
'implements the UrbanIndo\Yii2\DynamoDb\Query or its subclasses.');
132132
}
133-
133+
134134
$query = clone $this->query;
135135
if (($pagination = $this->getPagination()) !== false) {
136136
$query->limit($pagination->getLimit());
137137
$query->offset($pagination->getOffset());
138138
}
139-
139+
140140
$models = $query->all($this->db);
141141
if ($pagination !== false) {
142142
$peek = current(array_slice($models, -1));
143-
/* @var $peek ActiveRecord */
144-
$nextLastKey = ArrayHelper::getValue($peek->getResponseData(), 'LastEvaluatedKey');
145-
$pagination->setNextLastKey($nextLastKey);
143+
144+
if ($peek != null) {
145+
/* @var $peek ActiveRecord */
146+
$nextLastKey = ArrayHelper::getValue($peek->getResponseData(), 'LastEvaluatedKey');
147+
$pagination->setNextLastKey($nextLastKey);
148+
}
146149
}
147150
return $models;
148151
}
@@ -155,7 +158,7 @@ protected function prepareTotalCount()
155158
{
156159
return 0;
157160
}
158-
161+
159162
/**
160163
* Returns the pagination object used by this data provider.
161164
* Note that you should call [[prepare()]] or [[getModels()]] first to get correct values
@@ -166,7 +169,7 @@ public function getPagination()
166169
{
167170
return parent::getPagination();
168171
}
169-
172+
170173
/**
171174
* Sets the pagination for this data provider.
172175
* @param array|Pagination|boolean $value The pagination to be used by this data provider.

0 commit comments

Comments
 (0)