| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105 | <?phpnamespace Grav\Plugin;use Composer\Autoload\ClassLoader;use Grav\Common\Data\ValidationException;use Grav\Common\Debugger;use Grav\Common\Filesystem\Folder;use Grav\Common\Grav;use Grav\Common\Page\Interfaces\PageInterface;use Grav\Common\Page\Pages;use Grav\Common\Page\Types;use Grav\Common\Plugin;use Grav\Common\Twig\Twig;use Grav\Common\Utils;use Grav\Common\Uri;use Grav\Common\Yaml;use Grav\Framework\Form\Interfaces\FormInterface;use Grav\Framework\Route\Route;use Grav\Plugin\Form\Form;use Grav\Plugin\Form\Forms;use ReCaptcha\ReCaptcha;use ReCaptcha\RequestMethod\CurlPost;use RocketTheme\Toolbox\File\JsonFile;use RocketTheme\Toolbox\File\YamlFile;use RocketTheme\Toolbox\File\File;use RocketTheme\Toolbox\Event\Event;/** * Class FormPlugin * @package Grav\Plugin */class FormPlugin extends Plugin{    /** @var array */    public $features = [        'blueprints' => 1000    ];    /** @var Form */    protected $form;    /** @var array */    protected $forms = [];    /** @var array */    protected $flat_forms = [];    /** @var array */    protected $active_forms = [];    /** @var array */    protected $json_response = [];    /** @var bool */    protected $recache_forms = false;    /**     * @return bool     */    public static function checkRequirements(): bool    {        return version_compare(GRAV_VERSION, '1.6', '>');    }    /**     * @return array     */    public static function getSubscribedEvents()    {        if (!static::checkRequirements()) {            return [];        }        return [            'onPluginsInitialized' => [                ['autoload', 100000],                ['onPluginsInitialized', 0]            ],            'onTwigTemplatePaths' => ['onTwigTemplatePaths', 0]        ];    }    /**     * [onPluginsInitialized:100000] Composer autoload.     *     * @return ClassLoader     */    public function autoload()    {        return require __DIR__ . '/vendor/autoload.php';    }    /**     * Initialize forms from cache if possible     */    public function onPluginsInitialized()    {        // Backwards compatibility for plugins that use forms.        class_alias(Form::class, 'Grav\Plugin\Form');        $this->grav['forms'] = function () {            $forms = new Forms();            $grav = Grav::instance();            $event = new Event(['forms' => $forms]);            $grav->fireEvent('onFormRegisterTypes', $event);            return $forms;        };        if ($this->isAdmin()) {            $this->enable([                'onPageInitialized' => ['onPageInitialized', 0],                'onGetPageTemplates' => ['onGetPageTemplates', 0],            ]);            return;        }        // Mini Keep-Alive Logic        $task = $this->grav['uri']->param('task');        if ($task && $task === 'keep-alive') {            exit;        }        $this->enable([            'onPageProcessed' => ['onPageProcessed', 0],            'onPagesInitialized' => ['onPagesInitialized', 0],            'onPageInitialized' => ['onPageInitialized', 0],            'onTwigInitialized' => ['onTwigInitialized', 0],            'onTwigPageVariables' => ['onTwigVariables', 0],            'onTwigSiteVariables' => ['onTwigVariables', 0],            'onFormValidationProcessed' => ['onFormValidationProcessed', 0],        ]);    }    public function onGetPageTemplates(Event $event)    {        /** @var Types $types */        $types = $event->types;        $types->register('form');    }    /**     * Process forms after page header processing, but before caching     *     * @param Event $e     */    public function onPageProcessed(Event $e)    {        /** @var PageInterface $page */        $page = $e['page'];        $pageForms = $page->forms();        if (!$pageForms) {            return;        }        // Force never_cache_twig if modular form (recursively up)        $current = $page;        while ($current && $current->modularTwig()) {            $header = $current->header();            $header->never_cache_twig = true;            $current = $current->parent();        }        $parent = $current && $current !== $page ? $current : null;        $page_route = $page->home() ? '/' : $page->route();        // If the form was in the modular page, we need to add the form into the parent page as well.        if ($parent) {            $parent->addForms($pageForms);            $parent_route = $parent->home() ? '/' : $parent->route();        }        /** @var Forms $forms */        $forms = $this->grav['forms'];        // Store the page forms in the forms instance        foreach ($pageForms as $name => $form) {            if (isset($parent, $parent_route)) {                $this->addForm($parent_route, $forms->createPageForm($parent, $name, $form));            }            $this->addForm($page_route, $forms->createPageForm($page, $name, $form));        }    }    /**     * Initialize all the forms     */    public function onPagesInitialized()    {        $this->loadCachedForms();    }    /**     * Catches form processing if user posts the form.     */    public function onPageInitialized()    {        $submitted = false;        $this->json_response = [];        // Save cached forms.        if ($this->recache_forms) {            $this->saveCachedForms();        }        /** @var PageInterface $page */        $page = $this->grav['page'];        // Force rebuild form when form has not been built and form cache expired.        // This happens when form cache expires before the page cache        // and then does not trigger 'onPageProcessed' event.        if (!$this->forms) {            $this->onPageProcessed(new Event(['page' => $page]));        }        // Enable form events if there's a POST        if ($this->shouldProcessForm()) {            $this->enable([                'onFormProcessed' => ['onFormProcessed', 0],                'onFormValidationError' => ['onFormValidationError', 0],                'onFormFieldTypes' => ['onFormFieldTypes', 0],            ]);            /** @var Uri $uri */            $uri = $this->grav['uri'];            /** @var Forms $forms */            $forms = $this->grav['forms'];            $form = $forms->getActiveForm();            if ($form instanceof Form) {                // Post the form                $isJson = $uri->extension() === 'json';                $task = $uri->post('task') ?? $uri->param('task');                if ($isJson) {                    if ($task === 'store-state') {                        $this->json_response = $form->storeState();                    } elseif ($task === 'clear-state') {                        $this->json_response = $form->clearState();                    } elseif ($task === 'file-remove' || $uri->post('__form-file-remover__')) {                        $this->json_response = $form->filesSessionRemove();                    } elseif ($task === 'file-upload' || $uri->post('__form-file-uploader__')) {                        $this->json_response = $form->uploadFiles();                    }                }                if (empty($this->json_response)) {                    if ($task === 'clear-state') {                        $form->getFlash()->delete();                        $redirect = $form->getBlueprint()->get('form/clear_redirect_url') ?? $page->route();                        $this->grav->redirect($redirect, 303);                    } else {                        $form->post();                        $submitted = true;                    }                }                // Return JSON if we're not in form template.                if ($this->json_response && $page->template() !== 'form') {                    $status = $this->json_response['status'] ?? null;                    header('Content-Type: application/json');                    http_response_code($status === 'error' ? 400 : 200);                    echo json_encode($this->json_response);                    exit;                }            }            // Clear flash objects for previously uploaded files            // whenever the user switches page / reloads            // ignoring any JSON / extension call            if (!$submitted && null === $uri->extension()) {                // Discard any previously uploaded files session.                // and if there were any uploaded file, remove them from the filesystem                if ($flash = $this->grav['session']->getFlashObject('files-upload')) {                    $flash = new \RecursiveIteratorIterator(new \RecursiveArrayIterator($flash));                    foreach ($flash as $key => $value) {                        if ($key !== 'tmp_name') {                            continue;                        }                        @unlink($value);                    }                }            }        } else {            // There is no active form to be posted.            // Check all the forms for the current page; we are looking for forms with remember state turned on with random unique id.            /** @var Route $route */            $route = $this->grav['route'];            $pageForms = $this->forms[$route->getRoute()] ?? [];            foreach ($pageForms as $formName => $form) {                if ($form->get('remember_redirect')) {                    // Found one; we need to check if unique id is set.                    $formParam = $form->get('uniqueid_param', 'fid');                    $uniqueId = $route->getGravParam($formParam);                    if ($uniqueId && preg_match('/[a-z\d]+/', $uniqueId)) {                        // URL contains unique id, initialize the current form.                        $form->setUniqueId($uniqueId);                        $form->initialize();                        /** @var Forms $forms */                        $forms = $this->grav['forms'];                        $forms->setActiveForm($form);                        break;                    }                    // Append unique id to the URL and redirect.                    $route = $route->withGravParam($formParam, $form->getUniqueId());                    $page->redirect((string)$route->toString());                    // TODO: Do we want to add support for multiple forms with remembered state?                    break;                }            }        }    }    /**     * Add simple `forms()` Twig function     */    public function onTwigInitialized()    {        $this->grav['twig']->twig()->addFunction(            new \Twig_SimpleFunction('forms', [$this, 'getForm'])        );        $this->grav['twig']->twig()->getExtension('Twig_Extension_Core')->setEscaper('yaml', function ($twig, $string, $charset) {            return Yaml::dump($string);        }        );    }    /**     * Add current directory to twig lookup paths.     */    public function onTwigTemplatePaths()    {        $this->grav['twig']->twig_paths[] = __DIR__ . '/templates';    }    /**     * Make form accessible from twig.     *     * @param Event $event     */    public function onTwigVariables(Event $event = null)    {        if ($event && isset($event['page'])) {            $page = $event['page'];        } else {            $page = $this->grav['page'];        }        $twig = $this->grav['twig'];        if (!isset($twig->twig_vars['form'])) {            $twig->twig_vars['form'] = $this->form($page);        }        if ($this->config->get('plugins.form.built_in_css')) {            $this->grav['assets']->addCss('plugin://form/assets/form-styles.css');        }        $twig->twig_vars['form_max_filesize'] = Form::getMaxFilesize();        $twig->twig_vars['form_json_response'] = $this->json_response;    }    /**     * Handle form processing instructions.     *     * @param Event $event     * @throws \Exception     */    public function onFormProcessed(Event $event)    {        /** @var Form $form */        $form = $event['form'];        $action = $event['action'];        $params = $event['params'];        $this->process($form);        switch ($action) {            case 'captcha':                $captcha_config = $this->config->get('plugins.form.recaptcha');                $secret = $params['recaptcha_secret'] ?? $params['recatpcha_secret'] ?? $captcha_config['secret_key'];                /** @var Uri $uri */                $uri = $this->grav['uri'];                $action = $form->value('action');                $hostname = $uri->host();                $ip = Uri::ip();                $recaptcha = new ReCaptcha($secret);                if (extension_loaded('curl')) {                    $recaptcha = new ReCaptcha($secret, new CurlPost());                }                // get captcha version                $captcha_version = $captcha_config['version'] ?? 2;                // Add version 3 specific options                if ($captcha_version == 3) {                    $token = $form->value('token');                    $resp = $recaptcha                        ->setExpectedHostname($hostname)                        ->setExpectedAction($action)                        ->setScoreThreshold(0.5)                        ->verify($token, $ip);                } else {                    $token = $form->value('g-recaptcha-response', true);                    $resp = $recaptcha                        ->setExpectedHostname($hostname)                        ->verify($token, $ip);                }                if (!$resp->isSuccess()) {                    $errors = $resp->getErrorCodes();                    $message = $this->grav['language']->translate('PLUGIN_FORM.ERROR_VALIDATING_CAPTCHA');                    $fields = $form->value()->blueprints()->get('form/fields');                    foreach ($fields as $field) {                        $type = $field['type'] ?? 'text';                        $field_message = $field['recaptcha_not_validated'] ?? null;                        if ($type === 'captcha' && $field_message) {                            $message = $field_message;                            break;                        }                    }                    $this->grav->fireEvent('onFormValidationError', new Event([                        'form' => $form,                        'message' => $message                    ]));                    $this->grav['log']->addWarning('Form reCAPTCHA Errors: [' . $uri->route() . '] ' . json_encode($errors));                    $event->stopPropagation();                    return;                }                break;            case 'timestamp':                $label = $params['label'] ?? 'Timestamp';                $format = $params['format'] ?? 'Y-m-d H:i:s';                $blueprint = $form->value()->blueprints();                $blueprint->set('form/fields/timestamp', ['name' => 'timestamp', 'label' => $label, 'type' => 'hidden']);                $now = new \DateTime('now');                $date_string = $now->format($format);                $form->setFields($blueprint->fields());                $form->setData('timestamp', $date_string);                break;            case 'ip':                $label = $params['label'] ?? 'User IP';                $blueprint = $form->value()->blueprints();                $blueprint->set('form/fields/ip', ['name' => 'ip', 'label' => $label, 'type' => 'hidden']);                $form->setFields($blueprint->fields());                $form->setData('ip', Uri::ip());                break;            case 'message':                $translated_string = $this->grav['language']->translate($params);                $vars = array(                    'form' => $form                );                /** @var Twig $twig */                $twig = $this->grav['twig'];                $processed_string = $twig->processString($translated_string, $vars);                $form->message = $processed_string;                break;            case 'redirect':                $this->grav['session']->setFlashObject('form', $form);                $url = ((string)$params);                $vars = array(                    'form' => $form                );                /** @var Twig $twig */                $twig = $this->grav['twig'];                $url = $twig->processString($url, $vars);                $message = $form->message;                if ($message) {                    $this->grav['messages']->add($form->message, 'success');                }                $event['redirect'] = $url;                $event->stopPropagation();                break;            case 'reset':                if (Utils::isPositive($params)) {                    $message = $form->message;                    $form->reset();                    $form->message = $message;                }                break;            case 'display':                $route = (string)$params;                if (!$route || $route[0] !== '/') {                    /** @var Uri $uri */                    $uri = $this->grav['uri'];                    $route = rtrim($uri->route(), '/') . '/' . ($route ?: '');                }                /** @var Twig $twig */                $twig = $this->grav['twig'];                $twig->twig_vars['form'] = $form;                /** @var Pages $pages */                $pages = $this->grav['pages'];                $page = $pages->dispatch($route, true);                if (!$page) {                    throw new \RuntimeException('Display page not found. Please check the page exists.', 400);                }                unset($this->grav['page']);                $this->grav['page'] = $page;                break;            case 'remember':                foreach ($params as $remember_field) {                    $field_cookie = 'forms-' . $form['name'] . '-' . $remember_field;                    setcookie($field_cookie, $form->value($remember_field), time() + 60 * 60 * 24 * 60);                }                break;            case 'upload':                if ($params !== false) {                    $form->copyFiles();                }                break;            case 'save':                $prefix = $params['fileprefix'] ?? '';                $format = $params['dateformat'] ?? 'Ymd-His-u';                $raw_format = (bool)($params['dateraw'] ?? false);                $postfix = $params['filepostfix'] ?? '';                $ext = !empty($params['extension']) ? '.' . trim($params['extension'], '.') : '.txt';                $filename = $params['filename'] ?? '';                $folder = !empty($params['folder']) ? $params['folder'] : $form->getName();                $operation = $params['operation'] ?? 'create';                if (!$filename) {                    if ($operation === 'add') {                        throw new \RuntimeException('Form save: \'operation: add\' is only supported with a static filename');                    }                    $filename = $prefix . $this->udate($format, $raw_format) . $postfix . $ext;                }                /** @var Twig $twig */                $twig = $this->grav['twig'];                $vars = [                    'form' => $form                ];                // Process with Twig                $filename = $twig->processString($filename, $vars);                $locator = $this->grav['locator'];                $path = $locator->findResource('user-data://', true);                $dir = $path . DS . $folder;                $fullFileName = $dir . DS . $filename;                if (!empty($params['raw']) || !empty($params['template'])) {                    // Save data as it comes from the form.                    if ($operation === 'add') {                        throw new \RuntimeException('Form save: \'operation: add\' is not supported for raw files');                    }                    switch ($ext) {                        case '.yaml':                            $file = YamlFile::instance($fullFileName);                            break;                        case '.json':                            $file = JsonFile::instance($fullFileName);                            break;                        default:                            throw new \RuntimeException('Form save: Unsupported RAW file format, please use either yaml or json');                    }                    $content = $form->getData();                    $data = [                        '_data_type' => 'form',                        'template' => !empty($params['template']) ? $params['template'] : null,                        'name' => $form->getName(),                        'timestamp' => date('Y-m-d H:i:s'),                        'content' => $content ? $content->toArray() : []                    ];                    $file->lock();                    $form->copyFiles();                    $file->save(array_filter($data));                    break;                }                $file = File::instance($fullFileName);                $file->lock();                $form->copyFiles();                if ($operation === 'create') {                    $body = $twig->processString($params['body'] ?? '{% include "forms/data.txt.twig" %}', $vars);                    $file->save($body);                } elseif ($operation === 'add') {                    if (!empty($params['body'])) {                        // use body similar to 'create' action and append to file as a log                        $body = $twig->processString($params['body'], $vars);                        // create folder if it doesn't exist                        if (!file_exists($dir)) {                            Folder::create($dir);                        }                        // append data to existing file                        $file->unlock();                        file_put_contents($fullFileName, $body, FILE_APPEND | LOCK_EX);                    } else {                        // serialize YAML out to file for easier parsing as data sets                        $vars = $vars['form']->value()->toArray();                        foreach ($form->fields as $field) {                            if (!empty($field['process']['ignore'])) {                                unset($vars[$field['name']]);                            }                        }                        if (file_exists($fullFileName)) {                            $data = Yaml::parse($file->content());                            if (\count($data) > 0) {                                array_unshift($data, $vars);                            } else {                                $data[] = $vars;                            }                        } else {                            $data[] = $vars;                        }                        $file->save(Yaml::dump($data));                    }                }                break;            case 'call':                $callable = $params;                if (\is_array($callable) && !method_exists($callable[0], $callable[1])) {                    throw new \RuntimeException('Form cannot be processed (method does not exist)');                }                if (\is_string($callable) && !\function_exists($callable)) {                    throw new \RuntimeException('Form cannot be processed (function does not exist)');                }                $callable($form);                break;        }    }    /**     * Custom field logic can go in here     *     * @param Event $event     */    public function onFormValidationProcessed(Event $event)    {        // special check for honeypot field        foreach ($event['form']->fields() as $field) {            if ($field['type'] === 'honeypot' && !empty($event['form']->value($field['name']))) {                throw new ValidationException('Are you a bot?');            }        }    }    /**     * Handle form validation error     *     * @param Event $event An event object     * @throws \Exception     */    public function onFormValidationError(Event $event)    {        $form = $event['form'];        if (isset($event['message'])) {            $form->status = 'error';            $form->message = $event['message'];            $form->messages = $event['messages'];        }        $uri = $this->grav['uri'];        $route = $uri->route();        /** @var Twig $twig */        $twig = $this->grav['twig'];        $twig->twig_vars['form'] = $form;        /** @var Pages $pages */        $pages = $this->grav['pages'];        $page = $pages->dispatch($route, true);        if ($page) {            unset($this->grav['page']);            $this->grav['page'] = $page;        }        $event->stopPropagation();    }    /**     * Add a form to the forms plugin     *     * @param string|null $page_route     * @param FormInterface|null $form     */    public function addForm(?string $page_route, ?FormInterface $form)    {        if (null === $form) {            return;        }        $name = $form->getName();        if (!isset($this->forms[$page_route][$name])) {            $this->forms[$page_route][$name] = $form;            $this->flattenForms();            $this->recache_forms = true;        }    }    /**     * function to get a specific form     *     * @param null|array|string $data optional form `name`     *     * @return FormInterface|null     */    public function getForm($data = null)    {        if (\is_array($data)) {            $form_name = $data['name'] ?? null;            $page_route = $data['route'] ?? null;        } elseif (\is_string($data)) {            $form_name = $data;            $page_route = null;        } else {            $form_name = null;            $page_route = null;        }        // if no form name, use the first form found in the page        if (!$form_name) {            // If page route not provided, use the current page            if (!$page_route) {                // Get page route with a fallback using current URI if page not initialized yet                $page_route = $this->grav['page']->route() ?: $this->getCurrentPageRoute();            }            if (!empty($this->forms[$page_route])) {                $forms = $this->forms[$page_route];                $first_form = reset($forms) ?: null;                return $first_form;            } else {                //No form on this route. Try looking up in the current page first                /** @var Forms $forms */                $forms = $this->grav['forms'];                return $forms->createPageForm($this->grav['page']);            }        }        // return the form you are looking for if available        return $this->getFormByName($form_name);    }    /**     * Get list of form field types specified in this plugin. Only special types needs to be listed.     *     * @return array     */    public function getFormFieldTypes()    {        return [            'avatar' => [                'input@' => false            ],            'captcha' => [                'input@' => false            ],            'columns' => [                'input@' => false            ],            'column' => [                'input@' => false            ],            'conditional' => [                'input@' => false            ],            'display' => [                'input@' => false            ],            'fieldset' => [                'input@' => false            ],            'file' => [                'array' => true,                'validate' => [                    'type' => 'ignore'                ]            ],            'formname' => [                'input@' => false            ],            'honeypot' => [                'input@' => false            ],            'ignore' => [                'input@' => false            ],            'key' => [                'input@' => false            ],            'section' => [                'input@' => false            ],            'spacer' => [                'input@' => false            ],            'tabs' => [                'input@' => false            ],            'tab' => [                'input@' => false            ],            'uniqueid' => [                'input@' => false            ],            'value' => [                'input@' => false            ]        ];    }    /**     * Process a form     *     * Currently available processing tasks:     *     * - fillWithCurrentDateTime     *     * @param Form $form     */    protected function process($form)    {        foreach ($form->fields as $field) {            if (!empty($field['process']['fillWithCurrentDateTime'])) {                $form->setData($field['name'], gmdate('D, d M Y H:i:s', time()));            }        }    }    /**     * Get current page's route     *     * @return mixed     */    protected function getCurrentPageRoute()    {        $path = $this->grav['uri']->route();        $path = $path ?: '/';        return $path;    }    /**     * Retrieve a form based on the form name     *     * @param $form_name     * @return mixed     */    protected function getFormByName($form_name)    {        $form = $this->active_forms[$form_name] ?? null;        if (!$form) {            $form = $this->flat_forms[$form_name] ?? null;            if (!$form) {                return null;            }            // Reset form to change the cached unique id and to fire onFormInitialized event.            $form->setUniqueId('');            $form->reset();            // Register form to the active forms to get the same instance back next time.            $this->active_forms[$form_name] = $form;        }        return $form;    }    /**     * Determine if the page has a form submission that should be processed     *     * @return bool     */    protected function shouldProcessForm()    {        $uri = $this->grav['uri'];        $nonce = $uri->post('form-nonce');        $status = $nonce ? true : false; // php72 quirk?        $refresh_prevention = null;        if ($status && $form = $this->form()) {            // Make sure form is something we recognize.            if (!$form instanceof Form) {                return false;            }            // Set page template if passed by form            if (isset($form->template)) {                $this->grav['page']->template($form->template);            }            if (isset($form->refresh_prevention)) {                $refresh_prevention = (bool)$form->refresh_prevention;            } else {                $refresh_prevention = $this->config->get('plugins.form.refresh_prevention', false);            }            $unique_form_id = $form->getUniqueId();            if ($refresh_prevention && $unique_form_id) {                if ($this->grav['session']->unique_form_id !== $unique_form_id) {                    $isJson = $uri->extension() === 'json';                    // AJAX tasks aren't submitting                    if (!$isJson || !($uri->post('__form-file-uploader__') || $uri->post('__form-file-remover__'))) {                        $this->grav['session']->unique_form_id = $unique_form_id;                    }                } else {                    $status = false;                    $form->message = $this->grav['language']->translate('PLUGIN_FORM.FORM_ALREADY_SUBMITTED');                    $form->status = 'error';                }            }        }        return $status;    }    /**     * Flatten the forms array into something that can be more easily searched     */    protected function flattenForms()    {        $this->flat_forms = Utils::arrayFlatten($this->forms);    }    /**     * Get the current form, should already be processed but can get it directly from the page if necessary     *     * @param PageInterface|null $page     * @return Form|null     */    protected function form(PageInterface $page = null)    {        // Regenerate list of flat_forms if not already populated        if (empty($this->flat_forms)) {            $this->flattenForms();        }        /** @var Forms $forms */        $forms = $this->grav['forms'];        $form = $forms->getActiveForm();        if (null === $form) {            // try to get the page if possible            if (null === $page) {                $page = $this->grav['page'];            }            // Try to find the posted form if available.            $form_name = $this->grav['uri']->post('__form-name__', FILTER_SANITIZE_STRING);            $unique_id = $this->grav['uri']->post('__unique_form_id__', FILTER_SANITIZE_STRING);            if (!$form_name) {                $form_name = $page ? $page->slug() : null;            }            $form = $this->getFormByName($form_name);            // last attempt using current page's form            if (!$form && $page) {                $form = $forms->createPageForm($page);            }            if ($form) {                // Only set posted unique id if the form name matches to the one that was posted.                if ($unique_id && $form_name === $form->getFormName()) {                    $form->setUniqueId($unique_id);                    $form->initialize();                }                $forms->setActiveForm($form);            }        }        return $form;    }    /**     * @param PageInterface $page     * @param string|int|null $name     * @param array $form     * @return Form|null     * @deprecated     */    protected function createForm(PageInterface $page, $name = null, $form = null)    {        $header = $page->header();        if (isset($header->form) || isset($header->forms)) {            return new Form($page, $name, $form);        }        return null;    }    /**     * Load cached forms and merge with any currently found forms     */    protected function loadCachedForms()    {        // Get and set the cache of forms if it exists        try {            [$forms] = $this->grav['cache']->fetch($this->getFormCacheId());        } catch (\Exception $e) {            // Couldn't fetch cached forms.            $forms = null;            /** @var Debugger $debugger */            $debugger = Grav::instance()['debugger'];            $debugger->addMessage(sprintf('Unserializing cached forms failed: %s', $e->getMessage()), 'error');        }        if (!\is_array($forms)) {            return;        }        // Only update the forms if it's not empty        if (!empty($forms)) {            $this->forms = array_merge($this->forms, $forms);            $this->flattenForms();        }    }    /**     * Save the current state of the forms     */    protected function saveCachedForms()    {        // Save the current state of the forms to cache        if ($this->recache_forms) {            $this->recache_forms = false;            $this->grav['cache']->save($this->getFormCacheId(), [$this->forms]);        }    }    /**     * Get the current page cache based id for the forms cache     *     * @return string     */    protected function getFormCacheId()    {        return $this->grav['pages']->getPagesCacheId() . '-form-plugin';    }    /**     * Create unix timestamp for storing the data into the filesystem.     *     * @param string $format     * @param bool $raw     *     * @return string     */    protected function udate($format = 'u', $raw = false)    {        $utimestamp = microtime(true);        if ($raw) {            return date($format);        }        $timestamp = floor($utimestamp);        $milliseconds = round(($utimestamp - $timestamp) * 1000000);        return date(preg_replace('`(?<!\\\\)u`', \sprintf('%06d', $milliseconds), $format), $timestamp);    }}
 |