blob: 63c6a4843b62fb135c869f118eae40b81d351321 (
plain) (
blame)
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
|
package com.encora;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.http.HttpStatus;
import org.springframework.web.bind.annotation.*;
import java.util.Date;
import java.util.List;
@SpringBootApplication
@RestController
@RequestMapping("v1")
public class Main {
private final ToDosRepository toDosRepository;
public Main(ToDosRepository toDosRepository) {
this.toDosRepository = toDosRepository;
}
public Main() {
this.toDosRepository = new ToDosRepository();
}
public static void main(String[] args) {
SpringApplication.run(Main.class, args);
}
// Get all to dos.
@GetMapping("/todos")
@ResponseStatus(value=HttpStatus.OK)
public List<ToDos> getToDos() {
return toDosRepository.findAll();
}
// Add a new to do.
@ResponseStatus(value=HttpStatus.BAD_REQUEST, reason="Text is longer than 120 characters.")
public static class longerThanMaxException extends RuntimeException {}
record toDoBody(
String text,
Date dueDate,
Priority priority
) {
}
@PostMapping("/todos")
@ResponseStatus(value=HttpStatus.OK)
public void addToDo(@RequestBody toDoBody toDo) {
if (toDo.text().length() > 120) {
throw new longerThanMaxException();
}
ToDos todo = new ToDos();
todo.setText(toDo.text());
todo.setDueDate(toDo.dueDate());
todo.setPriority(toDo.priority());
toDosRepository.save(todo);
}
// Updates to do with new information
@ResponseStatus(value=HttpStatus.BAD_REQUEST, reason="No to do with such index.")
public static class toDoNotFound extends RuntimeException {}
@PutMapping("/todos/{id}")
@ResponseStatus(value=HttpStatus.OK)
public void editToDo(@PathVariable("id") Integer id, @RequestBody toDoBody toDo) {
ToDos selectedToDo = toDosRepository.getById(id);
if (selectedToDo == null) throw new toDoNotFound();
if (toDo.text() != null) {
if (toDo.text().length() > 120) throw new longerThanMaxException();
selectedToDo.setText(toDo.text());
}
if (toDo.dueDate() != null) selectedToDo.setDueDate(toDo.dueDate());
if (toDo.priority() != null) selectedToDo.setPriority(toDo.priority());
}
// Update a to do with "done".
@PostMapping("/todos/{id}/done")
@ResponseStatus(value=HttpStatus.OK)
public void setDone(@PathVariable("id") Integer id) {
ToDos selectedToDo = toDosRepository.getById(id);
if (selectedToDo == null) throw new toDoNotFound();
if (selectedToDo.isDone()) return;
selectedToDo.setDone(true);
selectedToDo.setDoneDate(new Date());
toDosRepository.save(selectedToDo);
}
// Update a to do to set "done" as false.
@PutMapping("/todos/{id}/undone")
@ResponseStatus(value=HttpStatus.OK)
public void setUndone(@PathVariable("id") Integer id) {
ToDos selectedToDo = toDosRepository.getById(id);
if (selectedToDo == null) throw new toDoNotFound();
if (!selectedToDo.isDone()) return;
selectedToDo.setDone(false);
selectedToDo.setDoneDate(null);
toDosRepository.save(selectedToDo);
}
}
|