8 Commits

Author SHA1 Message Date
65c224c636 Merge branch 'develop' into master 2021-08-01 20:51:44 -04:00
2bf938a9b7 FIX: array_walk returns bool and tertiary operator 2021-08-01 20:50:42 -04:00
6cd26a88ea Merge branch 'develop' into master 2021-08-01 20:34:04 -04:00
293b5af3ff FIX: self -> static 2021-08-01 20:31:49 -04:00
022ba575b7 Merge branch 'develop' into master 2021-06-04 21:15:26 -04:00
643c3e714f FIX: Find where in add 2021-05-23 21:27:13 -04:00
db2864395c FIX: Factory for find 2021-05-23 21:07:48 -04:00
1cd06d5fe6 Add and Edit Model 2021-05-23 21:03:10 -04:00
3 changed files with 41 additions and 4 deletions

View File

@ -122,4 +122,35 @@ abstract class Model extends BaseModel implements ModelInterface {
public function toArray(): array {
return $this->asArray();
}
protected static function parseInput($input): array {
return array_intersect_key((array) $input, array_combine(static::$fields, static::$fields));
}
public static function add(ModelFactory $factory, $input): ?ModelInterface {
$data = static::parseInput($input);
$class = get_called_class();
if (method_exists($class, 'find')) {
$obj = static::find($factory, $input);
} else {
$where = $data;
array_walk($where, function(&$item, $key) {
$item = [$key, $item];
});
$where = array_values($where);
$obj = $factory->find($class)->where($where)->one();
}
if ($obj === null) {
$obj = $factory->create($class, $data);
}
return $obj;
}
public function edit($input): bool {
$data = static::parseInput($input);
foreach (static::$fields as $field) {
if ($this->{$field} != $data[$field]) {
$this->{$field} = $data[$field];
}
}
return $this->save();
}
}

View File

@ -11,4 +11,7 @@ interface Model {
public function siblingOf(string $sibling_model_class, string $connecting_table, array $relation_definitions): ?array;
public function toArray(): array;
public static function add(ModelFactory $factory, $input): ?Model;
public function edit($input): bool;
}

View File

@ -81,7 +81,7 @@ class Model {
'to' => $j['to'] ?? $j[2],
'sym' => $j['sym'] ?? ($j[3] ?? '='),
'alias' => $j['alias'] ?? '',
'type' => strtolower($j['type']) ?? '',
'type' => strtolower($j['type'] ?? ''),
'params' => $j['params'] ?? ''
];
$this->joins []= $join;
@ -98,7 +98,7 @@ class Model {
'column' => $c['column'] ?? $c[0],
'value' => $c['value'] ?? $c[1],
'sym' => strtolower($c['sym'] ?? ($c[2] ?? '=')),
'type' => strtolower($c['type']) ?? ''
'type' => strtolower($c['type'] ?? '')
];
$this->conditions []= $cond;
}
@ -363,10 +363,13 @@ class Model {
return $results;
}
public function array(): ?array {
$results = $this->build()->findArray();
if (!$results) {
$results = $this->many();
if (!$results or $results === null) {
return null;
}
array_walk($results, function(&$item) {
$item = $item->toArray();
});
return $results;
}