Completed
Push — master ( 051f9d...e3c2d8 )
by Edson
02:26 queued 01:03
created

Model   A

Complexity

Total Complexity 19

Size/Duplication

Total Lines 92
Duplicated Lines 0 %

Test Coverage

Coverage 91.84%

Importance

Changes 0
Metric Value
eloc 38
dl 0
loc 92
ccs 45
cts 49
cp 0.9184
rs 10
c 0
b 0
f 0
wmc 19

11 Methods

Rating   Name   Duplication   Size   Complexity  
A all() 0 4 2
A find() 0 4 2
A save() 0 11 2
A deleteAll() 0 3 1
A getTable() 0 4 1
A bind() 0 13 3
A getProperties() 0 7 2
A update() 0 10 1
A delete() 0 3 1
A select() 0 5 2
A only() 0 5 2
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Bonfim\ActiveRecord;
6
7
use PDO;
8
use PDOStatement;
9
use ReflectionClass;
10
11
use Bonfim\ActiveRecord\ActiveRecord as AR;
12
13
abstract class Model extends AR
14
{
15 9
    public static function all(): array
16
    {
17 9
        $consulta = AR::execute("SELECT * FROM `".self::getTable()."`");
18 9
        return is_null($consulta) ? [] : self::bind($consulta);
19
    }
20
21 12
    public static function find(string $where, array $values): array
22
    {
23 12
        $consulta = AR::execute("SELECT * FROM `".self::getTable()."` ".$where, $values);
24 12
        return is_null($consulta) ? [] : self::bind($consulta);
25
    }
26
27
    public static function only(array $keys)
28
    {
29
        $sql = "SELECT ".implode(', ', $keys). " FROM ".self::getTable();
30
        $consulta = AR::execute($sql);
31
        return is_null($consulta) ? [] : self::bind($consulta);
32
    }
33
34 6
    public static function select(array $keys, string $cond = '', array $values = []): array
35
    {
36 6
        $q = "SELECT ".implode(', ', $keys)." FROM ".self::getTable()." $cond";
37 6
        $consulta = AR::execute($q, $values);
38 6
        return is_null($consulta) ? [] : self::bind($consulta);
39
    }
40
41 3
    public function save(): int
42
    {
43 3
        $this->getProperties($keys, $values);
44
45 3
        $q = "INSERT INTO `".self::getTable()."` (`".implode('`, `', $keys)."`) VALUES (";
46 3
        for ($i = 0; $i < count($keys) - 1; $i++) {
47 3
            $q .= "?, ";
48
        }
49 3
        $q .= "?)";
50
51 3
        return AR::execute($q, $values)->rowCount();
52
    }
53
54 3
    public function update(): int
55
    {
56 3
        $this->getProperties($keys, $values);
57 3
        $values[] = $this->id;
0 ignored issues
show
Bug Best Practice introduced by
The property id does not exist on Bonfim\ActiveRecord\Model. Did you maybe forget to declare it?
Loading history...
58
59 3
        $q = "UPDATE `".self::getTable()."` SET " . "`";
60 3
        $q .= implode('` = ?, `', $keys);
61 3
        $q .= "` = ? WHERE `id` = ?";
62
63 3
        return AR::execute($q, $values)->rowCount();
64
    }
65
66 3
    public function delete(): int
67
    {
68 3
        return AR::execute("DELETE FROM `".self::getTable()."` WHERE `id` = ?", [$this->id])->rowCount();
0 ignored issues
show
Bug Best Practice introduced by
The property id does not exist on Bonfim\ActiveRecord\Model. Did you maybe forget to declare it?
Loading history...
69
    }
70
71 3
    public static function deleteAll(): int
72
    {
73 3
        return AR::execute("DELETE FROM `".self::getTable()."`")->rowCount();
74
    }
75
76 30
    private static function getTable(): string
77
    {
78 30
        $class = new ReflectionClass(get_called_class());
79 30
        return Inflect::pluralize(strtolower($class->getShortName()));
80
    }
81
82 6
    private function getProperties(&$keys, &$values)
83
    {
84 6
        $properties = (new ReflectionClass(get_called_class()))->getProperties();
85
86 6
        foreach ($properties as $property) {
87 6
            $keys[]   = $property->name;
88 6
            $values[] = $this->{$property->name};
89
        }
90 6
    }
91
92 24
    private static function bind(PDOStatement $exec): array
93
    {
94 24
        $resp  = [];
95 24
        $class = get_called_class();
96
97 24
        foreach ($exec->fetchAll(PDO::FETCH_OBJ) as $i => $fetch) {
98 15
            $resp[$i] = new $class;
99 15
            foreach ($fetch as $k => $v) {
100 15
                $resp[$i]->$k = $v;
101
            }
102
        }
103
104 24
        return $resp;
105
    }
106
}
107