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