Rajout de doctrine/orm
[zf2.biz/galerie.git] / vendor / doctrine / orm / lib / Doctrine / ORM / Tools / Console / Command / EnsureProductionSettingsCommand.php
1 <?php
2 /*
3  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
4  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
5  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
6  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
7  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
8  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
9  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
10  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
11  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
12  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
13  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
14  *
15  * This software consists of voluntary contributions made by many individuals
16  * and is licensed under the MIT license. For more information, see
17  * <http://www.doctrine-project.org>.
18  */
19
20 namespace Doctrine\ORM\Tools\Console\Command;
21
22 use Symfony\Component\Console\Input\InputArgument,
23     Symfony\Component\Console\Input\InputOption,
24     Symfony\Component\Console;
25
26 /**
27  * Command to ensure that Doctrine is properly configured for a production environment.
28  *
29  * 
30  * @link    www.doctrine-project.org
31  * @since   2.0
32  * @version $Revision$
33  * @author  Benjamin Eberlei <kontakt@beberlei.de>
34  * @author  Guilherme Blanco <guilhermeblanco@hotmail.com>
35  * @author  Jonathan Wage <jonwage@gmail.com>
36  * @author  Roman Borschel <roman@code-factory.org>
37  */
38 class EnsureProductionSettingsCommand extends Console\Command\Command
39 {
40     /**
41      * @see Console\Command\Command
42      */
43     protected function configure()
44     {
45         $this
46         ->setName('orm:ensure-production-settings')
47         ->setDescription('Verify that Doctrine is properly configured for a production environment.')
48         ->setDefinition(array(
49             new InputOption(
50                 'complete', null, InputOption::VALUE_NONE,
51                 'Flag to also inspect database connection existance.'
52             )
53         ))
54         ->setHelp(<<<EOT
55 Verify that Doctrine is properly configured for a production environment.
56 EOT
57         );
58     }
59
60     /**
61      * @see Console\Command\Command
62      */
63     protected function execute(Console\Input\InputInterface $input, Console\Output\OutputInterface $output)
64     {
65         $em = $this->getHelper('em')->getEntityManager();
66
67         $error = false;
68         try {
69             $em->getConfiguration()->ensureProductionSettings();
70
71             if ($input->getOption('complete') !== null) {
72                 $em->getConnection()->connect();
73             }
74         } catch (\Exception $e) {
75             $error = true;
76             $output->writeln('<error>' . $e->getMessage() . '</error>');
77         }
78
79         if ($error === false) {
80             $output->write('<info>Environment is correctly configured for production.</info>' . PHP_EOL);
81         }
82     }
83 }