summaryrefslogtreecommitdiff
path: root/public/update/index.php
blob: 749f42966598517900ae7c9b2a37736e9d68a7f9 (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
<?php

declare(strict_types=1);

use DTS\TodoRepository;
use DTS\Old;
use DTS\Session;
use DTS\Validator;

use function DTS\Functions\respondAndExit;
use function DTS\Functions\redirectAndExit;

require_once(__DIR__.'/../../autoload.php');

$config = require_once(__DIR__.'/../../config.php');

$session = Session::getInstance();

if (filter_input(INPUT_SERVER, 'REQUEST_METHOD') !== 'POST') {
    respondAndExit(405, 'Method Not Allowed');
}

$id = filter_input(INPUT_POST, 'id');

$todos = new TodoRepository($config['path_to_repository']);

$todo = $todos->find($id);

if ($todo === null) {
    respondAndExit(404, 'Not Found');
}

$old = new Old($_REQUEST);

$session->set('old', $old);

$validator = new Validator($_REQUEST);

if ($validator->errors->count()) {
    $session->set('errors', $validator->errors);

    redirectAndExit("/edit?id=$todo->id");
}

$validated = $validator->validated;

$todo->task = $validated->task;
$todo->description = $validated->description;
$todo->tag = $validated->tag;

if (!$todos->update($todo)) {
    respondAndExit(500, 'Internal Server Error');
}

$session->set('message', 'Todo Updated');

redirectAndExit('/');