Вход Регистрация
Файл: vendor/carbonphp/carbon-doctrine-types/src/Carbon/Doctrine/CarbonTypeConverter.php
Строк: 138
<?php

namespace CarbonDoctrine;

use 
CarbonCarbon;
use 
CarbonCarbonInterface;
use 
DateTimeInterface;
use 
DoctrineDBALPlatformsAbstractPlatform;
use 
DoctrineDBALPlatformsDB2Platform;
use 
DoctrineDBALPlatformsOraclePlatform;
use 
DoctrineDBALPlatformsSqlitePlatform;
use 
DoctrineDBALPlatformsSQLServerPlatform;
use 
DoctrineDBALTypesConversionException;
use 
Exception;

/**
 * @template T of CarbonInterface
 */
trait CarbonTypeConverter
{
    
/**
     * This property differentiates types installed by carbonphp/carbon-doctrine-types
     * from the ones embedded previously in nesbot/carbon source directly.
     *
     * @readonly
     */
    
public bool $external true;

    
/**
     * @return class-string<T>
     */
    
protected function getCarbonClassName(): string
    
{
        return 
Carbon::class;
    }

    public function 
getSQLDeclaration(array $fieldDeclarationAbstractPlatform $platform): string
    
{
        
$precision min(
            
$fieldDeclaration['precision'] ?? DateTimeDefaultPrecision::get(),
            
$this->getMaximumPrecision($platform),
        );

        
$type parent::getSQLDeclaration($fieldDeclaration$platform);

        if (!
$precision) {
            return 
$type;
        }

        if (
str_contains($type'(')) {
            return 
preg_replace('/(d+)/'"($precision)"$type);
        }

        [
$before$after] = explode(' '"$type ");

        return 
trim("$before($precision$after");
    }

    
/**
     * @SuppressWarnings(PHPMD.UnusedFormalParameter)
     *
     * @return T|null
     */
    
public function convertToPHPValue($valueAbstractPlatform $platform)
    {
        
$class $this->getCarbonClassName();

        if (
$value === null || is_a($value$class)) {
            return 
$value;
        }

        if (
$value instanceof DateTimeInterface) {
            return 
$class::instance($value);
        }

        
$date null;
        
$error null;

        try {
            
$date $class::parse($value);
        } catch (
Exception $exception) {
            
$error $exception;
        }

        if (!
$date) {
            throw 
ConversionException::conversionFailedFormat(
                
$value,
                
$this->getTypeName(),
                
'Y-m-d H:i:s.u or any format supported by '.$class.'::parse()',
                
$error
            
);
        }

        return 
$date;
    }

    
/**
     * @SuppressWarnings(PHPMD.UnusedFormalParameter)
     */
    
public function convertToDatabaseValue($valueAbstractPlatform $platform): ?string
    
{
        if (
$value === null) {
            return 
$value;
        }

        if (
$value instanceof DateTimeInterface) {
            return 
$value->format('Y-m-d H:i:s.u');
        }

        throw 
ConversionException::conversionFailedInvalidType(
            
$value,
            
$this->getTypeName(),
            [
'null''DateTime''Carbon']
        );
    }

    private function 
getTypeName(): string
    
{
        
$chunks explode('\', static::class);
        $type = preg_replace('
/Type$/', '', end($chunks));

        return strtolower(preg_replace('
/([a-z])([A-Z])/', '$1_$2', $type));
    }

    private function getMaximumPrecision(AbstractPlatform $platform): int
    {
        if ($platform instanceof DB2Platform) {
            return 12;
        }

        if ($platform instanceof OraclePlatform) {
            return 9;
        }

        if ($platform instanceof SQLServerPlatform || $platform instanceof SqlitePlatform) {
            return 3;
        }

        return 6;
    }
}
Онлайн: 3
Реклама