示例#1
0
 /**
  * Set the value of an annotation.
  *
  * @param string $fieldName
  * @param string $name
  * @param mixed $value
  *
  * @return static
  */
 public function withFieldAnnotation($fieldName, $name, $value)
 {
     $copy = clone $this;
     $copy->annotations = $this->annotations->update($fieldName, function (ArrayMap $fieldAnnotations) use($name, $value) {
         return $fieldAnnotations->insert($name, $value);
     }, ArrayMap::zero());
     return $copy;
 }
示例#2
0
 /**
  * Fill properties in this object using an input array.
  *
  * - Only fields that are mentioned in the fillable array can be set.
  * - Other keys will just be ignored completely.
  * - If a setter is present, it will be automatically called.
  *
  * @param array $input
  *
  * @return $this
  * @throws LackOfCoffeeException
  */
 public function fill(array $input)
 {
     $this->assertIsFillable();
     ArrayMap::of($input)->only($this->getFillable())->each(function ($value, $key) {
         $setter = vsprintf('set%s', [Str::studly($key)]);
         if (method_exists($this, $setter)) {
             $this->{$setter}($value);
             return;
         }
         $camel = Str::camel($key);
         $this->{$camel} = $value;
     });
     return $this;
 }
示例#3
0
 /**
  * Get an environment variable or return the default if it is not defined.
  *
  * This avoid any post-processing, such as automatic casting.
  *
  * @param string $key
  * @param null|mixed|callable $default
  *
  * @return mixed|string
  */
 public static function getRaw($key, $default = null)
 {
     $env = ArrayMap::of($_ENV);
     $server = ArrayMap::of($_SERVER);
     if ($env->member($key)) {
         return Maybe::fromJust($env->lookup($key));
     } elseif ($server->member($key)) {
         return Maybe::fromJust($server->lookup($key));
     }
     $value = getenv($key);
     if ($value === false) {
         return Std::thunk($default);
     }
     return $value;
 }
示例#4
0
 /**
  * Build an instance of the defined Spec.
  *
  * @return Spec
  */
 public function make()
 {
     return new Spec($this->constraints->toArray(), $this->defaults->toArray(), $this->required->toArray());
 }
 /**
  * Render the object into a string.
  *
  * @return mixed
  */
 public function render()
 {
     $addColon = function ($label) {
         return Maybe::just(vsprintf('%s:', [$label]));
     };
     return (new Form($this->attributes, $this->spec->getAnnotations()->map(function ($_, $key) use($addColon) {
         return new Row(['class' => 'form-group'], [new Node('label', ['class' => 'col-sm-2 form-control-label'], Maybe::fromMaybe('', $this->spec->getFieldLabel($key)->bind($addColon))), new Div(['class' => 'col-sm-8'], $this->renderFullField($key))]);
     })->append(ArrayMap::of([new Row(['class' => 'form-group'], [new Div(['class' => 'col-sm-offset-2 col-sm-10'], [new Div(['class' => 'btn-group'], [new Button(['type' => 'reset', 'class' => 'btn btn-secondary'], 'Reset'), new Button(['type' => 'submit', 'class' => 'btn btn-primary'], 'Submit')])])])]))))->render();
 }
示例#6
0
 /**
  * Render the attributes part of the opening tag.
  *
  * @return string
  */
 protected function renderAttributes()
 {
     return ArrayMap::of($this->attributes)->map(function ($value, $name) {
         return $this->renderAttribute($name, $value);
     })->join(' ');
 }
示例#7
0
 /**
  * @return ListInterface
  */
 public static function toValuesList()
 {
     return ArrayMap::of(static::getValues())->values();
 }
示例#8
0
 /**
  * Set properties of an object by only calling setters of array keys that
  * are set in the input array. Useful for parsing API responses into
  * entities.
  *
  * @param object $object
  * @param array $input
  * @param string[]|null $allowed
  */
 public static function callSetters($object, array $input, array $allowed = null)
 {
     $filtered = ArrayMap::of($input);
     if ($allowed !== null) {
         $filtered = $filtered->only($allowed);
     }
     $filtered->each(function ($value, $key) use(&$object) {
         $setterName = 'set' . Str::studly($key);
         $object->{$setterName}($value);
     });
 }
示例#9
0
 /**
  * Execute the transform.
  *
  * @param array $input
  *
  * @return array
  */
 public function run(array $input)
 {
     return ArrayMap::of($input)->only($this->allowed)->toArray();
 }