示例#1
0
文件: Field.php 项目: ablunier/crud
 public function getValidationRules()
 {
     if (count($this->validationRules) === 0 && $this->noValidate() === false) {
         if ($this->dbal->getNotnull()) {
             $this->validationRules[] = 'required';
         }
     }
     return implode('|', $this->validationRules);
 }
 public function getSql(Column $column, $table)
 {
     if (!$table instanceof Table) {
         $table = new Identifier($table);
     }
     $sql = array();
     $normalized = $column->getType()->getNormalizedPostGISColumnOptions($column->getCustomSchemaOptions());
     $srid = $normalized['srid'];
     // PostGIS 1.5 uses -1 for undefined SRID's
     if ($srid <= 0) {
         $srid = -1;
     }
     $type = strtoupper($normalized['geometry_type']);
     if ('ZM' === substr($type, -2)) {
         $dimension = 4;
         $type = substr($type, 0, -2);
     } elseif ('M' === substr($type, -1)) {
         $dimension = 3;
     } elseif ('Z' === substr($type, -1)) {
         $dimension = 3;
         $type = substr($type, 0, -1);
     } else {
         $dimension = 2;
     }
     // Geometry columns are created by the AddGeometryColumn stored procedure
     $sql[] = sprintf("SELECT AddGeometryColumn('%s', '%s', %d, '%s', %d)", $table->getName(), $column->getName(), $srid, $type, $dimension);
     if ($column->getNotnull()) {
         // Add a NOT NULL constraint to the field
         $sql[] = sprintf('ALTER TABLE %s ALTER %s SET NOT NULL', $table->getQuotedName($this->platform), $column->getQuotedName($this->platform));
     }
     return $sql;
 }
示例#3
0
 public function __construct(TableInformation $parent, \Doctrine\DBAL\Schema\Table $table, \Doctrine\DBAL\Schema\Column $column)
 {
     $this->table = $parent;
     foreach ($table->getForeignKeys() as $foreign) {
         if (in_array($column->getName(), $foreign->getColumns())) {
             $foreign_columns = $foreign->getForeignColumns();
             $this->foreignTable = $foreign->getForeignTableName();
             $this->foreignColumn = reset($foreign_columns);
             $this->isForeign = true;
         }
     }
     if ($primary_key = $table->getPrimaryKey()) {
         $this->isPrimary = in_array($column->getName(), $primary_key->getColumns());
     }
     $this->name = $column->getName();
     $this->type = $column->getType()->getName();
     $this->length = $column->getLength();
     $this->precision = $column->getPrecision();
     $this->default = $column->getDefault();
     $this->isNotNull = $column->getNotnull();
     $this->isUnsigned = $column->getUnsigned();
     $this->isFixed = $column->getFixed();
     $this->isAutoIncrement = $column->getAutoincrement();
     $this->comment = $column->getComment();
     if ($this->type === \Doctrine\DBAL\Types\Type::BLOB) {
         $this->length = min($this->bytesFromIni('post_max_size'), $this->bytesFromIni('upload_max_filesize'));
     }
 }
示例#4
0
 public function diffColumn(Column $column1, Column $column2)
 {
     $changedProperties = array();
     if ($column1->getType() != $column2->getType()) {
         //espo: fix problem with executing query for custom types
         $column1DbTypeName = method_exists($column1->getType(), 'getDbTypeName') ? $column1->getType()->getDbTypeName() : $column1->getType()->getName();
         $column2DbTypeName = method_exists($column2->getType(), 'getDbTypeName') ? $column2->getType()->getDbTypeName() : $column2->getType()->getName();
         if (strtolower($column1DbTypeName) != strtolower($column2DbTypeName)) {
             $changedProperties[] = 'type';
         }
         //END: espo
     }
     if ($column1->getNotnull() != $column2->getNotnull()) {
         $changedProperties[] = 'notnull';
     }
     if ($column1->getDefault() != $column2->getDefault()) {
         $changedProperties[] = 'default';
     }
     if ($column1->getUnsigned() != $column2->getUnsigned()) {
         $changedProperties[] = 'unsigned';
     }
     if ($column1->getType() instanceof \Doctrine\DBAL\Types\StringType) {
         // check if value of length is set at all, default value assumed otherwise.
         $length1 = $column1->getLength() ?: 255;
         $length2 = $column2->getLength() ?: 255;
         if ($length1 != $length2) {
             $changedProperties[] = 'length';
         }
         if ($column1->getFixed() != $column2->getFixed()) {
             $changedProperties[] = 'fixed';
         }
     }
     if ($column1->getType() instanceof \Doctrine\DBAL\Types\DecimalType) {
         if (($column1->getPrecision() ?: 10) != ($column2->getPrecision() ?: 10)) {
             $changedProperties[] = 'precision';
         }
         if ($column1->getScale() != $column2->getScale()) {
             $changedProperties[] = 'scale';
         }
     }
     if ($column1->getAutoincrement() != $column2->getAutoincrement()) {
         $changedProperties[] = 'autoincrement';
     }
     // only allow to delete comment if its set to '' not to null.
     if ($column1->getComment() !== null && $column1->getComment() != $column2->getComment()) {
         $changedProperties[] = 'comment';
     }
     $options1 = $column1->getCustomSchemaOptions();
     $options2 = $column2->getCustomSchemaOptions();
     $commonKeys = array_keys(array_intersect_key($options1, $options2));
     foreach ($commonKeys as $key) {
         if ($options1[$key] !== $options2[$key]) {
             $changedProperties[] = $key;
         }
     }
     $diffKeys = array_keys(array_diff_key($options1, $options2) + array_diff_key($options2, $options1));
     $changedProperties = array_merge($changedProperties, $diffKeys);
     return $changedProperties;
 }
