vote up 0 vote down star

I am writing a webapp using CodeIgniter that requires authentication. I created a model which handles all my authentication. However, I can't find a way to access this authentication model from inside another model.

Is there a way to access a model from inside another model?

or

Is there a better way to handle authentication inside CodeIgniter?

flag

4 Answers

vote up 1 vote down check

In general, you don't want to create objects inside an object. That's a bad habit, instead, write a clear API and inject a model into your model.

<?php
// in your controller
$model1 = new Model1();
$model2 = new Model2();
$model2->setWhatever($model1);
?>
link|flag
Is this a good practice? Because the user of Model2 has to know, that it is dependent on Model1. What is the good practice? – Sabya Jan 20 at 15:25
Yes, better practice to "inject" the dependency, vs. initializing the Model2 inside Model1. – Till Jan 21 at 19:57
vote up 0 vote down

Don't handle authentication in your model. Only use models to interface with your database, or ldap or whatever.

I created an Auth library that I use to manage authentication and authorization. You can access a library like this from your controllers.

link|flag
vote up 0 vote down

It seems you can load models inside models, although you probably should solve this another way. See CodeIgniter forums for a discussion.

class SomeModel extends Model
{
  function doSomething($foo)
  {
    $CI =& get_instance();
    $CI->load->model('SomeOtherModel','NiceName',true);

    // use $CI instead of $this to query the other models
    $CI->NiceName->doSomethingElse();
  }
}

Also, I don't understand what Till is saying about that you shouldn't create objects inside objects. Of course you should! Sending objects as arguments looks much less clear to me.

link|flag
vote up 0 vote down

One of the key uses of the separation in MVC of the Model class from the Controller is to help abstract your database tables into well structures objects. If your designing a non-trivial data structure and want to use good OO code to represent it, your going to need to encapsulate objects inside of other objects. However, the Model class do not create an instance of the models you load like the controller class does. You have to manually instantiate a object of a model to use it. Here is an example how you should do this:

class StateModel extends Model
{ 
  private special_interest_group;

  function fleece_the_poor($tax_revenue)
  {
    $this->load->model('SpecialInterestModel');
    $this->special_interest_group = new SpecialInterestGroupModel();
    $this->special_interest_group->misappropriate_funds($tax_revenue);

  }
}

It will work to get a reference to the CI object and load a model into that object to access, but it's not the cleanest way to do it. In the above example, clearly a state has a powerful but secret special interest group--accessing and outside object to store this object would break encapsulation.

link|flag

Your Answer

Get an OpenID
or

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