Skip to content

Commit d770c9b

Browse files
committed
using static in models
1 parent 7154a88 commit d770c9b

File tree

4 files changed

+39
-45
lines changed

4 files changed

+39
-45
lines changed

src/BaseModel.php

+5-6
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public function __construct($id = null)
5656
*/
5757
public function getId()
5858
{
59-
return $this->{self::$idField};
59+
return $this->{static::$idField};
6060
}
6161

6262
/**
@@ -66,7 +66,7 @@ public function getId()
6666
*/
6767
public function setId($id)
6868
{
69-
$this->{self::$idField} = $id;
69+
$this->{static::$idField} = $id;
7070
}
7171

7272
/**
@@ -76,23 +76,22 @@ public function setId($id)
7676
*/
7777
public function getIdField(): string
7878
{
79-
return self::$idField;
79+
return static::$idField;
8080
}
8181

8282
/**
8383
* Generate an unique identifier for the model
8484
*/
8585
protected function generateId()
8686
{
87-
$class = get_called_class();
8887
$characters = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ";
8988
$charactersLength = strlen($characters);
9089
do {
9190
$id = '';
92-
for ($i = 0; $i < $class::$idLength; $i++) {
91+
for ($i = 0; $i < static::$idLength; $i++) {
9392
$id .= $characters[rand(0, $charactersLength - 1)];
9493
}
95-
} while ($class::get($id));
94+
} while (static::get($id));
9695

9796
$this->setId($id);
9897
}

src/GenericModel.php