示例#5
0
文件: Schema.php 项目: seytar/psx
 protected function getType(Column $column)
 {
     $type = 0;
     if ($column->getLength() > 0) {
         $type += $column->getLength();
     }
     $type = $type | SerializeTrait::getTypeByDoctrineType($column->getType());
     if (!$column->getNotnull()) {
         $type = $type | TableInterface::IS_NULL;
     }
     if ($column->getAutoincrement()) {
         $type = $type | TableInterface::AUTO_INCREMENT;
     }
     return $type;
 }
 /**
  * Check if dates are the same.
  *
  * @param Column $createdAt
  * @param Column $updatedAt
  * @return bool|string
  */
 protected function timestampsAreEqual(Column $createdAt, Column $updatedAt)
 {
     $check = $createdAt->getDefault() == ($updatedAt->getDefault() == '0000-00-00 00:00:00') && $createdAt->getNotnull() == $updatedAt->getNotnull();
     if ($check) {
         return 'default.' . ($createdAt->getNotnull() ? 'notNull' : 'null');
     }
     return false;
 }
 /**
  * @param Column $column
  * @return string
  * @throws \RuntimeException
  */
 private function doctrineColumnToProcessingType(Column $column)
 {
     if (!isset($this->doctrineProcessingTypeMap[$column->getType()->getName()])) {
         throw new \RuntimeException(sprintf("No processing type mapping for doctrine type %s", $column->getType()->getName()));
     }
     $processingType = $this->doctrineProcessingTypeMap[$column->getType()->getName()];
     if (!$column->getNotnull() || $column->getAutoincrement()) {
         $processingType .= "OrNull";
         if (!class_exists($processingType)) {
             throw new \RuntimeException("Missing null type: for nullable column: " . $column->getName());
         }
     }
     Assertion::implementsInterface($processingType, 'Prooph\\Processing\\Type\\Type');
     return $processingType;
 }
 /**
  * Process blob|binary type of the table field.
  *
  * @param Column $column
  * @param bool $isUnique
  * @return string
  */
 protected function processBlob(Column $column, $isUnique)
 {
     return $this->grammar->binary($column->getName(), $column->getDefault(), !$column->getNotnull(), $isUnique);
 }
示例#9
0
 /**
  * Check if column is deleted_at.
  *
  * @param Column $column
  * @return bool
  */
 protected function isSoftDeletes(Column $column)
 {
     return !is_null($this->deletedAtColumn) && $column->getName() === $this->deletedAtColumn && !$column->getNotnull();
 }
 /**
  * @return boolean
  */
 public function required()
 {
     return $this->column->getNotnull();
 }
示例#11
0
 /**
  * Populates attributes.
  *
  * @param   Attrs   $attrs
  * @param   string  $key
  * @param   Column  $column
  */
 private function populateColumn($attrs, $key, $column)
 {
     $attrs->set($this->deriveName($key), ['key' => $key, 'type' => $column->getType()->getName(), 'default' => $column->getDefault(), 'nullable' => !$column->getNotnull()]);
 }
示例#12
0
 /**
  * @param Column $column
  * @param \SimpleXMLElement $xml
  */
 private static function saveColumn($column, $xml)
 {
     $xml->addChild('name', $column->getName());
     switch ($column->getType()) {
         case 'SmallInt':
         case 'Integer':
         case 'BigInt':
             $xml->addChild('type', 'integer');
             $default = $column->getDefault();
             if (is_null($default) && $column->getAutoincrement()) {
                 $default = '0';
             }
             $xml->addChild('default', $default);
             $xml->addChild('notnull', self::toBool($column->getNotnull()));
             if ($column->getAutoincrement()) {
                 $xml->addChild('autoincrement', '1');
             }
             if ($column->getUnsigned()) {
                 $xml->addChild('unsigned', 'true');
             }
             $length = '4';
             if ($column->getType() == 'SmallInt') {
                 $length = '2';
             } elseif ($column->getType() == 'BigInt') {
                 $length = '8';
             }
             $xml->addChild('length', $length);
             break;
         case 'String':
             $xml->addChild('type', 'text');
             $default = trim($column->getDefault());
             if ($default === '') {
                 $default = false;
             }
             $xml->addChild('default', $default);
             $xml->addChild('notnull', self::toBool($column->getNotnull()));
             $xml->addChild('length', $column->getLength());
             break;
         case 'Text':
             $xml->addChild('type', 'clob');
             $xml->addChild('notnull', self::toBool($column->getNotnull()));
             break;
         case 'Decimal':
             $xml->addChild('type', 'decimal');
             $xml->addChild('default', $column->getDefault());
             $xml->addChild('notnull', self::toBool($column->getNotnull()));
             $xml->addChild('length', '15');
             break;
         case 'Boolean':
             $xml->addChild('type', 'integer');
             $xml->addChild('default', $column->getDefault());
             $xml->addChild('notnull', self::toBool($column->getNotnull()));
             $xml->addChild('length', '1');
             break;
         case 'DateTime':
             $xml->addChild('type', 'timestamp');
             $xml->addChild('default', $column->getDefault());
             $xml->addChild('notnull', self::toBool($column->getNotnull()));
             break;
     }
 }
 /**
  * Metodo responsavel por recuperar o maxlength
  *
  * @param Column $objColumn
  * @return int|null
  */
 private function getMinlength($objColumn)
 {
     $intMinLength = 0;
     if ($objColumn->getNotnull()) {
         $intMinLength = 1;
     }
     return $intMinLength;
 }
