Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix logic of where method to work with whereNot #50

Closed
wants to merge 11 commits into from
63 changes: 61 additions & 2 deletions src/Database/Eloquent/FMEloquentBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
use GearboxSolutions\EloquentFileMaker\Exceptions\FileMakerDataApiException;
use Illuminate\Contracts\Support\Arrayable;
use Illuminate\Database\Eloquent\Builder;
use Illuminate\Database\Eloquent\Scope;
use Illuminate\Pagination\Paginator;
use Illuminate\Support\Arr;
use Illuminate\Support\Collection;
Expand Down Expand Up @@ -73,6 +74,7 @@ public function exists()
throw $e;
}
}

// It didn't error, so we have something
return true;
}
Expand Down Expand Up @@ -262,8 +264,8 @@ public function paginate($perPage = null, $columns = ['*'], $pageName = 'page',
/**
* Compares a model's modified portal data and original portal data and returns portal data with only modified fields and recordIds
*
* @param $array1 array The modified portal data
* @param $array2 array The model's original portal data
* @param $array1 array The modified portal data
* @param $array2 array The model's original portal data
*/
protected function getOnlyModifiedPortalFields($array1, $array2): array
{
Expand All @@ -288,4 +290,61 @@ protected function getOnlyModifiedPortalFields($array1, $array2): array

return $result;
}

public function applyScopes()
{
$builder = parent::applyScopes();

$query = $builder->getQuery();

foreach ($query->wheres as $index => $find) {
if (! empty($find)) {
continue;
}

unset($query->wheres[$index]);
}

return $builder;
}

/**
* Apply the given scope on the current builder instance.
*
* @return mixed
*/
protected function callScope(callable $scope, array $parameters = [])
{
array_unshift($parameters, $this);

$query = $this->getQuery();

$result = $this;

$scopeApplied = false;

foreach ($query->wheres as $index => $find) {
if (($find['omit'] ?? 'false') === 'true') {
continue;
}

$query->setFindRequestIndex($index);

$result = $scope(...$parameters) ?? $this;

$scopeApplied = true;
}

if (! $scopeApplied) {
array_unshift($query->wheres, []);

$query->setFindRequestIndex(0);

$result = $scope(...$parameters) ?? $this;
}

$query->resetFindRequestIndex();

return $result;
}
}
2 changes: 1 addition & 1 deletion src/Database/Eloquent/FMModel.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@

abstract class FMModel extends Model
{
use FMGuardsAttributes;
use FMHasAttributes;
use FMHasRelationships;
use FMGuardsAttributes;

/**
* Indicates if the model should be timestamped.
Expand Down
Loading
Loading