-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #200 from bounswe/backend/feature/199-/feed-endpoint
GET /feed endpoint implemented
- Loading branch information
Showing
4 changed files
with
103 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
45 changes: 45 additions & 0 deletions
45
backend/src/main/java/com/group1/cuisines/controllers/FeedController.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
package com.group1.cuisines.controllers; | ||
|
||
import com.group1.cuisines.dao.response.SuccessResponse; | ||
import com.group1.cuisines.dto.RecipeDetailsDto; | ||
import com.group1.cuisines.services.RecipeService; | ||
import org.springframework.beans.factory.annotation.Autowired; | ||
import org.springframework.http.ResponseEntity; | ||
import org.springframework.security.core.Authentication; | ||
import org.springframework.web.bind.annotation.GetMapping; | ||
import org.springframework.web.bind.annotation.RequestMapping; | ||
import org.springframework.web.bind.annotation.RequestParam; | ||
import org.springframework.web.bind.annotation.RestController; | ||
|
||
import java.util.Collections; | ||
import java.util.List; | ||
|
||
@RestController | ||
@RequestMapping("/api/v1") | ||
public class FeedController { | ||
|
||
@Autowired | ||
private RecipeService recipeService; | ||
|
||
@GetMapping("/feed") | ||
public ResponseEntity<?> getFeed(@RequestParam String type, Authentication authentication) { | ||
if (!"explore".equals(type) && !"following".equals(type)) { | ||
return ResponseEntity.badRequest().body("Invalid type parameter."); | ||
} | ||
|
||
if ("following".equals(type)) { | ||
if (authentication == null || !authentication.isAuthenticated()) { | ||
// Return an empty set and a message for unauthenticated users | ||
return ResponseEntity.ok(new SuccessResponse<>(Collections.emptyList(), "No content available. Please log in and follow other users !.")); | ||
} | ||
// Fetch following users' recipes for authenticated users | ||
String username = authentication.getName(); | ||
List<RecipeDetailsDto> recipes = recipeService.getRecipesByType(type, username); | ||
return ResponseEntity.ok(new SuccessResponse<>(recipes, "Recipes fetched successfully from followed users.")); | ||
} | ||
|
||
// For 'explore', accessible to everyone | ||
List<RecipeDetailsDto> recipes = recipeService.getRecipesByType(type, null); | ||
return ResponseEntity.ok(new SuccessResponse<>(recipes, "Recipes fetched successfully.")); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters