. // }}} /** * Convert a Form from our declarative to Symfony's representation * * @package GNUsocial * @category Wrapper * * @author Hugo Sales * @copyright 2020-2021 Free Software Foundation, Inc http://www.fsf.org * @license https://www.gnu.org/licenses/agpl.html GNU AGPL v3 or later */ namespace App\Core; use App\Core\DB; use function App\Core\I18n\_m; use App\Core\Router; use App\Util\Common; use App\Util\Exception\ClientException; use App\Util\Exception\ServerException; use App\Util\Formatting; use Symfony\Component\Form\Extension\Core\Type\HiddenType; use Symfony\Component\Form\Extension\Core\Type\SubmitType; use Symfony\Component\Form\Form as SymfForm; use Symfony\Component\Form\FormFactoryInterface; use Symfony\Component\Form\FormInterface as SymfFormInterface; use Symfony\Component\HttpFoundation\RedirectResponse; use Symfony\Component\HttpFoundation\Request; /** * This class converts our own form representation to Symfony's * * Example: * ``` * $form = Form::create([ * ['content', TextareaType::class, ['label' => ' ', 'data' => '', 'attr' => ['placeholder' => _m($placeholder_string[$rand_key])]]], * ['attachments', FileType::class, ['label' => ' ', 'data' => null, 'multiple' => true, 'required' => false]], * ['visibility', ChoiceType::class, ['label' => _m('Visibility:'), 'expanded' => true, 'data' => 'public', 'choices' => [_m('Public') => 'public', _m('Instance') => 'instance', _m('Private') => 'private']]], * ['to', ChoiceType::class, ['label' => _m('To:'), 'multiple' => true, 'expanded' => true, 'choices' => $to_tags]], * ['post', SubmitType::class, ['label' => _m('Post')]], * ]); * ``` * turns into * ``` * \Symfony\Component\Form\Form { * config: Symfony\Component\Form\FormBuilder { ... } * ... * children: Symfony\Component\Form\Util\OrderedHashMap { * elements: array:5 [ * "content" => Symfony\Component\Form\Form { ... } * "attachments" => Symfony\Component\Form\Form { ... } * "visibility" => Symfony\Component\Form\Form { ... } * "to" => Symfony\Component\Form\Form { ... } * "post" => Symfony\Component\Form\SubmitButton { ... } * ] * ... * } * ... * } * ``` */ abstract class Form { private static ?FormFactoryInterface $form_factory; public static function setFactory($ff): void { self::$form_factory = $ff; } /** * Create a form with the given associative array $form as fields * * If the current request has a GET parameter `next`, adds `_next` hidden. Default values gotten * from the request, but can be overridden by `$extra_data['_next']` */ public static function create( array $form, ?object $target = null, array $extra_data = [], string $type = '\Symfony\Component\Form\Extension\Core\Type\FormType', array $form_options = [], ): SymfFormInterface { $name = $form[array_key_last($form)][0]; $r = Common::getRequest(); $form[] = ['_next', HiddenType::class, ['data' => $r->get('next') ?? $r->get('_next') ?? $r->getRequestUri()]]; $fb = self::$form_factory->createNamedBuilder($name, $type, data: null, options: array_merge($form_options, ['translation_domain' => false])); foreach ($form as [$key, $class, $options]) { if ($class == SubmitType::class && \in_array($key, ['save', 'publish', 'post', 'next'])) { Log::critical($m = "It's generally a bad idea to use {$key} as a form name, because it can conflict with other forms in the same page"); throw new ServerException($m); } if (isset($extra_data[$key])) { // @codeCoverageIgnoreStart $options['data'] = $extra_data[$key]; // @codeCoverageIgnoreEnd } elseif (!\is_null($target)) { $method = 'get' . ucfirst(Formatting::snakeCaseToCamelCase($key)); if (method_exists($target, $method)) { $options['data'] = $target->{$method}(); } } unset($options['hide']); if (isset($options['transformer'])) { $transformer = $options['transformer']; unset($options['transformer']); } $fb->add($key, $class, $options); if (isset($transformer)) { $fb->get($key)->addModelTransformer(new $transformer()); unset($transformer); } } return $fb->getForm(); } /** * Whether the given $field of $form has the `required` property * set, defaults to true */ public static function isRequired(array $form, string $field): bool { return $form[$field][2]['required'] ?? true; } /** * Handle the full life cycle of a form * * @param array $form_definition Creates it with a definition * @param null|object $target Must be a persistent DB object * @param array $extra_args If specified, is used as $target->set($data[$key], $extra_args[$key]) * * @throws \Doctrine\ORM\ORMException * @throws ServerException * * @see self::create and inserts the submitted values into the database */ public static function handle(array $form_definition, Request $request, ?object $target, array $extra_args = [], ?callable $before_step = null, ?callable $after_step = null, array $create_args = [], ?SymfForm $testing_only_form = null): mixed { $form = $testing_only_form ?? self::create($form_definition, $target, ...$create_args); $form->handleRequest($request); if ($request->getMethod() === 'POST' && $form->isSubmitted()) { if ($form->isValid()) { $data = $form->getData(); if (\is_null($target)) { return $data; } unset($data['translation_domain'], $data['save']); if (isset($before_step)) { // @codeCoverageIgnoreStart $before_step($data, $extra_args); // @codeCoverageIgnoreEnd } foreach ($data as $key => $val) { $method = 'set' . ucfirst(Formatting::snakeCaseToCamelCase($key)); if (method_exists($target, $method)) { if (isset($extra_args[$key])) { // @codeCoverageIgnoreStart $target->{$method}($val, $extra_args[$key]); // @codeCoverageIgnoreEnd } else { $target->{$method}($val); } } } if (isset($after_step)) { // @codeCoverageIgnoreStart $after_step($data, $extra_args); // @codeCoverageIgnoreEnd } DB::flush(); } else { throw new ClientException('Invalid Form submitted.'); } } return $form; } /** * Force a redirect to the `_next` form field, which is either a page to go after filling a * form, or the page where the form was (given we use form actions). This prevents the browser * from attempting to resubmit the form when the user merely ment to refresh the page * * @throws ClientException * @throws ServerException */ public static function forceRedirect(SymfFormInterface $form, Request $request): RedirectResponse { $next = $form->get('_next')->getData(); $url = Router::sanitizeLocalURL($next, ['next' => false]); if (!\is_null($url)) { return new RedirectResponse(url: $url); } else { $user = Common::user(); $user_id = !\is_null($user) ? $user->getId() : '(not logged in)'; Log::warning("Suspicious activity: User with ID {$user_id} submitted a form where the `_next` parameter is not a valid local URL ({$next})"); throw new ClientException(_m('Invalid form submission')); } } }