+32-37
Original file line numberDiff line numberDiff line change
@@ -74,22 +74,21 @@ protected static function getDriverFactory()
7474
*
7575
* @param string $id
7676
* @param bool $update
77-
* @return GenericModel|bool
77+
* @return static|bool
7878
*/
7979
public static function get(string $id, bool $update = false)
8080
{
81-
$class = get_called_class();
8281
$registry = ModelRegistry::getInstance();
83-
$factory = self::getDriverFactory();
82+
$factory = static::getDriverFactory();
8483

8584
/**
86-
* @var GenericModel $model
85+
* @var static $model
8786
*/
88-
$model = new $class($id);
87+
$model = new static($id);
8988

9089
// try to get the model from the registry
91-
if ($class::$registry) {
92-
if ($registryModel = $registry->get($class::getName(), $id)) {
90+
if (static::$registry) {
91+
if ($registryModel = $registry->get(static::getName(), $id)) {
9392
$model = $registryModel;
9493
if (!$update) {
9594
return $model;
@@ -98,38 +97,38 @@ public static function get(string $id, bool $update = false)
9897
}
9998

10099
// try to get the model from cache
101-
if ($class::$cache && !$update && $factory->assembleCacheDriver()->get($model)) {
102-
if ($class::$registry) {
100+
if (static::$cache && !$update && $factory->assembleCacheDriver()->get($model)) {
101+
if (static::$registry) {
103102
$registry->save($model);
104103
}
105104

106105
return $model;
107106
}
108107

109108
// try to get the model from nosql database
110-
if ($class::$nosql && $factory->assembleNoSQLDriver()->get($model)) {
111-
if ($class::$registry) {
109+
if (static::$nosql && $factory->assembleNoSQLDriver()->get($model)) {
110+
if (static::$registry) {
112111
$registry->save($model);
113112
}
114113

115-
if ($class::$cache) {
114+
if (static::$cache) {
116115
$factory->assembleCacheDriver()->save($model);
117116
}
118117

119118
return $model;
120119
}
121120

122121
// try to get the model from relational database
123-
if ($class::$relational && $factory->assembleRelationalDriver()->get($model)) {
124-
if ($class::$registry) {
122+
if (static::$relational && $factory->assembleRelationalDriver()->get($model)) {
123+
if (static::$registry) {
125124
$registry->save($model);
126125
}
127126

128-
if ($class::$cache) {
127+
if (static::$cache) {
129128
$factory->assembleCacheDriver()->save($model);
130129
}
131130

132-
if ($class::$nosql) {
131+
if (static::$nosql) {
133132
$factory->assembleNoSQLDriver()->save($model);
134133
}
135134

@@ -147,19 +146,18 @@ public static function get(string $id, bool $update = false)
147146
*/
148147
public static function query(Query $query): QueryResult
149148
{
150-
$class = get_called_class();
151-
$factory = self::getDriverFactory();
149+
$factory = static::getDriverFactory();
152150

153-
$query->modelClassName = $class;
151+
$query->modelClassName = static::class;
154152

155153
/** @var QueryableDriverInterface $driver */
156154
$driver = $factory->assembleRelationalDriver();
157155

158-
if ($class::$relational) {
156+
if (static::$relational) {
159157
/** @var QueryResult $result */
160158
$result = $driver->query($query);
161159

162-
if ($class::$registry) {
160+
if (static::$registry) {
163161
if ($result->wasSuccessful() && count($result) > 0) {
164162
foreach ($result as $model) {
165163
ModelRegistry::getInstance()->save($model);
@@ -188,7 +186,7 @@ public static function query(Query $query): QueryResult
188186
*/
189187
public static function select($where = null, $order = null, $fields = null, $limit = null): QueryResult
190188
{
191-
return self::query(new SelectQuery($where, $order, $fields, $limit));
189+
return static::query(new SelectQuery($where, $order, $fields, $limit));
192190
}
193191

194192
/**
@@ -198,41 +196,40 @@ public static function select($where = null, $order = null, $fields = null, $lim
198196
*/
199197
public function save(): bool
200198
{
201-
$class = get_called_class();
202-
$factory = self::getDriverFactory();
199+
$factory = static::getDriverFactory();
203200

204201
// new model, generate id and save in registry
205202
if (!$this->getId()) {
206203
$this->generateId();
207204

208-
if ($class::$registry) {
205+
if (static::$registry) {
209206
ModelRegistry::getInstance()->save($this);
210207
}
211208
}
212209

213210
// save in relational database
214-
if ($class::$relational) {
211+
if (static::$relational) {
215212
if (!$factory->assembleRelationalDriver()->save($this)) {
216213
return false;
217214
}
218215
}
219216

220217
// save in nosql database
221-
if ($class::$nosql) {
218+
if (static::$nosql) {
222219
if (!$factory->assembleNoSQLDriver()->save($this)) {
223220
return false;
224221
}
225222
}
226223

227224
// save in search database
228-
if ($class::$search) {
225+
if (static::$search) {
229226
if (!$factory->assembleSearchDriver()->save($this)) {
230227
return false;
231228
}
232229
}
233230

234231
// save in cache
235-
if ($class::$cache) {
232+
if (static::$cache) {
236233
if (!$factory->assembleCacheDriver()->save($this)) {
237234
return false;
238235
}
@@ -248,33 +245,32 @@ public function save(): bool
248245
*/
249246
public function delete(): bool
250247
{
251-
$class = get_called_class();
252-
$factory = self::getDriverFactory();
248+
$factory = static::getDriverFactory();
253249
$success = true;
254250

255251
// delete in relational database
256-
if ($class::$relational) {
252+
if (static::$relational) {
257253
if (!$factory->assembleRelationalDriver()->delete($this)) {
258254
$success = false;
259255
}
260256
}
261257

262258
// delete in nosql database
263-
if ($class::$nosql) {
259+
if (static::$nosql) {
264260
if (!$factory->assembleNoSQLDriver()->delete($this)) {
265261
$success = false;
266262
}
267263
}
268264

269265
// delete in search database
270-
if ($class::$search) {
266+
if (static::$search) {
271267
if (!$factory->assembleSearchDriver()->delete($this)) {
272268
$success = false;
273269
}
274270
}
275271

276272
// delete in cache
277-
if ($class::$cache) {
273+
if (static::$cache) {
278274
if (!$factory->assembleCacheDriver()->delete($this)) {
279275
$success = false;
280276
}
@@ -290,7 +286,6 @@ public function delete(): bool
290286
*/
291287
public function getCacheTime(): int
292288
{
293-
$class = get_called_class();
294-
return $class::$cache ?: 0;
289+
return static::$cache ?: 0;
295290
}
296291
}

src/ModelInterface.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public function getIdField(): string;
5353
*
5454
* @param string $id
5555
* @param bool $update
56-
* @return ModelInterface|bool
56+
* @return static|bool
5757
*/
5858
public static function get(string $id, bool $update = false);
5959

src/SimpleModel.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ abstract class SimpleModel extends BaseModel
2121
*/
2222
public static function get(string $id, bool $update = false)
2323
{
24-
$model = new (get_called_class())($id);
24+
$model = new static($id);
2525
if (DriverFactory::getInstance()->assembleNoSQLDriver()->get($model)) {
2626
return $model;
2727
}

0 commit comments

Comments
 (0)