123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565 |
- <?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
- * and is licensed under the LGPL. For more information, see
- * <http://www.doctrine-project.org>.
- */
- namespace Doctrine\DBAL\Migrations\Configuration;
- use Doctrine\DBAL\Connection,
- Doctrine\DBAL\Migrations\MigrationException,
- Doctrine\DBAL\Migrations\Version,
- Doctrine\DBAL\Migrations\OutputWriter,
- Doctrine\DBAL\Schema\Table,
- Doctrine\DBAL\Schema\Column,
- Doctrine\DBAL\Types\Type;
- /**
- * Default Migration Configurtion object used for configuring an instance of
- * the Migration class. Set the connection, version table name, register migration
- * classes/versions, etc.
- *
- * @license http://www.opensource.org/licenses/lgpl-license.php LGPL
- * @link www.doctrine-project.org
- * @since 2.0
- * @author Jonathan H. Wage <jonwage@gmail.com>
- */
- class Configuration
- {
- /**
- * Name of this set of migrations
- *
- * @var string
- */
- private $name;
- /**
- * Flag for whether or not the migration table has been created
- *
- * @var boolean
- */
- private $migrationTableCreated = false;
- /**
- * Connection instance to use for migrations
- *
- * @var Connection
- */
- private $connection;
- /**
- * OutputWriter instance for writing output during migrations
- *
- * @var OutputWriter
- */
- private $outputWriter;
- /**
- * The migration table name to track versions in
- *
- * @var string
- */
- private $migrationsTableName = 'doctrine_migration_versions';
- /**
- * The path to a directory where new migration classes will be written
- *
- * @var string
- */
- private $migrationsDirectory;
- /**
- * Namespace the migration classes live in
- *
- * @var string
- */
- private $migrationsNamespace;
- /**
- * Array of the registered migrations
- *
- * @var Version[]
- */
- private $migrations = array();
- /**
- * Construct a migration configuration object.
- *
- * @param Connection $connection A Connection instance
- * @param OutputWriter $outputWriter A OutputWriter instance
- */
- public function __construct(Connection $connection, OutputWriter $outputWriter = null)
- {
- $this->connection = $connection;
- if ($outputWriter === null) {
- $outputWriter = new OutputWriter();
- }
- $this->outputWriter = $outputWriter;
- }
- /**
- * Validation that this instance has all the required properties configured
- *
- * @return void
- * @throws MigrationException
- */
- public function validate()
- {
- if ( ! $this->migrationsNamespace) {
- throw MigrationException::migrationsNamespaceRequired();
- }
- if ( ! $this->migrationsDirectory) {
- throw MigrationException::migrationsDirectoryRequired();
- }
- }
- /**
- * Set the name of this set of migrations
- *
- * @param string $name The name of this set of migrations
- */
- public function setName($name)
- {
- $this->name = $name;
- }
- /**
- * Returns the name of this set of migrations
- *
- * @return string $name The name of this set of migrations
- */
- public function getName()
- {
- return $this->name;
- }
- /**
- * Returns the OutputWriter instance
- *
- * @return OutputWriter $outputWriter The OutputWriter instance
- */
- public function getOutputWriter()
- {
- return $this->outputWriter;
- }
- /**
- * Returns a timestamp version as a formatted date
- *
- * @param string $version
- *
- * @return string The formatted version
- */
- public function formatVersion($version)
- {
- return sprintf('%s-%s-%s %s:%s:%s',
- substr($version, 0, 4),
- substr($version, 4, 2),
- substr($version, 6, 2),
- substr($version, 8, 2),
- substr($version, 10, 2),
- substr($version, 12, 2)
- );
- }
- /**
- * Returns the Connection instance
- *
- * @return Connection $connection The Connection instance
- */
- public function getConnection()
- {
- return $this->connection;
- }
- /**
- * Set the migration table name
- *
- * @param string $tableName The migration table name
- */
- public function setMigrationsTableName($tableName)
- {
- $this->migrationsTableName = $tableName;
- }
- /**
- * Returns the migration table name
- *
- * @return string $migrationsTableName The migration table name
- */
- public function getMigrationsTableName()
- {
- return $this->migrationsTableName;
- }
- /**
- * Set the new migrations directory where new migration classes are generated
- *
- * @param string $migrationsDirectory The new migrations directory
- */
- public function setMigrationsDirectory($migrationsDirectory)
- {
- $this->migrationsDirectory = $migrationsDirectory;
- }
- /**
- * Returns the new migrations directory where new migration classes are generated
- *
- * @return string $migrationsDirectory The new migrations directory
- */
- public function getMigrationsDirectory()
- {
- return $this->migrationsDirectory;
- }
- /**
- * Set the migrations namespace
- *
- * @param string $migrationsNamespace The migrations namespace
- */
- public function setMigrationsNamespace($migrationsNamespace)
- {
- $this->migrationsNamespace = $migrationsNamespace;
- }
- /**
- * Returns the migrations namespace
- *
- * @return string $migrationsNamespace The migrations namespace
- */
- public function getMigrationsNamespace()
- {
- return $this->migrationsNamespace;
- }
- /**
- * Register migrations from a given directory. Recursively finds all files
- * with the pattern VersionYYYYMMDDHHMMSS.php as the filename and registers
- * them as migrations.
- *
- * @param string $path The root directory to where some migration classes live.
- *
- * @return Version[] The array of migrations registered.
- */
- public function registerMigrationsFromDirectory($path)
- {
- $path = realpath($path);
- $path = rtrim($path, '/');
- $files = glob($path . '/Version*.php');
- $versions = array();
- if ($files) {
- foreach ($files as $file) {
- require_once($file);
- $info = pathinfo($file);
- $version = substr($info['filename'], 7);
- $class = $this->migrationsNamespace . '\\' . $info['filename'];
- $versions[] = $this->registerMigration($version, $class);
- }
- }
- return $versions;
- }
- /**
- * Register a single migration version to be executed by a AbstractMigration
- * class.
- *
- * @param string $version The version of the migration in the format YYYYMMDDHHMMSS.
- * @param string $class The migration class to execute for the version.
- *
- * @return Version
- *
- * @throws MigrationException
- */
- public function registerMigration($version, $class)
- {
- $version = (string) $version;
- $class = (string) $class;
- if (isset($this->migrations[$version])) {
- throw MigrationException::duplicateMigrationVersion($version, get_class($this->migrations[$version]));
- }
- $version = new Version($this, $version, $class);
- $this->migrations[$version->getVersion()] = $version;
- ksort($this->migrations);
- return $version;
- }
- /**
- * Register an array of migrations. Each key of the array is the version and
- * the value is the migration class name.
- *
- *
- * @param array $migrations
- *
- * @return Version[]
- */
- public function registerMigrations(array $migrations)
- {
- $versions = array();
- foreach ($migrations as $version => $class) {
- $versions[] = $this->registerMigration($version, $class);
- }
- return $versions;
- }
- /**
- * Get the array of registered migration versions.
- *
- * @return Version[] $migrations
- */
- public function getMigrations()
- {
- return $this->migrations;
- }
- /**
- * Returns the Version instance for a given version in the format YYYYMMDDHHMMSS.
- *
- * @param string $version The version string in the format YYYYMMDDHHMMSS.
- *
- * @return Version
- *
- * @throws MigrationException Throws exception if migration version does not exist.
- */
- public function getVersion($version)
- {
- if ( ! isset($this->migrations[$version])) {
- throw MigrationException::unknownMigrationVersion($version);
- }
- return $this->migrations[$version];
- }
- /**
- * Check if a version exists.
- *
- * @param string $version
- *
- * @return boolean
- */
- public function hasVersion($version)
- {
- return isset($this->migrations[$version]);
- }
- /**
- * Check if a version has been migrated or not yet
- *
- * @param Version $version
- *
- * @return boolean
- */
- public function hasVersionMigrated(Version $version)
- {
- $this->createMigrationTable();
- $version = $this->connection->fetchColumn("SELECT version FROM " . $this->migrationsTableName . " WHERE version = ?", array($version->getVersion()));
- return $version !== false;
- }
- /**
- * Returns all migrated versions from the versions table, in an array.
- *
- * @return Version[]
- */
- public function getMigratedVersions()
- {
- $this->createMigrationTable();
- $ret = $this->connection->fetchAll("SELECT version FROM " . $this->migrationsTableName);
- $versions = array();
- foreach ($ret as $version) {
- $versions[] = current($version);
- }
- return $versions;
- }
- /**
- * Returns an array of available migration version numbers.
- *
- * @return array
- */
- public function getAvailableVersions()
- {
- $availableVersions = array();
- foreach ($this->migrations as $migration) {
- $availableVersions[] = $migration->getVersion();
- }
- return $availableVersions;
- }
- /**
- * Returns the current migrated version from the versions table.
- *
- * @return string
- */
- public function getCurrentVersion()
- {
- $this->createMigrationTable();
- $where = null;
- if ($this->migrations) {
- $migratedVersions = array();
- foreach ($this->migrations as $migration) {
- $migratedVersions[] = sprintf("'%s'", $migration->getVersion());
- }
- $where = " WHERE version IN (" . implode(', ', $migratedVersions) . ")";
- }
- $sql = sprintf("SELECT version FROM %s%s ORDER BY version DESC",
- $this->migrationsTableName, $where
- );
- $sql = $this->connection->getDatabasePlatform()->modifyLimitQuery($sql, 1);
- $result = $this->connection->fetchColumn($sql);
- return $result !== false ? (string) $result : '0';
- }
- /**
- * Returns the total number of executed migration versions
- *
- * @return integer
- */
- public function getNumberOfExecutedMigrations()
- {
- $this->createMigrationTable();
- $result = $this->connection->fetchColumn("SELECT COUNT(version) FROM " . $this->migrationsTableName);
- return $result !== false ? $result : 0;
- }
- /**
- * Returns the total number of available migration versions
- *
- * @return integer
- */
- public function getNumberOfAvailableMigrations()
- {
- return count($this->migrations);
- }
- /**
- * Returns the latest available migration version.
- *
- * @return string The version string in the format YYYYMMDDHHMMSS.
- */
- public function getLatestVersion()
- {
- $versions = array_keys($this->migrations);
- $latest = end($versions);
- return $latest !== false ? (string) $latest : '0';
- }
- /**
- * Create the migration table to track migrations with.
- *
- * @return boolean Whether or not the table was created.
- */
- public function createMigrationTable()
- {
- $this->validate();
- if ($this->migrationTableCreated) {
- return false;
- }
- if ( ! $this->connection->getSchemaManager()->tablesExist(array($this->migrationsTableName))) {
- $columns = array(
- 'version' => new Column('version', Type::getType('string'), array('length' => 255)),
- );
- $table = new Table($this->migrationsTableName, $columns);
- $table->setPrimaryKey(array('version'));
- $this->connection->getSchemaManager()->createTable($table);
- $this->migrationTableCreated = true;
- return true;
- }
- return false;
- }
- /**
- * Returns the array of migrations to executed based on the given direction
- * and target version number.
- *
- * @param string $direction The direction we are migrating.
- * @param string $to The version to migrate to.
- *
- * @return Version[] $migrations The array of migrations we can execute.
- */
- public function getMigrationsToExecute($direction, $to)
- {
- if ($direction === 'down') {
- if (count($this->migrations)) {
- $allVersions = array_reverse(array_keys($this->migrations));
- $classes = array_reverse(array_values($this->migrations));
- $allVersions = array_combine($allVersions, $classes);
- } else {
- $allVersions = array();
- }
- } else {
- $allVersions = $this->migrations;
- }
- $versions = array();
- $migrated = $this->getMigratedVersions();
- foreach ($allVersions as $version) {
- if ($this->shouldExecuteMigration($direction, $version, $to, $migrated)) {
- $versions[$version->getVersion()] = $version;
- }
- }
- return $versions;
- }
- /**
- * Check if we should execute a migration for a given direction and target
- * migration version.
- *
- * @param string $direction The direction we are migrating.
- * @param Version $version The Version instance to check.
- * @param string $to The version we are migrating to.
- * @param array $migrated Migrated versions array.
- *
- * @return boolean
- */
- private function shouldExecuteMigration($direction, Version $version, $to, $migrated)
- {
- if ($direction === 'down') {
- if ( ! in_array($version->getVersion(), $migrated)) {
- return false;
- }
- return $version->getVersion() > $to;
- }
- if ($direction === 'up') {
- if (in_array($version->getVersion(), $migrated)) {
- return false;
- }
- return $version->getVersion() <= $to;
- }
- }
- }
|