I'm trying to set up a separate database for special set of users who will access my site through a Yii module, but I can't quite seem to get the configuration right.
Here are the relevant files my module heirarchy.
/protected/modules/special
/protected/modules/special/SpecialModule.php
/protected/modules/special/models/SpecialActiveRecord.php
/protected/modules/special/models/Account.php
/protected/modules/special/components/UserIdentity.php
Per instructions here, I've updated my main.config to include a module specific database definition.
'modules'=>array(
'special'=>array(
'db'=>array(
'connectionString'=>'mysql:dbname=specialdatabase',
'username'=>'special',
'password'=>'special',
),
),
),
I have also updated my module to support the database definition by adding public $db to SpecialModule.php and I have created a module specific active record that utilizes the database definition.
class SpecialActiveRecord extends CActiveRecord
{
public function getDbConnection()
{
$db = Yii::app()->controller->module->db;
return Yii::createComponent($db);
}
}
Where I'm having trouble is in the account model. My primary web application also implements an account model and the stack trace shows that the module is accessing all of my module specific files through user identity (/protected/modules/special/components/UserIdentity.php). The account model that is being used for authorization, however, is referenced at the site level (/protected/models/Account.php).
Any ideas on the proper way to implement module specific authentication using a module specific database?