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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
|
package com.encora;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.data.domain.Sort;
import org.springframework.http.HttpStatus;
import org.springframework.web.bind.annotation.*;
import java.util.Date;
import java.util.List;
import java.util.Objects;
@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());
}
// Deletes a to do by index.
@DeleteMapping("/todos/{id}")
@ResponseStatus(value=HttpStatus.OK)
public void removeToDo(@PathVariable("id") Integer id) {
toDosRepository.deleteById(id);
}
// 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);
}
// Getting sorted to dos.
enum SortingsFields {
Id, Priority, DueDate
}
enum SortingOrders {
ASC, DESC
}
@GetMapping("/todos/{field}/{order}")
@ResponseStatus(value=HttpStatus.OK)
public List<ToDos> getSortedToDos(@PathVariable("field") SortingsFields field, @PathVariable("order") SortingOrders order) {
Sort sortingMethod = Sort.by(String.valueOf(field));
if (Objects.equals(String.valueOf(order), "DESC")) {
sortingMethod = sortingMethod.descending();
}
return toDosRepository.findAll(sortingMethod);
}
// Getting filtered to dos.
record toDoFilters (
String name,
String priority,
String done
) {
}
@GetMapping("/todos/filter")
@ResponseStatus(value=HttpStatus.OK)
public List<ToDos> getFilteredToDos(@RequestBody toDoFilters filters) throws Exception {
return toDosRepository.findAllWithFilter(filters.name(), filters.priority(), filters.done());
}
}
|