Skip to content

Instantly share code, notes, and snippets.

@nateabele
Created September 19, 2012 21:53
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save nateabele/3752547 to your computer and use it in GitHub Desktop.
Save nateabele/3752547 to your computer and use it in GitHub Desktop.
MongoDB-based model accessors (relationships) in Lithium
<?php
namespace my_app\models;
use MongoId;
use lithium\data\collection\DocumentArray;
use lithium\data\collection\DocumentSet;
use lithium\data\entity\Document;
use lithium\util\Inflector;
use lithium\core\Libraries;
use lithium\util\Set;
class Base extends \lithium\data\Model {
protected function _accessor($entity, $key, $model, array $options = array()) {
$defaults = array('find' => 'first', 'key' => '_id');
$options += $defaults;
$find = $options['find'];
$model = Libraries::locate('models', $model);
$query = array_diff_key($options, $defaults);
if (!$entity->{$key}) {
return;
}
$val = $entity->{$key};
if ($val instanceof DocumentArray || $val instanceof Document) {
$val = $val->data();
}
if ($val instanceof MongoId || is_string($val) || is_array($val)) {
$conditions = array($options['key'] => $val);
return $model::$find(Set::merge(compact('conditions'), $query));
}
}
}
?>
<?php
namespace my_app\models;
class Comments extends Base {
protected $_schema = array(
'post' => array('type' => 'id')
);
public function post($comment) {
return $this->_accessor($comment, __FUNCTION__, 'Posts', array('find' => 'all'));
}
}
?>
<?php
namespace my_app\models;
class Posts extends Base {
protected $_schema = array(
'author' => array('type' => 'id')
);
public function author($post) {
return $this->_accessor($post, __FUNCTION__, 'Users');
}
/**
* Note: realistically, you'd want comments to be an embedded array, this is just an example.
*/
public function comments($post) {
return $this->_accessor($post, __FUNCTION__, 'Comments', array('find' => 'all'));
}
}
?>
<?php
use my_app\models\Posts;
$post = Posts::first();
$author = $post->author();
$comments = $post->comments();
// $post == $comments->first()->post();
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment