Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a Favorite Model linked to my User Model. His relation is done with HasMany. So i can retrieve all the Favorites from any user like this.

[User] => Array
    (
        [id] => 60
        [username] => username
        [email] => xxxxxx@gmail.com
    )
[Favorite] => Array
    (
        [0] => Array
            (
                [id] => 7
                [book_id] => 15
                [user_id] => 60
                [position] => 1
                [created] => 2012-08-08 04:08:54
            )

        [1] => Array
            (
                [id] => 6
                [book_id] => 17
                [user_id] => 60
                [position] => 1
                [created] => 2012-07-26 04:08:32
            )

    )

But this Result doesnt show me all the Book data and related objects. so i i decided to find them with a find('all') giving the list of ids ([15,16 ....]). The only problem is that its not linked to my order on Favorite.created DESC. It retrieve me the Books Items in another order.

my query actually, look like:

    $result = $this->User->findById($id);
    $conditions = array('Book.id' => Set::extract($result, 'Favorite.{n}.book_id'));
    $favorites = $this->Book->find('all', array('conditions' => $conditions));

Any idea how i can change my model relation? or my query in cakephp?

share|improve this question
Posting your current query would be a good start ;) – Hoff Aug 9 '12 at 22:52
OK i update my question – user784083 Aug 10 '12 at 0:57

1 Answer

You need to create a Join between your Book Model and your Favorite Model. In your case you can use BindModel to create the Join. Here in my example, i used 'hasOne' cause Cakephp doesnt make Joins with hasMany, only with hasOne and BelongsTo.

    $this->Book->bindModel(array('hasOne' => array(
                                    'Favorite' => array(
                                        'className' => 'Favorite'))));
    $id = $this->Auth->user('id');
    $data = $this->Book->find('all', array(
            'conditions' => array('Favorite.user_id' => $id),
            'order' => array('Favorite.created' => 'DESC')));

That's all.

share|improve this answer
What I understood is "There should be HABTM relationship between Book and Favorite Model class. Not hasOne." What you suggest? – PHP Developer Aug 10 '12 at 4:23
In this case Book have only one favorite from a specific user. – papachan Aug 10 '12 at 13:43
IF i use HABTM i dont have all the data i need to show. This solution serves me. thanks – user784083 Aug 11 '12 at 1:02

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.