1

使用 CakePHP 版本:2.3.1

我有一个用于授权的默认数据库,并基于此,为不同的客户端提供不同的数据库(数据库名称中包含客户端名称)。

我有许多模型,它们之间有各种关系。我想使用一次调用来检索它们(递归检索所有关联的模型数据)。

设想:

数据库

default :
clients 
[id, password, name]
[1, 'qwertycolemak', 'amazon']
[2, '5t4ck0verfl0w', 'ebay']

非默认数据库(下 2)

client_amazon
students[student_id, student_name]
course_students [student_id, course_id]
courses [course_id, course_name]

client_ebay
(same as client_amazon)

现在,假设我收到 [id:2, password:'5t4ck0verfl0w'] 的请求,我检查默认数据库(客户端),检查密码,检索名称,在本例中为ebay

现在,我要访问的数据库是“client_ebay”

我在 database.php 中有与每个客户端相对应的不同配置。我尝试通过使用更改数据源

$this->student->setDatasource('client_ebay')
$this->course->setDatasource('client_ebay')
$this->course_student->setDatasource('client_ebay')

这适用于对模型的单个 CRUD 调用(非递归)。

但是当我使用一个调用(使用递归)时

$this->student->findById(5)

数据源默认为“默认”,我收到一个错误:在数据源默认中找不到模型学生
的表学生

如何通过控制器动态更改所有模型的默认数据源(不是一一)?

4

3 回答 3

2

模型层对从返回的对象执行所有 DB 操作Model::getDataSource(),因此在您的类中覆盖该方法AppModel并在必要时在其中设置适当的数据源可能是一种选择。

这是一个(未经测试的)示例,这会将数据源设置为Model.globalSource必要时配置的任何内容(并且如果设置了值)。只要可以调用 ,就可以更改该值Configure::write()

...

class AppModel extends Model
{
    ...

    public function getDataSource()
    {
        $source = Configure::read('Model.globalSource');
        if($source !== null && $source !== $this->useDbConfig)
        {
            $this->setDataSource($source);
        }

        return parent::getDataSource();
    }

    ...
}

在您的控制器中,您可以执行类似的操作

Configure::write('Model.globalSource', 'client_ebay');
$student = $this->Student->findById(5);
于 2013-10-21T16:34:51.603 回答
0

控制器中的示例,在 CakePHP 2.5.x 中为数据源更改多数据库

App::uses('AppController', 'Controller');

class DemoController extends AppController {

public $uses = array('AppModel', 'GVA21', 'GVA01', 'GVA14', 'GVA24' );
public function test_dbs(){
    $this->autoRender=false;
    // Load ConnectManager
    App::uses('ConnectionManager', 'Model');
    // DataSource ['default']
    $MDM = $this->GVA14->find('count');
    echo "MDM.GVA14\n<br>";
    debug($MDM);
    // Get DataSource Config DB ['default'] and ['SRL']
    $confDeafult = ConnectionManager::$config->default;
    $confSrl = ConnectionManager::$config->SRL;
    // Change DataSource ['SRL']
    ConnectionManager::drop('default');
    ConnectionManager::create('default',$confSrl);  //<== Is permanet change Find All models Down
    // $this->GVA01->setDataSource('SRL'); //<== Is temp change Find model
    echo "SRL.GVA14\n<br>";
    $SRL = $this->GVA14->find('count');
    debug($SRL);
    $SRL = $this->GVA01->find('count');
    echo "SRL.GVA01\n<br>";
    debug($SRL);
    $SRL = $this->GVA21->find('count');
    echo "SRL.GVA21\n<br>";
    debug($SRL);
    // Change to DataSource ['default']
    debug(ConnectionManager::drop('default'));
    ConnectionManager::create('default',$confDeafult); //<== Is permanet change Find All models Down
    //$this->GVA01->setDataSource('default'); //<== Is temp change Find model
    $MDM = $this->GVA01->find('count');
    echo "MDM.GVA01\n<br>";
    debug($MDM);
    $MDM = $this->GVA21->find('count');
    echo "MDM.GVA21\n<br>";
    debug($MDM);
    ////FIN
    exit('FIN');
}
于 2014-10-31T00:55:44.900 回答
0

您是否尝试过修改 Model 的 $useDbConfig 属性?例如:

$this->Student->useDbConfig = 'client_ebay';
于 2013-10-21T15:52:50.443 回答