Class ArticlesController
java.lang.Object
edu.ucsb.cs156.example.controllers.ApiController
edu.ucsb.cs156.example.controllers.ArticlesController
@RequestMapping("/api/Articles")
@RestController
public class ArticlesController
extends ApiController
This is a REST controller for Articles.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionList all articles.deleteArticle(Long id) Delete an article by id.Get a single article by id.postArticles(String title, String url, String explanation, String email, LocalDateTime dateAdded) Create a new article.updateArticles(Long id, @Valid Articles incoming) Update an existing article by id.Methods inherited from class edu.ucsb.cs156.example.controllers.ApiController
genericMessage, getCurrentUser, handleGenericException
-
Constructor Details
-
ArticlesController
public ArticlesController()
-
-
Method Details
-
allArticles
List all articles.- Returns:
- an iterable of articles
-
getById
@PreAuthorize("hasRole(\'ROLE_USER\')") @GetMapping("") public Articles getById(@RequestParam Long id) Get a single article by id.- Parameters:
id- id of the article to get- Returns:
- the requested article
-
postArticles
@PreAuthorize("hasRole(\'ROLE_ADMIN\')") @PostMapping("/post") public Articles postArticles(@RequestParam String title, @RequestParam String url, @RequestParam String explanation, @RequestParam String email, @RequestParam("dateAdded") @DateTimeFormat(iso=DATE_TIME) LocalDateTime dateAdded) Create a new article.- Parameters:
title- article titleurl- article URLexplanation- short explanation of the articleemail- submitter emaildateAdded- the timestamp when the article was added- Returns:
- the saved article
-
deleteArticle
@PreAuthorize("hasRole(\'ROLE_ADMIN\')") @DeleteMapping("") public Object deleteArticle(@RequestParam Long id) Delete an article by id.- Parameters:
id- id of the article to delete- Returns:
- a message indicating the article was deleted
-
updateArticles
@PreAuthorize("hasRole(\'ROLE_ADMIN\')") @PutMapping("") public Articles updateArticles(@RequestParam Long id, @RequestBody @Valid @Valid Articles incoming) Update an existing article by id.- Parameters:
id- id of the article to updateincoming- JSON body with updated article field values- Returns:
- the updated article
-