123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195 |
- <?php
-
- namespace Illuminate\Http\Resources;
-
- use Illuminate\Support\Arr;
-
- trait ConditionallyLoadsAttributes
- {
- /**
- * Filter the given data, removing any optional values.
- *
- * @param array $data
- * @return array
- */
- protected function filter($data)
- {
- $index = -1;
-
- $numericKeys = array_values($data) === $data;
-
- foreach ($data as $key => $value) {
- $index++;
-
- if (is_array($value)) {
- $data[$key] = $this->filter($value);
-
- continue;
- }
-
- if (is_numeric($key) && $value instanceof MergeValue) {
- return $this->merge($data, $index, $this->filter($value->data), $numericKeys);
- }
-
- if ($value instanceof self && is_null($value->resource)) {
- $data[$key] = null;
- }
- }
-
- return $this->removeMissingValues($data, $numericKeys);
- }
-
- /**
- * Merge the given data in at the given index.
- *
- * @param array $data
- * @param int $index
- * @param array $merge
- * @param bool $numericKeys
- * @return array
- */
- protected function merge($data, $index, $merge, $numericKeys)
- {
- if ($numericKeys) {
- return $this->removeMissingValues(array_merge(
- array_merge(array_slice($data, 0, $index, true), $merge),
- $this->filter(array_values(array_slice($data, $index + 1, null, true)))
- ), $numericKeys);
- }
-
- return $this->removeMissingValues(array_slice($data, 0, $index, true) +
- $merge +
- $this->filter(array_slice($data, $index + 1, null, true)));
- }
-
- /**
- * Remove the missing values from the filtered data.
- *
- * @param array $data
- * @param bool $numericKeys
- * @return array
- */
- protected function removeMissingValues($data, $numericKeys = false)
- {
- foreach ($data as $key => $value) {
- if (($value instanceof PotentiallyMissing && $value->isMissing()) ||
- ($value instanceof self &&
- $value->resource instanceof PotentiallyMissing &&
- $value->isMissing())) {
- unset($data[$key]);
- }
- }
-
- return ! empty($data) && is_numeric(array_keys($data)[0])
- ? array_values($data) : $data;
- }
-
- /**
- * Retrieve a value based on a given condition.
- *
- * @param bool $condition
- * @param mixed $value
- * @param mixed $default
- * @return \Illuminate\Http\Resources\MissingValue|mixed
- */
- protected function when($condition, $value, $default = null)
- {
- if ($condition) {
- return value($value);
- }
-
- return func_num_args() === 3 ? value($default) : new MissingValue;
- }
-
- /**
- * Merge a value based on a given condition.
- *
- * @param bool $condition
- * @param mixed $value
- * @return \Illuminate\Http\Resources\MissingValue|mixed
- */
- protected function mergeWhen($condition, $value)
- {
- return $condition ? new MergeValue(value($value)) : new MissingValue;
- }
-
- /**
- * Merge the given attributes.
- *
- * @param array $attributes
- * @return \Illuminate\Http\Resources\MergeValue
- */
- protected function attributes($attributes)
- {
- return new MergeValue(
- Arr::only($this->resource->toArray(), $attributes)
- );
- }
-
- /**
- * Retrieve a relationship if it has been loaded.
- *
- * @param string $relationship
- * @param mixed $value
- * @param mixed $default
- * @return \Illuminate\Http\Resources\MissingValue|mixed
- */
- protected function whenLoaded($relationship, $value = null, $default = null)
- {
- if (func_num_args() < 3) {
- $default = new MissingValue;
- }
-
- if (! $this->resource->relationLoaded($relationship)) {
- return $default;
- }
-
- if (func_num_args() === 1) {
- return $this->resource->{$relationship};
- }
-
- if ($this->resource->{$relationship} === null) {
- return null;
- }
-
- return value($value);
- }
-
- /**
- * Execute a callback if the given pivot table has been loaded.
- *
- * @param string $table
- * @param mixed $value
- * @param mixed $default
- * @return \Illuminate\Http\Resources\MissingValue|mixed
- */
- protected function whenPivotLoaded($table, $value, $default = null)
- {
- if (func_num_args() === 2) {
- $default = new MissingValue;
- }
-
- return $this->when(
- $this->resource->pivot &&
- ($this->resource->pivot instanceof $table ||
- $this->resource->pivot->getTable() === $table),
- ...[$value, $default]
- );
- }
-
- /**
- * Transform the given value if it is present.
- *
- * @param mixed $value
- * @param callable $callback
- * @param mixed $default
- * @return mixed
- */
- protected function transform($value, callable $callback, $default = null)
- {
- return transform(
- $value, $callback, func_num_args() === 3 ? $default : new MissingValue
- );
- }
- }
|