1 | package edu.ucsb.cs156.example.controllers; | |
2 | ||
3 | import edu.ucsb.cs156.example.entities.Articles; | |
4 | import edu.ucsb.cs156.example.errors.EntityNotFoundException; | |
5 | import edu.ucsb.cs156.example.repositories.ArticlesRepository; | |
6 | ||
7 | import io.swagger.v3.oas.annotations.Operation; | |
8 | import io.swagger.v3.oas.annotations.Parameter; | |
9 | import io.swagger.v3.oas.annotations.tags.Tag; | |
10 | import lombok.extern.slf4j.Slf4j; | |
11 | ||
12 | import com.fasterxml.jackson.core.JsonProcessingException; | |
13 | ||
14 | import org.springframework.beans.factory.annotation.Autowired; | |
15 | import org.springframework.format.annotation.DateTimeFormat; | |
16 | import org.springframework.security.access.prepost.PreAuthorize; | |
17 | import org.springframework.web.bind.annotation.DeleteMapping; | |
18 | import org.springframework.web.bind.annotation.GetMapping; | |
19 | import org.springframework.web.bind.annotation.PostMapping; | |
20 | import org.springframework.web.bind.annotation.PutMapping; | |
21 | import org.springframework.web.bind.annotation.RequestBody; | |
22 | import org.springframework.web.bind.annotation.RequestMapping; | |
23 | import org.springframework.web.bind.annotation.RequestParam; | |
24 | import org.springframework.web.bind.annotation.RestController; | |
25 | ||
26 | import jakarta.validation.Valid; | |
27 | ||
28 | import java.time.LocalDateTime; | |
29 | ||
30 | /** | |
31 | * This is a REST controller for Articles | |
32 | */ | |
33 | ||
34 | @Tag(name = "articles") | |
35 | @RequestMapping("/api/articles") | |
36 | @RestController | |
37 | @Slf4j | |
38 | public class ArticlesController extends ApiController { | |
39 | ||
40 | @Autowired | |
41 | ArticlesRepository articlesRepository; | |
42 | ||
43 | /** | |
44 | * List all Articles | |
45 | * | |
46 | * @return an iterable of Articles | |
47 | */ | |
48 | @Operation(summary= "List all articles") | |
49 | @PreAuthorize("hasRole('ROLE_USER')") | |
50 | @GetMapping("/all") | |
51 | public Iterable<Articles> allArticles() { | |
52 | Iterable<Articles> articles = articlesRepository.findAll(); | |
53 |
1
1. allArticles : replaced return value with Collections.emptyList for edu/ucsb/cs156/example/controllers/ArticlesController::allArticles → KILLED |
return articles; |
54 | } | |
55 | ||
56 | /** | |
57 | * Get a single article by id | |
58 | * | |
59 | * @param id the id of the article | |
60 | * @return an article | |
61 | */ | |
62 | @Operation(summary= "Get a single article") | |
63 | @PreAuthorize("hasRole('ROLE_USER')") | |
64 | @GetMapping("") | |
65 | public Articles getById( | |
66 | @Parameter(name="id") @RequestParam Long id) { | |
67 | Articles article = articlesRepository.findById(id) | |
68 |
1
1. lambda$getById$0 : replaced return value with null for edu/ucsb/cs156/example/controllers/ArticlesController::lambda$getById$0 → KILLED |
.orElseThrow(() -> new EntityNotFoundException(Articles.class, id)); |
69 | ||
70 |
1
1. getById : replaced return value with null for edu/ucsb/cs156/example/controllers/ArticlesController::getById → KILLED |
return article; |
71 | } | |
72 | ||
73 | /** | |
74 | * Create a new article | |
75 | * | |
76 | * @param title the title of the article | |
77 | * @param url the url of the article | |
78 | * @param explanation an explanation of the article | |
79 | * @param email the email of the article creator | |
80 | * @param dateAdded the date the article was added | |
81 | * @return the saved article | |
82 | */ | |
83 | @Operation(summary= "Create a new article") | |
84 | @PreAuthorize("hasRole('ROLE_ADMIN')") | |
85 | @PostMapping("/post") | |
86 | public Articles postArticle( | |
87 | @Parameter(name="title") @RequestParam String title, | |
88 | @Parameter(name="url") @RequestParam String url, | |
89 | @Parameter(name="explanation") @RequestParam String explanation, | |
90 | @Parameter(name="email") @RequestParam String email, | |
91 | @Parameter(name="dateAdded") @RequestParam @DateTimeFormat(iso = DateTimeFormat.ISO.DATE_TIME) LocalDateTime dateAdded) | |
92 | throws JsonProcessingException { | |
93 | ||
94 | // For an explanation of @DateTimeFormat(iso = DateTimeFormat.ISO.DATE_TIME) | |
95 | // See: https://www.baeldung.com/spring-date-parameters | |
96 | ||
97 | log.info("localDateTime={}", dateAdded); | |
98 | ||
99 | Articles article = new Articles(); | |
100 |
1
1. postArticle : removed call to edu/ucsb/cs156/example/entities/Articles::setTitle → KILLED |
article.setTitle(title); |
101 |
1
1. postArticle : removed call to edu/ucsb/cs156/example/entities/Articles::setUrl → KILLED |
article.setUrl(url); |
102 |
1
1. postArticle : removed call to edu/ucsb/cs156/example/entities/Articles::setExplanation → KILLED |
article.setExplanation(explanation); |
103 |
1
1. postArticle : removed call to edu/ucsb/cs156/example/entities/Articles::setEmail → KILLED |
article.setEmail(email); |
104 |
1
1. postArticle : removed call to edu/ucsb/cs156/example/entities/Articles::setDateAdded → KILLED |
article.setDateAdded(dateAdded); |
105 | ||
106 | Articles savedArticle = articlesRepository.save(article); | |
107 | ||
108 |
1
1. postArticle : replaced return value with null for edu/ucsb/cs156/example/controllers/ArticlesController::postArticle → KILLED |
return savedArticle; |
109 | } | |
110 | /** | |
111 | * Update a single article | |
112 | * | |
113 | * @param id id of the date to update | |
114 | * @param incoming the new article | |
115 | * @return the updated article object | |
116 | */ | |
117 | @Operation(summary= "Update a single article") | |
118 | @PreAuthorize("hasRole('ROLE_ADMIN')") | |
119 | @PutMapping("") | |
120 | public Articles updateArticle( | |
121 | @Parameter(name="id") @RequestParam Long id, | |
122 | @RequestBody @Valid Articles incoming) { | |
123 | ||
124 | Articles article = articlesRepository.findById(id) | |
125 |
1
1. lambda$updateArticle$1 : replaced return value with null for edu/ucsb/cs156/example/controllers/ArticlesController::lambda$updateArticle$1 → KILLED |
.orElseThrow(() -> new EntityNotFoundException(Articles.class, id)); |
126 | ||
127 |
1
1. updateArticle : removed call to edu/ucsb/cs156/example/entities/Articles::setTitle → KILLED |
article.setTitle(incoming.getTitle()); |
128 |
1
1. updateArticle : removed call to edu/ucsb/cs156/example/entities/Articles::setUrl → KILLED |
article.setUrl(incoming.getUrl()); |
129 |
1
1. updateArticle : removed call to edu/ucsb/cs156/example/entities/Articles::setExplanation → KILLED |
article.setExplanation(incoming.getExplanation()); |
130 |
1
1. updateArticle : removed call to edu/ucsb/cs156/example/entities/Articles::setEmail → KILLED |
article.setEmail(incoming.getEmail()); |
131 |
1
1. updateArticle : removed call to edu/ucsb/cs156/example/entities/Articles::setDateAdded → KILLED |
article.setDateAdded(incoming.getDateAdded()); |
132 | ||
133 | articlesRepository.save(article); | |
134 | ||
135 |
1
1. updateArticle : replaced return value with null for edu/ucsb/cs156/example/controllers/ArticlesController::updateArticle → KILLED |
return article; |
136 | } | |
137 | ||
138 | /** | |
139 | * Delete an article | |
140 | * | |
141 | * @param id the id of the article to delete | |
142 | * @return a message indicating the article was deleted | |
143 | */ | |
144 | @Operation(summary= "Delete an article") | |
145 | @PreAuthorize("hasRole('ROLE_ADMIN')") | |
146 | @DeleteMapping("") | |
147 | public Object deleteArticle( | |
148 | @Parameter(name="id") @RequestParam Long id) { | |
149 | Articles article = articlesRepository.findById(id) | |
150 |
1
1. lambda$deleteArticle$2 : replaced return value with null for edu/ucsb/cs156/example/controllers/ArticlesController::lambda$deleteArticle$2 → KILLED |
.orElseThrow(() -> new EntityNotFoundException(Articles.class, id)); |
151 | ||
152 |
1
1. deleteArticle : removed call to edu/ucsb/cs156/example/repositories/ArticlesRepository::delete → KILLED |
articlesRepository.delete(article); |
153 |
1
1. deleteArticle : replaced return value with null for edu/ucsb/cs156/example/controllers/ArticlesController::deleteArticle → KILLED |
return genericMessage("Articles with id %s deleted".formatted(id)); |
154 | } | |
155 | } | |
Mutations | ||
53 |
1.1 |
|
68 |
1.1 |
|
70 |
1.1 |
|
100 |
1.1 |
|
101 |
1.1 |
|
102 |
1.1 |
|
103 |
1.1 |
|
104 |
1.1 |
|
108 |
1.1 |
|
125 |
1.1 |
|
127 |
1.1 |
|
128 |
1.1 |
|
129 |
1.1 |
|
130 |
1.1 |
|
131 |
1.1 |
|
135 |
1.1 |
|
150 |
1.1 |
|
152 |
1.1 |
|
153 |
1.1 |