!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 

uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/home/ccl/vendor/illuminate/database/Eloquent/Relations/   drwxrwxr-x
Free 12.94 GB of 57.97 GB (22.32%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     MorphTo.php (7.15 KB)      -rw-rw-r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

namespace Illuminate\Database\Eloquent\Relations;

use 
BadMethodCallException;
use 
Illuminate\Database\Eloquent\Model;
use 
Illuminate\Database\Eloquent\Builder;
use 
Illuminate\Database\Eloquent\Collection;

/**
 * @mixin \Illuminate\Database\Eloquent\Builder
 */
class MorphTo extends BelongsTo
{
    
/**
     * The type of the polymorphic relation.
     *
     * @var string
     */
    
protected $morphType;

    
/**
     * The models whose relations are being eager loaded.
     *
     * @var \Illuminate\Database\Eloquent\Collection
     */
    
protected $models;

    
/**
     * All of the models keyed by ID.
     *
     * @var array
     */
    
protected $dictionary = [];

    
/**
     * A buffer of dynamic calls to query macros.
     *
     * @var array
     */
    
protected $macroBuffer = [];

    
/**
     * Create a new morph to relationship instance.
     *
     * @param  \Illuminate\Database\Eloquent\Builder  $query
     * @param  \Illuminate\Database\Eloquent\Model  $parent
     * @param  string  $foreignKey
     * @param  string  $ownerKey
     * @param  string  $type
     * @param  string  $relation
     * @return void
     */
    
public function __construct(Builder $queryModel $parent$foreignKey$ownerKey$type$relation)
    {
        
$this->morphType $type;

        
parent::__construct($query$parent$foreignKey$ownerKey$relation);
    }

    
/**
     * Set the constraints for an eager load of the relation.
     *
     * @param  array  $models
     * @return void
     */
    
public function addEagerConstraints(array $models)
    {
        
$this->buildDictionary($this->models Collection::make($models));
    }

    
/**
     * Build a dictionary with the models.
     *
     * @param  \Illuminate\Database\Eloquent\Collection  $models
     * @return void
     */
    
protected function buildDictionary(Collection $models)
    {
        foreach (
$models as $model) {
            if (
$model->{$this->morphType}) {
                
$this->dictionary[$model->{$this->morphType}][$model->{$this->foreignKey}][] = $model;
            }
        }
    }

    
/**
     * Get the results of the relationship.
     *
     * @return mixed
     */
    
public function getResults()
    {
        return 
$this->ownerKey $this->query->first() : null;
    }

    
/**
     * Get the results of the relationship.
     *
     * Called via eager load method of Eloquent query builder.
     *
     * @return mixed
     */
    
public function getEager()
    {
        foreach (
array_keys($this->dictionary) as $type) {
            
$this->matchToMorphParents($type$this->getResultsByType($type));
        }

        return 
$this->models;
    }

    
/**
     * Get all of the relation results for a type.
     *
     * @param  string  $type
     * @return \Illuminate\Database\Eloquent\Collection
     */
    
protected function getResultsByType($type)
    {
        
$instance $this->createModelByType($type);

        
$query $this->replayMacros($instance->newQuery())
                            ->
mergeConstraintsFrom($this->getQuery())
                            ->
with($this->getQuery()->getEagerLoads());

        return 
$query->whereIn(
            
$instance->getTable().'.'.$instance->getKeyName(), $this->gatherKeysByType($type)
        )->
get();
    }

    
/**
     * Gather all of the foreign keys for a given type.
     *
     * @param  string  $type
     * @return array
     */
    
protected function gatherKeysByType($type)
    {
        return 
collect($this->dictionary[$type])->map(function ($models) {
            return 
head($models)->{$this->foreignKey};
        })->
values()->unique()->all();
    }

    
/**
     * Create a new model instance by type.
     *
     * @param  string  $type
     * @return \Illuminate\Database\Eloquent\Model
     */
    
public function createModelByType($type)
    {
        
$class Model::getActualClassNameForMorph($type);

        return new 
$class;
    }

    
/**
     * Match the eagerly loaded results to their parents.
     *
     * @param  array   $models
     * @param  \Illuminate\Database\Eloquent\Collection  $results
     * @param  string  $relation
     * @return array
     */
    
public function match(array $modelsCollection $results$relation)
    {
        return 
$models;
    }

    
/**
     * Match the results for a given type to their parents.
     *
     * @param  string  $type
     * @param  \Illuminate\Database\Eloquent\Collection  $results
     * @return void
     */
    
protected function matchToMorphParents($typeCollection $results)
    {
        foreach (
$results as $result) {
            if (isset(
$this->dictionary[$type][$result->getKey()])) {
                foreach (
$this->dictionary[$type][$result->getKey()] as $model) {
                    
$model->setRelation($this->relation$result);
                }
            }
        }
    }

    
/**
     * Associate the model instance to the given parent.
     *
     * @param  \Illuminate\Database\Eloquent\Model  $model
     * @return \Illuminate\Database\Eloquent\Model
     */
    
public function associate($model)
    {
        
$this->parent->setAttribute(
            
$this->foreignKey$model instanceof Model $model->getKey() : null
        
);

        
$this->parent->setAttribute(
            
$this->morphType$model instanceof Model $model->getMorphClass() : null
        
);

        return 
$this->parent->setRelation($this->relation$model);
    }

    
/**
     * Dissociate previously associated model from the given parent.
     *
     * @return \Illuminate\Database\Eloquent\Model
     */
    
public function dissociate()
    {
        
$this->parent->setAttribute($this->foreignKeynull);

        
$this->parent->setAttribute($this->morphTypenull);

        return 
$this->parent->setRelation($this->relationnull);
    }

    
/**
     * Get the foreign key "type" name.
     *
     * @return string
     */
    
public function getMorphType()
    {
        return 
$this->morphType;
    }

    
/**
     * Get the dictionary used by the relationship.
     *
     * @return array
     */
    
public function getDictionary()
    {
        return 
$this->dictionary;
    }

    
/**
     * Replay stored macro calls on the actual related instance.
     *
     * @param  \Illuminate\Database\Eloquent\Builder  $query
     * @return \Illuminate\Database\Eloquent\Builder
     */
    
protected function replayMacros(Builder $query)
    {
        foreach (
$this->macroBuffer as $macro) {
            
$query->{$macro['method']}(...$macro['parameters']);
        }

        return 
$query;
    }

    
/**
     * Handle dynamic method calls to the relationship.
     *
     * @param  string  $method
     * @param  array   $parameters
     * @return mixed
     */
    
public function __call($method$parameters)
    {
        try {
            return 
parent::__call($method$parameters);
        }

        
// If we tried to call a method that does not exist on the parent Builder instance,
        // we'll assume that we want to call a query macro (e.g. withTrashed) that only
        // exists on related models. We will just store the call and replay it later.
        
catch (BadMethodCallException $e) {
            
$this->macroBuffer[] = compact('method''parameters');

            return 
$this;
        }
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0067 ]--