File "AbilitiesForModel.php"

Full Path: /home/pulsehostuk9/public_html/invoicer.pulsehost.co.uk/vendor/silber/bouncer/src/Database/Queries/AbilitiesForModel.php
File size: 3.19 KB
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Silber\Bouncer\Database\Queries;

use Illuminate\Database\Eloquent\Model;
use Silber\Bouncer\Database\Models;

class AbilitiesForModel
{
    /**
     * The name of the abilities table.
     *
     * @var string
     */
    protected $table;

    /**
     * Constructor.
     */
    public function __construct()
    {
        $this->table = Models::table('abilities');
    }

    /**
     * Constrain a query to an ability for a specific model or wildcard.
     *
     * @param  \Illuminate\Database\Eloquent\Builder|\Illuminate\Database\Query\Builder  $query
     * @param  \Illuminate\Database\Eloquent\Model|string  $model
     * @param  bool  $strict
     * @return void
     */
    public function constrain($query, $model, $strict = false)
    {
        if ($model === '*') {
            return $this->constrainByWildcard($query);
        }

        $model = is_string($model) ? new $model : $model;

        $this->constrainByModel($query, $model, $strict);
    }

    /**
     * Constrain a query to a model wiildcard.
     *
     * @param  \Illuminate\Database\Eloquent\Builder|\Illuminate\Database\Query\Builder  $query
     * @return void
     */
    protected function constrainByWildcard($query)
    {
        $query->where("{$this->table}.entity_type", '*');
    }

    /**
     * Constrain a query to an ability for a specific model.
     *
     * @param  \Illuminate\Database\Eloquent\Builder|\Illuminate\Database\Query\Builder  $query
     * @param  bool  $strict
     * @return \Illuminate\Database\Eloquent\Builder|\Illuminate\Database\Query\Builder
     */
    protected function constrainByModel($query, Model $model, $strict)
    {
        if ($strict) {
            return $query->where(
                $this->modelAbilityConstraint($model, $strict)
            );
        }

        return $query->where(function ($query) use ($model, $strict) {
            $query->where("{$this->table}.entity_type", '*')
                ->orWhere($this->modelAbilityConstraint($model, $strict));
        });
    }

    /**
     * Get the constraint for regular model abilities.
     *
     * @param  bool  $strict
     * @return \Closure
     */
    protected function modelAbilityConstraint(Model $model, $strict)
    {
        return function ($query) use ($model, $strict) {
            $query->where("{$this->table}.entity_type", $model->getMorphClass());

            $query->where($this->abilitySubqueryConstraint($model, $strict));
        };
    }

    /**
     * Get the constraint for the ability subquery.
     *
     * @param  bool  $strict
     * @return \Closure
     */
    protected function abilitySubqueryConstraint(Model $model, $strict)
    {
        return function ($query) use ($model, $strict) {
            // If the model does not exist, we want to search for blanket abilities
            // that cover all instances of this model. If it does exist, we only
            // want to find blanket abilities if we're not using strict mode.
            if (! $model->exists || ! $strict) {
                $query->whereNull("{$this->table}.entity_id");
            }

            if ($model->exists) {
                $query->orWhere("{$this->table}.entity_id", $model->getKey());
            }
        };
    }
}