123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305 |
- <?php
-
- namespace Illuminate\Database\Schema;
-
- use Closure;
- use LogicException;
- use Illuminate\Database\Connection;
-
- class Builder
- {
- /**
- * The database connection instance.
- *
- * @var \Illuminate\Database\Connection
- */
- protected $connection;
-
- /**
- * The schema grammar instance.
- *
- * @var \Illuminate\Database\Schema\Grammars\Grammar
- */
- protected $grammar;
-
- /**
- * The Blueprint resolver callback.
- *
- * @var \Closure
- */
- protected $resolver;
-
- /**
- * The default string length for migrations.
- *
- * @var int
- */
- public static $defaultStringLength = 255;
-
- /**
- * Create a new database Schema manager.
- *
- * @param \Illuminate\Database\Connection $connection
- * @return void
- */
- public function __construct(Connection $connection)
- {
- $this->connection = $connection;
- $this->grammar = $connection->getSchemaGrammar();
- }
-
- /**
- * Set the default string length for migrations.
- *
- * @param int $length
- * @return void
- */
- public static function defaultStringLength($length)
- {
- static::$defaultStringLength = $length;
- }
-
- /**
- * Determine if the given table exists.
- *
- * @param string $table
- * @return bool
- */
- public function hasTable($table)
- {
- $table = $this->connection->getTablePrefix().$table;
-
- return count($this->connection->select(
- $this->grammar->compileTableExists(), [$table]
- )) > 0;
- }
-
- /**
- * Determine if the given table has a given column.
- *
- * @param string $table
- * @param string $column
- * @return bool
- */
- public function hasColumn($table, $column)
- {
- return in_array(
- strtolower($column), array_map('strtolower', $this->getColumnListing($table))
- );
- }
-
- /**
- * Determine if the given table has given columns.
- *
- * @param string $table
- * @param array $columns
- * @return bool
- */
- public function hasColumns($table, array $columns)
- {
- $tableColumns = array_map('strtolower', $this->getColumnListing($table));
-
- foreach ($columns as $column) {
- if (! in_array(strtolower($column), $tableColumns)) {
- return false;
- }
- }
-
- return true;
- }
-
- /**
- * Get the data type for the given column name.
- *
- * @param string $table
- * @param string $column
- * @return string
- */
- public function getColumnType($table, $column)
- {
- $table = $this->connection->getTablePrefix().$table;
-
- return $this->connection->getDoctrineColumn($table, $column)->getType()->getName();
- }
-
- /**
- * Get the column listing for a given table.
- *
- * @param string $table
- * @return array
- */
- public function getColumnListing($table)
- {
- $results = $this->connection->select($this->grammar->compileColumnListing(
- $this->connection->getTablePrefix().$table
- ));
-
- return $this->connection->getPostProcessor()->processColumnListing($results);
- }
-
- /**
- * Modify a table on the schema.
- *
- * @param string $table
- * @param \Closure $callback
- * @return void
- */
- public function table($table, Closure $callback)
- {
- $this->build($this->createBlueprint($table, $callback));
- }
-
- /**
- * Create a new table on the schema.
- *
- * @param string $table
- * @param \Closure $callback
- * @return void
- */
- public function create($table, Closure $callback)
- {
- $this->build(tap($this->createBlueprint($table), function ($blueprint) use ($callback) {
- $blueprint->create();
-
- $callback($blueprint);
- }));
- }
-
- /**
- * Drop a table from the schema.
- *
- * @param string $table
- * @return void
- */
- public function drop($table)
- {
- $this->build(tap($this->createBlueprint($table), function ($blueprint) {
- $blueprint->drop();
- }));
- }
-
- /**
- * Drop a table from the schema if it exists.
- *
- * @param string $table
- * @return void
- */
- public function dropIfExists($table)
- {
- $this->build(tap($this->createBlueprint($table), function ($blueprint) {
- $blueprint->dropIfExists();
- }));
- }
-
- /**
- * Drop all tables from the database.
- *
- * @return void
- *
- * @throws \LogicException
- */
- public function dropAllTables()
- {
- throw new LogicException('This database driver does not support dropping all tables.');
- }
-
- /**
- * Rename a table on the schema.
- *
- * @param string $from
- * @param string $to
- * @return void
- */
- public function rename($from, $to)
- {
- $this->build(tap($this->createBlueprint($from), function ($blueprint) use ($to) {
- $blueprint->rename($to);
- }));
- }
-
- /**
- * Enable foreign key constraints.
- *
- * @return bool
- */
- public function enableForeignKeyConstraints()
- {
- return $this->connection->statement(
- $this->grammar->compileEnableForeignKeyConstraints()
- );
- }
-
- /**
- * Disable foreign key constraints.
- *
- * @return bool
- */
- public function disableForeignKeyConstraints()
- {
- return $this->connection->statement(
- $this->grammar->compileDisableForeignKeyConstraints()
- );
- }
-
- /**
- * Execute the blueprint to build / modify the table.
- *
- * @param \Illuminate\Database\Schema\Blueprint $blueprint
- * @return void
- */
- protected function build(Blueprint $blueprint)
- {
- $blueprint->build($this->connection, $this->grammar);
- }
-
- /**
- * Create a new command set with a Closure.
- *
- * @param string $table
- * @param \Closure|null $callback
- * @return \Illuminate\Database\Schema\Blueprint
- */
- protected function createBlueprint($table, Closure $callback = null)
- {
- if (isset($this->resolver)) {
- return call_user_func($this->resolver, $table, $callback);
- }
-
- return new Blueprint($table, $callback);
- }
-
- /**
- * Get the database connection instance.
- *
- * @return \Illuminate\Database\Connection
- */
- public function getConnection()
- {
- return $this->connection;
- }
-
- /**
- * Set the database connection instance.
- *
- * @param \Illuminate\Database\Connection $connection
- * @return $this
- */
- public function setConnection(Connection $connection)
- {
- $this->connection = $connection;
-
- return $this;
- }
-
- /**
- * Set the Schema Blueprint resolver callback.
- *
- * @param \Closure $resolver
- * @return void
- */
- public function blueprintResolver(Closure $resolver)
- {
- $this->resolver = $resolver;
- }
- }
|