123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430 |
- <?php
- namespace Juju;
- require_once('pdo.class.php');
- require_once('ORM/relationship.class.php');
- require_once('Data/securestring.class.php');
- use \Juju\{Data\SecureString, ORM\Relationship, PDO};
- abstract class ORM implements \ArrayAccess, \JsonSerializable {
- // Model definition
- protected static $table_name = null;
- protected static $primary_key = 'id';
- protected static $foreign_key_suffix = '_id';
- protected static $has_one = [];
- protected static $has_many = [];
- protected static $belongs_to = [];
- // Data tracking
- private $_data = [];
- private $_changed = [];
- private $_related = [];
- private static $aliases = [];
- private static $instances = [];
- protected static $pdo;
- protected static $table;
- // Magic functions
- protected function __construct($idOrData){
- if(!isset(self::$aliases[$this->name])){
- $aliases = [
- 'belongs_to' => [],
- 'has_one' => [],
- 'has_many' => []
- ];
- if(is_array(static::$belongs_to)){
- foreach(static::$belongs_to as $alias => $details){
- $aliases['belongs_to'][$alias] = array_merge(
- [
- 'model'=>$alias,
- 'parent_key'=>'id',
- 'foreign_key'=>$this->name.static::foreign_key_suffix()
- ],
- $details
- );
- }
- }
- if(is_array(static::$has_one)){
- foreach(static::$has_one as $alias => $details){
- $aliases['has_one'][$alias] = array_merge(
- [
- 'model'=>$alias,
- 'foreign_key'=>$alias.static::foreign_key_suffix()
- ],
- $details
- );
- }
- }
- if(is_array(static::$has_many)){
- foreach(static::$has_many as $alias => $details){
- $aliases['has_many'][$alias] = array_merge(
- [
- 'model'=>$alias,
- 'foreign_key'=>$this->name.static::foreign_key_suffix(),
- 'through'=> null
- ],
- $details
- );
- }
- }
- self::$aliases[$this->name] = $aliases;
- // Clear relationship definitions to save memory
- static::$belongs_to = static::$has_one = static::$has_many = null;
- }
- if(is_array($idOrData)){
- if(isset($idOrData[static::primary_key()]) && self::cached($idOrData[static::primary_key()])){
- throw new \Exception('Instance already cached');
- }
- foreach($idOrData as $key => $val){
- $this->set($key, $val);
- }
- }else{
- if(self::cached($idOrData)){
- throw new \Exception('Instance already cached');
- }
- $this->_data[static::primary_key()] = (int)$idOrData;
- }
- self::$instances[] = $this;
- }
- public function __destruct(){
- try{
- $this->__sleep();
- }catch(Exception $e){}
- $this->_changed = [];
- $this->_data = [];
- $this->_related = [];
- $key = array_search($this, self::$instances);
- if($key !== false){
- array_splice(self::$instances, $key, 1);
- }
- }
- public function __get(string $name){
- switch($name){
- case 'pdo':
- return static::pdo();
- case 'table':
- return static::table();
- case 'name':
- return static::table_name();
- case 'primary_key':
- return static::primary_key();
- case 'foreign_key_suffix':
- return static::foreign_key_suffix();
- case 'has_one':case 'has_many':case 'belongs_to':
- return self::$aliases[$this->name][$name];
- case 'id':
- $pk = static::primary_key();
- return $this->has($pk) ? $this->get($pk) : null;
- default:
- throw new \Exception('Unknown property '.$name);
- }
- }
- public function __set(string $name, $val){
- switch($name){
- case 'id':case 'name':
- throw new \Exception('Property '.$name.' is read only');
- break;
- default:
- throw new \Exception('Unknown property '.$name);
- }
- }
- public function __sleep(){
- $this->save();
- }
- public function __wakeup(){
- $this->reload(true);
- }
- public function __toString(){
- return $this->name.'('.$this->id.')';
- }
- public function __invoke(){
- return $this->_data;
- }
- public function __clone(){
- unset($this->$_data[static::primary_key()]);
- }
- // JsonSerializable
- public function jsonSerialize(){
- return $this->_data;
- }
- // ArrayAccess
- public function offsetSet($key, $val){
- $this->set($key, $val);
- }
- public function offsetExists($key){
- return $this->has($key);
- }
- public function offsetUnset($key){
- return $this->unset($key);
- }
- public function offsetGet($key){
- return $this->get($key);
- }
- // Main API
- public static function table_name(){
- if(is_null(static::$table_name)){
- $name = get_called_class();
- return substr($name, strrpos($name, '\\') + 1);
- }
- return static::$table_name;
- }
- public static function table(){
- if(is_null(static::$table) || static::$table->name !== static::table_name()){
- static::$table = self::$pdo->table(static::table_name());
- }
- return static::$table;
- }
- public static function primary_key(){
- return static::$primary_key;
- }
- public static function foreign_key_suffix(){
- return static::$foreign_key_suffix;
- }
- public static function bind($pdo){
- if(is_string($pdo)){
- $pdo = PDO::from($pdo);
- }
- if($pdo instanceof SecureString){
- $pdo = PDO::from((string)$pdo);
- }
- if($pdo instanceof PDO){
- self::$pdo = $pdo;
- // @todo handle updating live instances
- }else{
- throw new \Exception("Invalid argument. Must pass a DSN string or a PDO instance");
- }
- }
- public static function pdo(){
- return static::$pdo;
- }
- public static function query(...$args){
- return self::$pdo->query(...$args);
- }
- public static function exec(...$args){
- return self::$pdo->exec(...$args);
- }
- public static function prepare(...$args){
- return self::$pdo->prepare(...$args);
- }
- public static function quote(...$args){
- return self::$pdo->quote(...$args);
- }
- public static function instance($id){
- $instance = self::cached_instance($id);
- if(!is_null($instance)){
- return $instance;
- }elseif(self::exists($id)){
- return new static($id);
- }
- return null;
- }
- public static function create(array $data){
- return new static($data);
- }
- public static function exists(int $id){
- $query = self::query(
- "select count(1) as count ".
- "from `".static::table_name().'` '.
- "where `".static::primary_key()."` = ".self::quote($id)
- );
- $count = $query->fetch()['count'];
- $query->closeCursor();
- return (int)$count > 0;
- }
- public static function cached_instance($id){
- $name = static::table_name();
- if(isset(self::$instances[$name])){
- $instances = array_filter(self::$instances[$name], function(&$instance){
- return $instance->id === $id;
- });
- return isset($instances[0]) ? $instances[0] : null;
- }
- return null;
- }
- public static function cached($id){
- return !is_null(self::cached_instance($id));
- }
- public static function delete($id){
- return static::table()->delete([
- static::primary_key() => $id
- ]) > 0;
- }
- public static function each_cached(callable $fn){
- $name = static::table_name();
- if(self::$instances[$name]){
- array_walk(self::$instances[$name], $fn);
- }
- }
- public static function each(callable $fn, array $filter = null, int $start = null, int $amount = null){
- static::table()->each(function($row) use($fn){
- $fn(self::instance((int)$row['id']));
- }, [static::primary_key()], $filter, $start, $amount);
- }
- public static function fetch(array $filter = null, int $start = null, int $amount = null){
- $results = [];
- self::each(function($item) use(&$results){
- $results[] = $item;
- }, $filter, $start, $amount);
- return $results;
- }
- public static function str_replace_first($search, $replace, $source) {
- $explode = explode($search, $source);
- $shift = array_shift($explode);
- $implode = implode($search, $explode);
- return $shift.$replace.$implode;
- }
- public static function models(){
- array_filter(get_declared_classes(), function($class){
- return 0 === strpos($class, "Model\\");
- });
- }
- public static function count(array $filter = null){
- return static::table()->count($filter);
- }
- // Instance Api
- public function values($values){
- foreach($values as $key => $val){
- $this->set($key, $val);
- }
- return $this;
- }
- public function load(bool $force = false){
- if(!$force && $this->dirty()){
- throw new \Exception('Cannot load, there are pending changes');
- }else{
- if(!is_null($this->id)){
- $query = self::query(
- "select * " .
- "from {$this->name} ".
- "where ".static::primary_key()." = ".self::quote($this->id)
- );
- $data = $query->fetch();
- $query->closeCursor();
- if($data === false){
- throw new \Exception("{$this->name} with ".static::primary_key()." of {$this->id} does not exist");
- }
- $this->_data = $data;
- }
- }
- return $this;
- }
- public function save(){
- if($this->dirty()){
- $data = [];
- foreach($this->_changed as $key){
- if(isset($this->_data[$key]) || is_null($this->_data[$key])){
- $data[$key] = $this->_data[$key];
- }else{
- $data[$key] = null;
- }
- }
- $pk = static::primary_key();
- $table = static::table();
- if($this->has($pk) && !is_null($this->id) && !in_array($pk, $this->_changed)){
- if($table->update($data, [
- $pk => $this->id
- ]) === 0){
- trigger_error("Save of {$this->name} may have failed. No affected rows.", E_USER_WARNING);
- }
- }else{
- if($table->insert($data) === 0){
- trigger_error("First save of {$this->name} may have failed. No affected rows.", E_USER_WARNING);
- }
- $this->_data[$pk] = self::$pdo->lastInsertId();
- if($this->_data[$pk] === 0){
- trigger_error("First save of {$this->name} may have failed. PK is 0", E_USER_WARNING);
- }
- }
- foreach($this->_related as $related){
- $related->save();
- }
- }
- // Always fetch again from the database in case saving
- // forces something to change at the database level
- return $this->reload(true);
- }
- public function reload(bool $force = false){
- if($force){
- $this->_changed = [];
- }
- return $this->load($force);
- }
- public function clear(){
- return $this->reload(true);
- }
- public function get($key){
- return $this->_data[$key];
- }
- public function set($key, $val){
- if($key === static::primary_key() && !is_null($this->id)){
- throw new \Exception('You are not allowed to change the primary key');
- }
- $this->_data[$key] = $val;
- $this->_changed = array_merge($this->_changed, [$key]);
- return $this;
- }
- public function unset($key){
- unset($this->_data[$key]);
- return $this;
- }
- public function has($key){
- return isset($this->_data[$key]);
- }
- public function dirty(string $key = null){
- if(is_null($key)){
- $dirty = count($this->_changed) > 0;
- if(!$dirty){
- foreach($this->_related as $rel){
- if($rel instanceof Relationship){
- $dirty = $rel->dirty();
- }
- if($dirty){
- break;
- }
- }
- }
- return $dirty;
- }else{
- return in_array($key, $this->_changed);
- }
- }
- public function related(string $name){
- if(!isset($this->_related[$name])){
- $aliases = self::$aliases[$this->name];
- if(isset($aliases['belongs_to'][$name])){
- $alias = $aliases['belongs_to'][$name];
- $class = "\\Model\\{$alias['model']}";
- $this->_related[$name] = $class::fetch([$alias['parent_key'] => $this->get($alias['foreign_key'])])[0];
- }elseif(isset($aliases['has_one'][$name])){
- $alias = $aliases['has_many'][$name];
- $class = "\\Model\\{$alias['model']}";
- $this->_related[$name] = $class::instance($this[$alias['foreign_key']]);
- }elseif(isset($aliases['has_many'][$name])){
- $alias = $aliases['has_many'][$name];
- $class = "\\Model\\{$alias['model']}";
- $sql = "select ";
- if($alias['through']){
- $sql .= $class::table_name().$class::foreign_key_suffix()." id from {$alias['through']} ";
- }else{
- $sql .= $class::primary_key()." id from {$alias['model']} ";
- }
- $sql .= "where ".$alias['foreign_key']." = ".self::quote($this->id);
- $related = [];
- $query = self::query($sql);
- foreach($query->fetchAll() as $row){
- $related[$row['id']] = new $class($row['id']);
- }
- $query->closeCursor();
- $this->_related[$name] = Relationship::from($this, $name, $alias, $related);
- }
- }
- if(isset($this->_related[$name])){
- return $this->_related[$name];
- }else{
- throw new \Exception("Relationship {$name} does not exist");
- }
- }
- public function release(string $name){
- if(isset($this->_related[$name])){
- unset($this->_related[$name]);
- }
- }
- }
- ?>
|