| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094 | 
							- <?php
 
- namespace 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 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::class);
 
-         $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->modular()) {
 
-             $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';
 
-                 if ($isJson) {
 
-                     $task = $uri->post('task') ?? $uri->param('task');
 
-                     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();
 
-                     }
 
-                 } else {
 
-                     $task = $uri->post('task');
 
-                     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);
 
-                 // 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 $form
 
-      */
 
-     public function addForm(?string $page_route, FormInterface $form)
 
-     {
 
-         $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);
 
-     }
 
- }
 
 
  |