示例#14
0
 /**
  * @param Column $col
  * @return array
  */
 protected function colConfig(Column $col)
 {
     $conf = [];
     //var_dump($col->toArray()); //, $col->getType()->getTypesMap());
     $fieldClass = self::$dbType2FieldClass[$col->getType()->getName()];
     $fieldName = $col->getName();
     if ($col->getAutoincrement()) {
         $fieldClass = 'Auto';
     } elseif (substr($col->getName(), -3) === '_id') {
         $fieldClass = 'ForeignKey';
         $fk_tbl = substr($col->getName(), 0, strpos($col->getName(), '_id'));
         $fieldName = $fk_tbl;
         $conf['relationClass'] = $this->table2model($fk_tbl);
         $conf['db_column'] = $col->getName();
         if (!isset($this->generated[$fk_tbl])) {
             $this->generateQueue[] = $fk_tbl;
         }
     }
     array_unshift($conf, $fieldClass);
     if ($this->dp->getReservedKeywordsList()->isKeyword($col->getName())) {
         $conf['db_column'] = 'f_' . $col->getName();
     }
     if ($col->getNotnull() === false) {
         $conf['null'] = true;
     }
     if ($col->getLength() !== null) {
         $conf['max_length'] = $col->getLength();
     }
     if ($col->getDefault() !== null) {
         if ($col->getDefault() !== 'CURRENT_TIMESTAMP') {
             $conf['default'] = $col->getType()->convertToPHPValue($col->getDefault(), $this->dp);
             if ($conf['default'] === '') {
                 $conf['blank'] = true;
             }
         }
     }
     if ($col->getComment() !== null) {
         $help = $col->getComment();
         if (strpos($help, PHP_EOL) !== false) {
             $help = str_replace(PHP_EOL, '', $help);
         }
         $conf['help_text'] = $help;
     }
     return [$fieldName, $conf];
 }
示例#15
0
 /**
  * @param $column
  * @return array
  */
 protected function formatColumn(Column $column)
 {
     return ['type' => $column->getType()->getName(), 'required' => $column->getNotnull(), 'default' => $column->getDefault()];
 }
示例#16
0
 /**
  * @param \Doctrine\DBAL\Schema\Column $column
  * return boolean
  */
 public function getObligationFromColumn($column)
 {
     return $column->getNotnull();
 }
 /**
  * @param \Doctrine\DBAL\Schema\Column $column
  *
  * @return string
  */
 private function checkForNullable($column)
 {
     if (!$column->getNotnull()) {
         return ":nullable";
     }
     return '';
 }
 /**
  * @param string $tableName
  * @param string $columnName
  * @param \Doctrine\DBAL\Schema\Column $column
  * @return array 
  */
 protected function getAddColumnSQL($tableName, $columnName, Column $column)
 {
     $query = array();
     $spatial = array('srid' => 4326, 'dimension' => 2, 'index' => false);
     foreach ($spatial as $key => &$val) {
         if ($column->hasCustomSchemaOption('spatial_' . $key)) {
             $val = $column->getCustomSchemaOption('spatial_' . $key);
         }
     }
     // Geometry columns are created by AddGeometryColumn stored procedure
     $query[] = sprintf("SELECT AddGeometryColumn('%s', '%s', %d, '%s', %d)", $tableName, $columnName, $spatial['srid'], strtoupper($column->getType()->getName()), $spatial['dimension']);
     if ($spatial['index']) {
         // Add a spatial index to the field
         $indexName = $this->generateIndexName($tableName, $columnName);
         $query[] = sprintf("CREATE INDEX %s ON %s USING GIST (%s)", $indexName, $tableName, $columnName);
     }
     if ($column->getNotnull()) {
         // Add a NOT NULL constraint to the field
         $query[] = sprintf("ALTER TABLE %s ALTER %s SET NOT NULL", $tableName, $columnName);
     }
     return $query;
 }