|
@@ -8,10 +8,10 @@ abstract class AbstractPostSerializable implements PostSerializableInterface {
|
|
public static function fromPostParams(array $post): PostSerializableInterface {
|
|
public static function fromPostParams(array $post): PostSerializableInterface {
|
|
$vars = [];
|
|
$vars = [];
|
|
|
|
|
|
- foreach (static::getPostParams() as $key => $required) {
|
|
+ foreach (static::getPostParams() as $key => $param) {
|
|
$vars[$key] = isset($post[$key]) && ((bool)$post[$key]) && strtolower((string)$post[$key]) != "off" ? htmlspecialchars($post[$key], ENT_QUOTES | ENT_SUBSTITUTE) : null;
|
|
$vars[$key] = isset($post[$key]) && ((bool)$post[$key]) && strtolower((string)$post[$key]) != "off" ? htmlspecialchars($post[$key], ENT_QUOTES | ENT_SUBSTITUTE) : null;
|
|
|
|
|
|
- if ($vars[$key] == null && $required)
|
|
+ if ($vars[$key] == null && $param->required)
|
|
throw new \Symfony\Component\HttpClient\Exception\InvalidArgumentException(
|
|
throw new \Symfony\Component\HttpClient\Exception\InvalidArgumentException(
|
|
sprintf("Missing required argmuent: %s", $key)
|
|
sprintf("Missing required argmuent: %s", $key)
|
|
);
|
|
);
|
|
@@ -30,9 +30,15 @@ abstract class AbstractPostSerializable implements PostSerializableInterface {
|
|
|
|
|
|
foreach ((new ReflectionClass(static::class))->getConstructor()->getParameters() as $param) {
|
|
foreach ((new ReflectionClass(static::class))->getConstructor()->getParameters() as $param) {
|
|
if ($short)
|
|
if ($short)
|
|
- $vars[$param->getName()] = !($param->isOptional() || $param->allowsNull());
|
|
+ $vars[$param->getName()] = (object)[
|
|
|
|
+ 'type' => $param->getType(),
|
|
|
|
+ 'required' => !($param->isOptional() || $param->allowsNull())
|
|
|
|
+ ];
|
|
else
|
|
else
|
|
- $vars[sprintf('%s-%s', static::namespace(), $param->getName())] = !($param->isOptional() || $param->allowsNull());
|
|
+ $vars[sprintf('%s-%s', static::namespace(), $param->getName())] = (object)[
|
|
|
|
+ 'type' => $param->getType(),
|
|
|
|
+ 'required' => !($param->isOptional() || $param->allowsNull())
|
|
|
|
+ ];
|
|
}
|
|
}
|
|
|
|
|
|
return $vars;
|
|
return $vars;
|
|
@@ -42,3 +48,4 @@ abstract class AbstractPostSerializable implements PostSerializableInterface {
|
|
return strtolower(basename(str_replace('\\', DIRECTORY_SEPARATOR, static::class)));
|
|
return strtolower(basename(str_replace('\\', DIRECTORY_SEPARATOR, static::class)));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
+
|