ReservedWordsCommand.php 4.86 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
<?php
/*
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 *
 * This software consists of voluntary contributions made by many individuals
Benjamin Eberlei's avatar
Benjamin Eberlei committed
16
 * and is licensed under the MIT license. For more information, see
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
 * <http://www.doctrine-project.org>.
 */


namespace Doctrine\DBAL\Tools\Console\Command;

use Symfony\Component\Console\Input\InputArgument,
    Symfony\Component\Console\Input\InputOption,
    Symfony\Component\Console\Command\Command,
    Symfony\Component\Console\Input\InputInterface,
    Symfony\Component\Console\Output\OutputInterface;
use Doctrine\DBAL\Platforms\Keywords\ReservedKeywordsValidator;

class ReservedWordsCommand extends Command
{
    private $keywordListClasses = array(
        'mysql'     => 'Doctrine\DBAL\Platforms\Keywords\MySQLKeywords',
        'mssql'     => 'Doctrine\DBAL\Platforms\Keywords\MsSQLKeywords',
        'sqlite'    => 'Doctrine\DBAL\Platforms\Keywords\SQLiteKeywords',
        'pgsql'     => 'Doctrine\DBAL\Platforms\Keywords\PostgreSQLKeywords',
        'oracle'    => 'Doctrine\DBAL\Platforms\Keywords\OracleKeywords',
        'db2'       => 'Doctrine\DBAL\Platforms\Keywords\DB2Keywords',
    );
40

41 42
    /**
     * If you want to add or replace a keywords list use this command
43
     *
44
     * @param string $name
45
     * @param string $class
46 47 48 49 50
     */
    public function setKeywordListClass($name, $class)
    {
        $this->keywordListClasses[$name] = $class;
    }
51

52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
    /**
     * @see Console\Command\Command
     */
    protected function configure()
    {
        $this
        ->setName('dbal:reserved-words')
        ->setDescription('Checks if the current database contains identifiers that are reserved.')
        ->setDefinition(array(
            new InputOption(
                'list', 'l', InputOption::VALUE_OPTIONAL | InputOption::VALUE_IS_ARRAY, 'Keyword-List name.'
            )
        ))
        ->setHelp(<<<EOT
Checks if the current database contains tables and columns
with names that are identifiers in this dialect or in other SQL dialects.

By default SQLite, MySQL, PostgreSQL, MsSQL and Oracle
keywords are checked:

72
    <info>%command.full_name%</info>
73

74 75 76
If you want to check against specific dialects you can
pass them to the command:

77
    <info>%command.full_name% mysql pgsql</info>
78

79 80 81 82 83 84 85 86 87 88 89
The following keyword lists are currently shipped with Doctrine:

    * mysql
    * pgsql
    * sqlite
    * oracle
    * mssql
    * db2 (Not checked by default)
EOT
        );
    }
90

91 92 93 94 95
    /**
     * @see Console\Command\Command
     */
    protected function execute(InputInterface $input, OutputInterface $output)
    {
96
        /* @var $conn \Doctrine\DBAL\Connection */
97
        $conn = $this->getHelper('db')->getConnection();
98

99
        $keywordLists = (array)$input->getOption('list');
100
        if ( ! $keywordLists) {
101 102
            $keywordLists = array('mysql', 'pgsql', 'sqlite', 'oracle', 'mssql');
        }
103

104
        $keywords = array();
105
        foreach ($keywordLists as $keywordList) {
106 107 108 109 110 111 112 113 114
            if (!isset($this->keywordListClasses[$keywordList])) {
                throw new \InvalidArgumentException(
                    "There exists no keyword list with name '" . $keywordList . "'. ".
                    "Known lists: " . implode(", ", array_keys($this->keywordListClasses))
                );
            }
            $class = $this->keywordListClasses[$keywordList];
            $keywords[] = new $class;
        }
115

116
        $output->write('Checking keyword violations for <comment>' . implode(", ", $keywordLists) . "</comment>...", true);
117

118 119 120 121
        /* @var $schema \Doctrine\DBAL\Schema\Schema */
        $schema = $conn->getSchemaManager()->createSchema();
        $visitor = new ReservedKeywordsValidator($keywords);
        $schema->visit($visitor);
122

123 124 125 126 127
        $violations = $visitor->getViolations();
        if (count($violations) == 0) {
            $output->write("No reserved keywords violations have been found!", true);
        } else {
            $output->write('There are <error>' . count($violations) . '</error> reserved keyword violations in your database schema:', true);
128
            foreach ($violations as $violation) {
129 130
                $output->write('  - ' . $violation, true);
            }
131 132

            return 1;
133 134 135
        }
    }
}