Merge branch 'develop' into master

This commit is contained in:
2021-06-04 21:15:26 -04:00
2 changed files with 37 additions and 0 deletions

View File

@ -122,4 +122,38 @@ 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(self::$fields, self::$fields));
}
public static function add(ModelFactory $factory, $input): bool {
$data = self::parseInput($input);
$class = get_called_class();
if (method_exists($class, 'find')) {
$obj = self::find($factory, $input);
} else {
$where = $data;
$where = array_values(array_walk($where, function(&$item, $key) {
$item = [$key, $item];
}));
$obj = $factory->find($class)->where($where)->one();
}
if ($obj === false) {
$obj = $factory->create($class, $data);
return $obj->save();
}
return false;
}
public function edit($input): bool {
$data = self::parseInput($input);
foreach (self::$fields as $field) {
if ($this->{$field} != $data[$field]) {
$this->{$field} = $data[$field];
}
}
if ($this->isDirty()) {
return $this->save();
}
return false;
}
}

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): bool;
public function edit($input): bool;
}