aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/com/encora/ToDosRepository.java
blob: 9333cd9bfa3bab3e6d657c6a16e0fefdd0bb6c3d (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
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
package com.encora;

// Uncomment this for using a database instead.
//public interface ToDosRepository extends JpaRepository<ToDos, Integer>{
//    // Get to dos list filtered.
//    public List<ToDos> findAllWithFilter(String name, String priority, String done) throws Exception {
//        // Use Queries to filter your to dos.
//        return null;
//    }
//}

// Comment ALL of this if using a database.
import org.springframework.data.domain.Example;
import org.springframework.data.domain.Page;
import org.springframework.data.domain.Pageable;
import org.springframework.data.domain.Sort;
import org.springframework.data.jpa.repository.JpaRepository;
import org.springframework.data.repository.query.FluentQuery;

import java.util.*;
import java.util.function.Function;
import java.util.stream.Collectors;

public class ToDosRepository implements JpaRepository<ToDos, Integer> {
    Integer lastId;
    List<ToDos> todos;
    String currentSorting;
    List<ToDos> filteredToDos;
    List<String> currentFilters;

    // Constructor
    public ToDosRepository() {
        this.lastId = 0;
        this.todos = new ArrayList<>();
        this.currentSorting = "id";
        this.filteredToDos = new ArrayList<>();
        this.currentFilters = List.of("", "All", "All");
    }

    // Return all to dos.
    @Override
    public List<ToDos> findAll() {
        return this.todos;
    }

    // Return all to dos and sorted.
    @Override
    public List<ToDos> findAll(Sort sort) {
        List<ToDos> sortedList = new ArrayList<>(this.todos);

        try {
            Comparator<ToDos> comparator = this.getToDoComparator(sort);
            Collections.sort(sortedList, comparator);
        } catch (Exception e) {
            throw new RuntimeException(e);
        }

        return sortedList;
    }

    // Save new element.
    @Override
    public <S extends ToDos> S save(S entity) {
        if (entity.getId() != null) {
            // If the entity has an ID, search for it in our list of to dos and
            // replace it.
            ToDos selectedToDo;

            for (int index = 0; index < this.todos.size(); index++) {
                selectedToDo = this.todos.get(index);
                if (Objects.equals(selectedToDo.getId(), entity.getId())) {
                    this.todos.set(index, entity);
                    return null;
                }
            }
        } else {
            // If entity doesn't have an ID, assign it a new one.
            entity.setId(++this.lastId);
        }

        // If the ID couldn't be found or the entity didn't exist, append the
        // entity to our list.
        this.todos.add(entity);

        return null;
    }

    // Retrieve a to do.
    @Override
    public ToDos getById(Integer integer) {
        ToDos selectedToDo;

        for (int index = 0; index < this.todos.size(); index++) {
            selectedToDo = this.todos.get(index);
            if (Objects.equals(selectedToDo.getId(), integer)) {
                return selectedToDo;
            }
        }

        return null;
    }

    // Delete a to do.
    @Override
    public void deleteById(Integer integer) {
        ToDos selectedToDo;

        for (int index = 0; index < this.todos.size(); index++) {
            selectedToDo = this.todos.get(index);
            if (Objects.equals(selectedToDo.getId(), integer)) {
                this.todos.remove(index);
                break;
            }
        }
    }

    // Get to dos list filtered.
    public List<ToDos> findAllWithFilter(String name, String priority, String done) throws Exception {
        List<ToDos> filtered = new ArrayList<>(this.todos);

        if (name != null && !name.equals("")) {
            filtered = filtered.stream()
                    .filter(todo -> todo.getText().contains(name))
                    .collect(Collectors.toList());
        }
        if (priority != null && !priority.equalsIgnoreCase("all")) {
            filtered = filtered.stream()
                    .filter(todo -> Objects.equals(String.valueOf(todo.getPriority()), priority))
                    .collect(Collectors.toList());
        }
        if (done != null && !done.equalsIgnoreCase("all")) {
            switch (done) {
                case "Done":
                    filtered = filtered.stream()
                            .filter(ToDos::isDone)
                            .collect(Collectors.toList());
                    break;

                case "Undone":
                    filtered = filtered.stream()
                            .filter(todo -> !todo.isDone())
                            .collect(Collectors.toList());
                    break;

                default:
                    throw new Exception("Filtering not supported on 'done'.");
            }
        }

        return filtered;
    }

    private Comparator<ToDos> getToDoComparator(Sort sort) throws Exception {
        // Personal function. Creates a `Comparator` based on the `sort`
        // parameter. This is for us to successfully sort our List without the
        // need of a database.
        String sortString = sort.toString();    // <- '{field}: {order}'
        String[] sortCriteria = sortString.split(": ");

        String field = sortCriteria[0];
        String order = sortCriteria[1];

        Comparator<ToDos> comparator = null;
        switch (field) {
            case "Id":
                comparator = Comparator.comparing(ToDos::getId);
                break;

            case "Priority":
                comparator = Comparator.comparing(ToDos::getPriority);
                break;

            case "DueDate":
                comparator = Comparator.comparing(ToDos::getDueDate, Comparator.nullsLast(Comparator.naturalOrder()));
                break;

            default:
                throw new Exception("Field sorting not implemented.");
        }

        if (order.equalsIgnoreCase("desc")) {
            comparator = comparator.reversed();
        }
        return comparator;
    }


    // Filter and then sort all of our to dos.
    public void refreshFilteredToDos(Sort sort, String name, String priority, String done) throws Exception {
        try {
            Comparator<ToDos> comparator = this.getToDoComparator(sort);

            this.filteredToDos = this.findAllWithFilter(name, priority, done);
            this.filteredToDos.sort(comparator);
        } catch (Exception e) {
            throw new RuntimeException(e);
        }
    }

    public List<ToDos> getFilteredToDos() {
        return this.filteredToDos;
    }

    public Double getAverageCompletingTime(String priority) {
        List<Double> recordedTimes = new ArrayList<>();

        if (priority.equalsIgnoreCase("all")) {
            for (ToDos todo : this.todos) {
                if (!todo.isDone()) {
                    continue;
                }
                recordedTimes.add(
                        (double) (todo.getDoneDate().getTime() - todo.getCreationDate().getTime())
                );
            }
        } else {
            for (ToDos todo : this.todos) {
                if (!todo.isDone() || !Objects.equals(String.valueOf(todo.getPriority()), priority)) {
                    continue;
                }
                recordedTimes.add(
                        (double) (todo.getDoneDate().getTime() - todo.getCreationDate().getTime())
                );
            }
        }

        if (recordedTimes.size() == 0) {
            return (double) 0;
        }
        Double valuesSum = (double) 0;
        for (Double d : recordedTimes) {
            valuesSum += d;
        }
        return valuesSum / (double) recordedTimes.size();
    }

    /*
    *         N O T   Y E T   D E F I N E D .
    */
    @Override
    public void flush() {

    }

    @Override
    public <S extends ToDos> S saveAndFlush(S entity) {
        return null;
    }

    @Override
    public <S extends ToDos> List<S> saveAllAndFlush(Iterable<S> entities) {
        return null;
    }

    @Override
    public void deleteAllInBatch(Iterable<ToDos> entities) {

    }

    @Override
    public void deleteAllByIdInBatch(Iterable<Integer> integers) {

    }

    @Override
    public void deleteAllInBatch() {

    }

    @Override
    public ToDos getOne(Integer integer) {
        return null;
    }

    @Override
    public ToDos getReferenceById(Integer integer) {
        return null;
    }

    @Override
    public <S extends ToDos> Optional<S> findOne(Example<S> example) {
        return Optional.empty();
    }

    @Override
    public <S extends ToDos> List<S> findAll(Example<S> example) {
        return null;
    }

    @Override
    public <S extends ToDos> List<S> findAll(Example<S> example, Sort sort) {
        return null;
    }

    @Override
    public <S extends ToDos> Page<S> findAll(Example<S> example, Pageable pageable) {
        return null;
    }

    @Override
    public <S extends ToDos> long count(Example<S> example) {
        return 0;
    }

    @Override
    public <S extends ToDos> boolean exists(Example<S> example) {
        return false;
    }

    @Override
    public <S extends ToDos, R> R findBy(Example<S> example, Function<FluentQuery.FetchableFluentQuery<S>, R> queryFunction) {
        return null;
    }

    @Override
    public <S extends ToDos> List<S> saveAll(Iterable<S> entities) {
        return null;
    }

    @Override
    public Optional<ToDos> findById(Integer integer) {
        return Optional.empty();
    }

    @Override
    public boolean existsById(Integer integer) {
        return false;
    }

    @Override
    public List<ToDos> findAllById(Iterable<Integer> integers) {
        return null;
    }

    @Override
    public long count() {
        return 0;
    }

    @Override
    public void delete(ToDos entity) {

    }

    @Override
    public void deleteAllById(Iterable<? extends Integer> integers) {

    }

    @Override
    public void deleteAll(Iterable<? extends ToDos> entities) {

    }

    @Override
    public void deleteAll() {

    }

    @Override
    public Page<ToDos> findAll(Pageable pageable) {
        return null;
    }
}