aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/com/encora/Main.java
blob: 7d810f66f9f539037dda79b645e3182ac0a7ce51 (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
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
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
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.text.DateFormat;
import java.text.SimpleDateFormat;
import java.util.*;

@SpringBootApplication
@RestController
@RequestMapping()
public class Main {
    // Edit this origin and set where the Front End is allocated.
    private static final String allowed_origin = "http://localhost:8080/";


    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.
    @CrossOrigin(origins=allowed_origin)
    @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
    ) {

    }
    @CrossOrigin(origins=allowed_origin)
    @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 {}

    @CrossOrigin(origins=allowed_origin)
    @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) {
            if (toDo.dueDate().equals(new Date(0))) {
                selectedToDo.setDueDate(null);
            } else {
                selectedToDo.setDueDate(toDo.dueDate());
            }
        }
        if (toDo.priority() != null)    selectedToDo.setPriority(toDo.priority());
    }


    // Deletes a to do by index.
    @CrossOrigin(origins=allowed_origin)
    @DeleteMapping("/todos/{id}")
    @ResponseStatus(value=HttpStatus.OK)
    public void removeToDo(@PathVariable("id") Integer id) {
        toDosRepository.deleteById(id);
    }


    // Update a to do with "done".
    @CrossOrigin(origins=allowed_origin)
    @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.
    @CrossOrigin(origins=allowed_origin)
    @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
    }
    @CrossOrigin(origins=allowed_origin)
    @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
    ) {

    }
    @CrossOrigin(origins=allowed_origin)
    @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());
    }


    // Retrieve last index used.
    @CrossOrigin(origins=allowed_origin)
    @GetMapping("/todos/lastIndex")
    @ResponseStatus(value=HttpStatus.OK)
    public Integer giveMeLastID() {
        return toDosRepository.lastId;
    }


    // Set filters and sorters for our to dos.
    record filtersAndSorters (
        toDoFilters filters,
        SortingsFields sortField,
        SortingOrders sortOrder
    ) {

    }
    @CrossOrigin(origins=allowed_origin)
    @PostMapping("/todos/setFiltSort")
    @ResponseStatus(value=HttpStatus.OK)
    public void setFiltersAndSorters(@RequestBody filtersAndSorters filAndSor) throws Exception {
        // Sorting method.
        Sort sortingMethod = Sort.by(String.valueOf(filAndSor.sortField()));
        if (Objects.equals(String.valueOf(filAndSor.sortOrder()), "DESC")) {
            sortingMethod = sortingMethod.descending();
        }

        // Filter to dos and then sort them.
        toDosRepository.refreshFilteredToDos(
                sortingMethod,
                filAndSor.filters().name(),
                filAndSor.filters().priority(),
                filAndSor.filters().done()
        );
    }


    // Return our todos filtered, sorted AND paginated.
    @CrossOrigin(origins=allowed_origin)
    @GetMapping("/todos/filtSort/{page}")
    @ResponseStatus(value=HttpStatus.OK)
    public List<ToDos> getFilteredToDos(@PathVariable("page") Integer page) {
        if(page <= 0) {
            throw new IllegalArgumentException("invalid page: " + page);
        }

        final int pageSize = 10;
        List<ToDos> myToDos = toDosRepository.getFilteredToDos();

        int fromIndex = (page - 1) * pageSize;
        if (myToDos.size() <= fromIndex) {
            return Collections.emptyList();
        }

        // toIndex exclusive
        return myToDos.subList(fromIndex, Math.min(fromIndex + pageSize, myToDos.size()));
    }


    // Return how many pages after filter and sorting.
    @CrossOrigin(origins=allowed_origin)
    @GetMapping("/todos/filtSort/pages")
    @ResponseStatus(value=HttpStatus.OK)
    public Integer getNumberOfPages() {
        // Number of items divided by page size.
        final int pageSize = 10;
        return (int) Math.ceil((double) toDosRepository.filteredToDos.size() / pageSize);
    }


    // Return the average time on completing to dos.
    @CrossOrigin(origins=allowed_origin)
    @GetMapping("/todos/average/{priority}")
    @ResponseStatus(value=HttpStatus.OK)
    public String getAverageTime(@PathVariable("priority") String priority) {
        String result = "";
        Double milliseconds = toDosRepository.getAverageCompletingTime(priority);

        if (milliseconds > 86400000) {
            // More than a day.
            Integer days = (int) (milliseconds / 86400000);
            result += String.valueOf(days) + " days, ";
        }

        // Convert the milliseconds into an hour, minute, second and
        // millisecond format.
        DateFormat simple = new SimpleDateFormat("HH:mm:ss:SSS");
        simple.setTimeZone(TimeZone.getTimeZone("GMT"));

        return result + simple.format(milliseconds);
    }
}