Symfony - 重置数据库的最佳实践

Symfony - Best practice to reset the database

我正在开发一个 Symfony 4.2 项目,我正在寻找最佳实践来在管理员需要通过后台按钮进行重置时实现数据库重置。

解释:

该项目是一个临时活动网站。 这意味着,人们只会访问网站一天/一周,然后网站就会关闭。例如,篮球比赛期间观众进入体育场的网站。

比赛结束后,管理员希望通过按钮重置比赛期间发送的所有数据。

现在我是这样做的,但我不知道在生产环境中它是否是更好的方法。

我创建了一个在构造函数中获取 KernelInterface 的服务:

public function resetDB() {

    $application = new Application($this->kernel);
    $application->setAutoExit(false);

    $input = new ArrayInput([
        'command'   => 'doctrine:schema:drop',
        '--force' => true
    ]);

    $output = new BufferedOutput();
    $application->run($input, $output);

    $responseDrop = $output->fetch();

    if (strpos($responseDrop, 'successfully') !== false) {
        $input = new ArrayInput([
            'command'   => 'doctrine:schema:create',
        ]);

        $application->run($input, $output);

        $responseCreate = $output->fetch();

        if (strpos($responseCreate, 'successfully') !== false)
            return new Response();
    }

    return new \ErrorException();
}

首先,在生产环境中这样做好吗? (管理员做这个操作的时候不会用到其他人的网站)

其次,我对我用来检查操作是否成功完成的方法不太满意(strpos($responseCreate, 'successfully') !== false)。有人知道更好的方法吗?

非常感谢您的帮助

如果它适合你,没关系。关于 "successful" 检查部分。只需将您的调用包围在 try-catch 块中并检查异常。如果没有抛出异常,则假设它确实执行成功。

$application = new Application($this->kernel);
$application->setAutoExit(false);

try {
    $application->run(
        new StringInput('doctrine:schema:drop --force'),
        new DummyOutput()
    );

    $application->run(
        new StringInput('doctrine:schema:create'),
        new DummyOutput()
    );

    return new Response();
} catch (\Exception $exception) {
    // don't throw exceptions, use proper responses
    // or do whatever you want

    return new Response('', Response::HTTP_INTERNAL_SERVER_ERROR);
}

PostgreSQL 在 DDL 事务方面足够好吗?然后强制交易:

$application = new Application($this->kernel);
$application->setAutoExit(false);

// in case of any SQL error
// an exception will be thrown
$this->entityManager->transactional(function () use ($application) {
    $application->run(
        new StringInput('doctrine:schema:drop --force'),
        new DummyOutput()
    );

    $application->run(
        new StringInput('doctrine:schema:create'),
        new DummyOutput()
    );
});

return new Response();

我不确定您执行命令的方式,但可以考虑使用 DoctrineFixturesBundle 的单个命令替代方案。您需要安装它才能在生产环境中使用(技术上不推荐,我认为是因为有删除产品数据的风险,但这就是您想要做的)。

安装:

$ composer require doctrine/doctrine-fixtures-bundle

配置:

// config/bundles.php

return [
  ...
  Doctrine\Bundle\FixturesBundle\DoctrineFixturesBundle::class => ['all' => true],
  ...
];

你确实需要 create a fixture 并且它必须有一个 load() 与 Doctrine\Common\DataFixtures\FixtureInterface::load(Doctrine\Common\Persistence\ObjectManager $manager) 兼容的方法,但它可以完全如下所示为空:

<?php // src/DataFixtures/AppFixtures.php

namespace App\DataFixtures;

use Doctrine\Bundle\FixturesBundle\Fixture;
use Doctrine\Common\Persistence\ObjectManager;

class AppFixtures extends Fixture
{
  public function load(ObjectManager $manager){}
}

命令:

$ php bin/console doctrine:fixtures:load -n --purge-with-truncate  --env=prod

帮助:

$ php bin/console doctrine:fixtures:load --help

Firstly, is it good to do it like this in a production environment ?

我不这么认为! 例如,下面的命令会警告您:[CAUTION] This operation should not be executed in a production environment!。然而,在疯狂的编程世界中,一切皆有可能,如下所示。

试试 Symfony 的 The Process Component

这是基本示例,因此您可以自行决定是否使其更清晰和无重复。我测试过并且有效。您也可以流式传输输出。

# DROP IT
$process = new Process(
    ['/absolute/path/to/project/bin/console', 'doctrine:schema:drop', '--force', '--no-interaction']
);
$process->run();
if (!$process->isSuccessful()) {
    throw new ProcessFailedException($process);
}

# RECREATE IT    
$process = new Process(
    ['/absolute/path/to/project/bin/console', 'doctrine:schema:update', '--force', '--no-interaction']
);
$process->run();
if (!$process->isSuccessful()) {
    throw new ProcessFailedException($process);
}