From 37e2bc4f55eed597cf61b9513df097d1850691e6 Mon Sep 17 00:00:00 2001 From: Daniel Weipert Date: Mon, 13 Dec 2021 21:15:46 +0100 Subject: Add composer and routes --- .gitignore | 3 ++ composer.json | 21 ++++++++ public/index.php | 8 +++ src/App.php | 79 +++++++++++++++++++++++++++++ templates/config/templates/email/email.html | 2 + 5 files changed, 113 insertions(+) create mode 100644 .gitignore create mode 100644 composer.json create mode 100644 public/index.php create mode 100644 src/App.php create mode 100644 templates/config/templates/email/email.html diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..49b567d --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +/vendor/ +/content/ + diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..50e771c --- /dev/null +++ b/composer.json @@ -0,0 +1,21 @@ +{ + "name": "flat-file-forms/flat-file-forms", + "type": "project", + "autoload": { + "psr-4": { + "FlatFileForms\\": "src/" + } + }, + "authors": [ + { + "name": "Daniel Weipert", + "email": "code@drogueronin.de" + } + ], + "require": { + "twig/twig": "^3.3", + "symfony/http-foundation": "^6.0", + "symfony/routing": "^6.0", + "yosymfony/toml": "^1.0" + } +} diff --git a/public/index.php b/public/index.php new file mode 100644 index 0000000..1cd408e --- /dev/null +++ b/public/index.php @@ -0,0 +1,8 @@ + '', + ]; + $contentRoot = dirname(__DIR__) . '/content'; + + $method = $request->getMethod(); + $path = $request->getPathInfo(); + + // GET + if ($method == 'GET') { + if (str_ends_with($path, '/fields')) { + $content['data'] = Toml::parseFile($contentRoot . $path . '/_fields.toml'); + } + else { + $content['data'] = Toml::parseFile($contentRoot . $path . '.toml'); + } + } + + // POST + else if ($method == 'POST') { + if (str_ends_with($path, 'submit')) { + $formPath = $contentRoot . str_replace('/submit', '', $path); + + // build fields + $fields = $this->buildFields($formPath); + + foreach ($fields as $field) { + if ($field['required'] ?? false) { + $content['error'] = 'REQUIRED!'; + } + } + + $content['data'] = $fields; + $content['POST'] = $_POST; + } + } + + $response->headers->set('Content-Type', 'application/json'); + $response->setContent(json_encode($content)); + $response->send(); + } + + /** + * @param string $formPath + */ + public function buildFields($formPath) + { + $fields = Toml::parseFile($formPath . '/fields/_fields.toml')['field'] ?? []; + foreach ($fields as $key => $field) { + $field = array_merge($field, Toml::parseFile($formPath . '/fields/' . $field['file'])); + $fields[$key] = $field; + } + + return $fields; + } +} + diff --git a/templates/config/templates/email/email.html b/templates/config/templates/email/email.html new file mode 100644 index 0000000..3c706b1 --- /dev/null +++ b/templates/config/templates/email/email.html @@ -0,0 +1,2 @@ +

Hello this is E-Mail!

+ -- cgit v1.2.3