blob: c0df751e3a7b979b445a8a5976e2edd8afb96a9c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
|
<?php
namespace FlatFileForms;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\Response;
use Yosymfony\Toml\Toml;
class App
{
private array $routes = [
];
/**
* App constructor.
*/
public function __construct()
{
$request = Request::createFromGlobals();
$response = new Response();
$content = [
'data' => '',
];
$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;
}
}
|