ReservedWordsCommand.php 6.26 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
 * <http://www.doctrine-project.org>.
 */

namespace Doctrine\DBAL\Tools\Console\Command;

22
use Doctrine\DBAL\Platforms\Keywords\ReservedKeywordsValidator;
Benjamin Morel's avatar
Benjamin Morel committed
23 24
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Input\InputInterface;
25
use Symfony\Component\Console\Input\InputOption;
Benjamin Morel's avatar
Benjamin Morel committed
26
use Symfony\Component\Console\Output\OutputInterface;
27 28 29

class ReservedWordsCommand extends Command
{
Benjamin Morel's avatar
Benjamin Morel committed
30 31 32
    /**
     * @var array
     */
33
    private $keywordListClasses = [
34
        'mysql'         => 'Doctrine\DBAL\Platforms\Keywords\MySQLKeywords',
35
        'mysql57'       => 'Doctrine\DBAL\Platforms\Keywords\MySQL57Keywords',
36 37 38 39 40 41
        'sqlserver'     => 'Doctrine\DBAL\Platforms\Keywords\SQLServerKeywords',
        'sqlserver2005' => 'Doctrine\DBAL\Platforms\Keywords\SQLServer2005Keywords',
        'sqlserver2008' => 'Doctrine\DBAL\Platforms\Keywords\SQLServer2008Keywords',
        'sqlserver2012' => 'Doctrine\DBAL\Platforms\Keywords\SQLServer2012Keywords',
        'sqlite'        => 'Doctrine\DBAL\Platforms\Keywords\SQLiteKeywords',
        'pgsql'         => 'Doctrine\DBAL\Platforms\Keywords\PostgreSQLKeywords',
42
        'pgsql91'       => 'Doctrine\DBAL\Platforms\Keywords\PostgreSQL91Keywords',
43
        'pgsql92'       => 'Doctrine\DBAL\Platforms\Keywords\PostgreSQL92Keywords',
44 45
        'oracle'        => 'Doctrine\DBAL\Platforms\Keywords\OracleKeywords',
        'db2'           => 'Doctrine\DBAL\Platforms\Keywords\DB2Keywords',
46 47
        'sqlanywhere'   => 'Doctrine\DBAL\Platforms\Keywords\SQLAnywhereKeywords',
        'sqlanywhere11' => 'Doctrine\DBAL\Platforms\Keywords\SQLAnywhere11Keywords',
48 49
        'sqlanywhere12' => 'Doctrine\DBAL\Platforms\Keywords\SQLAnywhere12Keywords',
        'sqlanywhere16' => 'Doctrine\DBAL\Platforms\Keywords\SQLAnywhere16Keywords',
50
    ];
51

52
    /**
Benjamin Morel's avatar
Benjamin Morel committed
53
     * If you want to add or replace a keywords list use this command.
54
     *
55
     * @param string $name
56
     * @param string $class
Benjamin Morel's avatar
Benjamin Morel committed
57 58
     *
     * @return void
59 60 61 62 63
     */
    public function setKeywordListClass($name, $class)
    {
        $this->keywordListClasses[$name] = $class;
    }
64

65
    /**
Benjamin Morel's avatar
Benjamin Morel committed
66
     * {@inheritdoc}
67 68 69 70 71 72
     */
    protected function configure()
    {
        $this
        ->setName('dbal:reserved-words')
        ->setDescription('Checks if the current database contains identifiers that are reserved.')
73
        ->setDefinition([
74 75 76
            new InputOption(
                'list', 'l', InputOption::VALUE_OPTIONAL | InputOption::VALUE_IS_ARRAY, 'Keyword-List name.'
            )
77
        ])
78 79 80 81
        ->setHelp(<<<EOT
Checks if the current database contains tables and columns
with names that are identifiers in this dialect or in other SQL dialects.

82 83
By default SQLite, MySQL, PostgreSQL, Microsoft SQL Server, Oracle
and SQL Anywhere keywords are checked:
84

85
    <info>%command.full_name%</info>
86

87 88 89
If you want to check against specific dialects you can
pass them to the command:

90
    <info>%command.full_name% -l mysql -l pgsql</info>
91

92 93 94
The following keyword lists are currently shipped with Doctrine:

    * mysql
95
    * mysql57
96
    * pgsql
97
    * pgsql92
98 99
    * sqlite
    * oracle
100
    * sqlserver
101 102 103
    * sqlserver2005
    * sqlserver2008
    * sqlserver2012
104 105 106
    * sqlanywhere
    * sqlanywhere11
    * sqlanywhere12
107
    * sqlanywhere16
108 109 110 111
    * db2 (Not checked by default)
EOT
        );
    }
112

113
    /**
Benjamin Morel's avatar
Benjamin Morel committed
114
     * {@inheritdoc}
115 116 117
     */
    protected function execute(InputInterface $input, OutputInterface $output)
    {
118
        /* @var $conn \Doctrine\DBAL\Connection */
119
        $conn = $this->getHelper('db')->getConnection();
120

121
        $keywordLists = (array) $input->getOption('list');
122
        if ( ! $keywordLists) {
123
            $keywordLists = [
124
                'mysql',
125
                'mysql57',
126
                'pgsql',
127
                'pgsql92',
128 129 130 131 132
                'sqlite',
                'oracle',
                'sqlserver',
                'sqlserver2005',
                'sqlserver2008',
133 134 135
                'sqlserver2012',
                'sqlanywhere',
                'sqlanywhere11',
136
                'sqlanywhere12',
137
                'sqlanywhere16',
138
            ];
139
        }
140

141
        $keywords = [];
142
        foreach ($keywordLists as $keywordList) {
143 144 145 146 147 148 149 150 151
            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;
        }
152

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

155 156 157 158
        /* @var $schema \Doctrine\DBAL\Schema\Schema */
        $schema = $conn->getSchemaManager()->createSchema();
        $visitor = new ReservedKeywordsValidator($keywords);
        $schema->visit($visitor);
159

160 161 162 163 164
        $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);
165
            foreach ($violations as $violation) {
166 167
                $output->write('  - ' . $violation, true);
            }
168 169

            return 1;
170
        }
171 172

        return 0;
173 174
    }
}