0

我正在使用 Phinx 跨多个服务器上的 100 个应用程序执行迁移。每个应用程序都应该执行相同的迁移。

为了做到这一点,中央服务器上有一个应用程序实例,它知道执行引导过程所需的所有配置和其他信息(基于 applicationId 完成)。

该中央实例(我们称之为adminapp)执行命令并通过 STDIN 接收 applicationIds,然后执行一个引导应用程序并运行迁移命令的循环。

<?php
namespace Command\Db;

use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
use App\Command\AppCommand;

class MigrateBulkCommand extends AppCommand
{

    protected function configure()
    {
        $this
            ->setName('command:blah')
            ->setDescription('Executes SQL migrations accross multiple applications. Expects ApplicationIDs to be passed as new line delimited string on STDIN.')
        ;
    }

    protected function execute(InputInterface $input, OutputInterface $output)
    {
        $stdin = $this->getStdin();
        if ($stdin === false) {
             throw new \RuntimeException("Bulk migration command requires applicationIds to be passed to STDIN.");
        }
        $applicationIds = explode("\n", $stdin);

        foreach($applicationIds as $applicationId) {
            try {
                $this->bootstrap($applicationId);
            } catch (\Exception $e) {
                $output->writeln(sprintf("<error>Bootstrap process failed for applicationId `%s`</error>", $applicationId));
            }
            $command = new \Phinx\Console\Command\Migrate();
            $migrationInput = new \Symfony\Component\Console\Input\ArrayInput([

            ]);
            $returnCode = $command->run($migrationInput, $output);
            $output->writeln(sprinf("<info>Migrations for applicationId `%s` executed successfully.</info>", $applicationId));
        }
    }

}

现在 Phinx 期望它的配置以配置文件的形式出现。我要做的是重用数据库连接资源(PDO)并将其Phinx\Console\Command\Migrate与数据库名称一起即时传递给 Phinx 命令。

我在 Phinx 文档中看到这是 PHP 配置文件的一个选项,但我找不到动态执行此操作的方法(在Phinx\Console\Command\Migrate类初始化期间)。

Phinx 文档建议:

require 'app/init.php';

global $app;
$pdo = $app->getDatabase()->getPdo();

return array('environments' =>
         array(
           'default_database' => 'development',
           'development' => array(
             'name' => 'devdb',
             'connection' => $pdo
           )
         )
       );

有没有办法,没有可怕的黑客攻击将 PDO 连接资源和数据库名称传递给\Phinx\Console\Command\Migrate

4

1 回答 1

0

我最终扩展了 Phinx Config 类\Phinx\Config\Config并创建了方法fromArray

$command = new \Phinx\Console\Command\Migrate();
$command->setConfig(\MyNamespace\Config::fromArray(
    [
        'paths' => [
            'migrations' => APPLICATION_PATH . "/../db/migrations",
            'seeds' => APPLICATION_PATH . "/../db/seeds"
        ],
        'environments' => [
            'default_database' => 'production',
            'production' => [
                'name' => $db->get('dbname'),
                'adapter' => 'mysql',
                'host' => $db->get('host'),
                'port' => $db->get('port'),
                'user' => $db->get('username'),
                'pass' => $db->get('password'),
            ]
        ]
    ]
));
于 2016-10-13T09:45:10.787 回答