commit
a4994e20b9
@ -0,0 +1,116 @@ |
|||||||
|
package com.example.todoapp.controller; |
||||||
|
|
||||||
|
import java.util.HashMap; |
||||||
|
import java.util.List; |
||||||
|
import java.util.Map; |
||||||
|
import java.util.stream.Collectors; |
||||||
|
|
||||||
|
import org.springframework.beans.factory.annotation.Autowired; |
||||||
|
import org.springframework.http.ResponseEntity; |
||||||
|
import org.springframework.security.core.Authentication; |
||||||
|
import org.springframework.web.bind.annotation.PostMapping; |
||||||
|
import org.springframework.web.bind.annotation.PutMapping; |
||||||
|
import org.springframework.web.bind.annotation.RequestBody; |
||||||
|
import org.springframework.web.bind.annotation.RequestMapping; |
||||||
|
import org.springframework.web.bind.annotation.RestController; |
||||||
|
|
||||||
|
import com.example.todoapp.dto.RecipeDetailDTO; |
||||||
|
import com.example.todoapp.dto.RecipeRequestDTO; |
||||||
|
import com.example.todoapp.dto.RecipeResponseDTO; |
||||||
|
import com.example.todoapp.model.Recipes; |
||||||
|
import com.example.todoapp.service.RecipeService; |
||||||
|
import org.springframework.web.bind.annotation.GetMapping; |
||||||
|
import org.springframework.web.bind.annotation.RequestParam; |
||||||
|
|
||||||
|
/** |
||||||
|
* 料理レシピ管理のコントローラー |
||||||
|
* <p> |
||||||
|
* このコントローラーはレシピの取得、作成、更新、削除などの |
||||||
|
* エンドポイントを提供します。すべてのエンドポイントは認証が必要です。 |
||||||
|
* </p> |
||||||
|
*/ |
||||||
|
@RestController |
||||||
|
@RequestMapping("/recipes") |
||||||
|
public class RecipesController { |
||||||
|
|
||||||
|
@Autowired |
||||||
|
private RecipeService recipeService; |
||||||
|
|
||||||
|
/** |
||||||
|
* 新しいレシピを作成する |
||||||
|
* |
||||||
|
* @param dto 作成するレシピの情報 |
||||||
|
* @return 作成結果(recipeIdとメッセージを含む) |
||||||
|
*/ |
||||||
|
@PostMapping("/add") |
||||||
|
public ResponseEntity<Map<String, Object>> addRecipe(@RequestBody RecipeRequestDTO dto) { |
||||||
|
Recipes createAllReipes = recipeService.addRecipe(dto); |
||||||
|
|
||||||
|
Map<String, Object> response = new HashMap<>(); |
||||||
|
response.put("result", true); |
||||||
|
response.put("recipeId", createAllReipes.getRecipeId()); |
||||||
|
response.put("message", "追加に成功しました"); |
||||||
|
|
||||||
|
return ResponseEntity.ok(response); |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* すべてのレシピを取得する |
||||||
|
* |
||||||
|
* @param authentication 認証情報 |
||||||
|
* @return レシピ情報リスト |
||||||
|
*/ |
||||||
|
@GetMapping("/getAll") |
||||||
|
public ResponseEntity<List<RecipeResponseDTO>> getRecipe(Authentication authentication) { |
||||||
|
List<Recipes> recipes = recipeService.getAllRecipes(); |
||||||
|
// エンティティからDTOへの変換
|
||||||
|
List<RecipeResponseDTO> responseList = recipes.stream() |
||||||
|
.map(recipe -> { |
||||||
|
RecipeResponseDTO dto = new RecipeResponseDTO(); |
||||||
|
dto.setRecipeId(recipe.getRecipeId()); |
||||||
|
dto.setRecipeName(recipe.getRecipeName()); |
||||||
|
dto.setSummary(recipe.getSummary()); |
||||||
|
return dto; |
||||||
|
}) |
||||||
|
.collect(Collectors.toList()); |
||||||
|
return ResponseEntity.ok(responseList); |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 指定されたIDの在庫を取得する |
||||||
|
* |
||||||
|
* @param authentication 認証情報 |
||||||
|
* @param recipeId 在庫ID |
||||||
|
* @return 在庫情報 |
||||||
|
*/ |
||||||
|
@GetMapping("/getById") |
||||||
|
public ResponseEntity<RecipeDetailDTO> getRecipeById( |
||||||
|
Authentication authentication, |
||||||
|
@RequestParam Long recipeId) { |
||||||
|
recipeService.getRecipeDetailsById(recipeId); |
||||||
|
return ResponseEntity.ok(recipeService.getRecipeDetailsById(recipeId)); |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* レシピ情報を更新する |
||||||
|
* |
||||||
|
* @param dto 更新するレシピの詳細情報 |
||||||
|
* @return 更新結果(成功/失敗メッセージを含む) |
||||||
|
*/ |
||||||
|
@PutMapping("/update") |
||||||
|
public ResponseEntity<Map<String, Object>> updateRecipe(@RequestBody RecipeDetailDTO dto) { |
||||||
|
Recipes recipes = recipeService.updateRecipe(dto); |
||||||
|
Map<String, Object> response = new HashMap<>(); |
||||||
|
|
||||||
|
if (recipes != null) { |
||||||
|
response.put("result",true ); |
||||||
|
response.put("message", "料理リストの編集が完了しました"); |
||||||
|
} else { |
||||||
|
response.put("result", false); |
||||||
|
response.put("message", "編集に失敗しました"); |
||||||
|
|
||||||
|
} |
||||||
|
return ResponseEntity.ok(response); |
||||||
|
} |
||||||
|
|
||||||
|
} |
@ -0,0 +1,19 @@ |
|||||||
|
package com.example.todoapp.dto; |
||||||
|
|
||||||
|
import lombok.Data; |
||||||
|
|
||||||
|
/** |
||||||
|
* 在庫削除要求のデータ転送オブジェクト(DTO) |
||||||
|
* <p> |
||||||
|
* このクラスは在庫削除操作をサーバーに送信するために使用されます。 |
||||||
|
* 削除対象を特定するための情報を含みます。 |
||||||
|
* </p> |
||||||
|
*/ |
||||||
|
@Data |
||||||
|
public class DeleteStockRequestDTO { |
||||||
|
/** |
||||||
|
* 在庫ID |
||||||
|
* 削除対象の在庫を識別するためのID |
||||||
|
*/ |
||||||
|
private Long stockId; |
||||||
|
} |
@ -1,9 +0,0 @@ |
|||||||
package com.example.todoapp.dto; |
|
||||||
|
|
||||||
import lombok.Data; |
|
||||||
|
|
||||||
@Data |
|
||||||
public class DeleteToBuyRequest { |
|
||||||
private Long userId; |
|
||||||
private Long tobuyId; |
|
||||||
} |
|
@ -0,0 +1,25 @@ |
|||||||
|
package com.example.todoapp.dto; |
||||||
|
|
||||||
|
import lombok.Data; |
||||||
|
|
||||||
|
/** |
||||||
|
* 購入予定削除要求のデータ転送オブジェクト(DTO) |
||||||
|
* <p> |
||||||
|
* このクラスは購入予定情報の削除要求をサーバーに送信するために使用されます。 |
||||||
|
* 削除対象を特定するための必要情報を含みます。 |
||||||
|
* </p> |
||||||
|
*/ |
||||||
|
@Data |
||||||
|
public class DeleteToBuyRequestDTO { |
||||||
|
/** |
||||||
|
* ユーザーID |
||||||
|
* 操作対象のユーザーを識別するためのID |
||||||
|
*/ |
||||||
|
private Long userId; |
||||||
|
|
||||||
|
/** |
||||||
|
* 購入予定ID |
||||||
|
* 削除対象の購入予定情報を識別するためのID |
||||||
|
*/ |
||||||
|
private Long tobuyId; |
||||||
|
} |
@ -0,0 +1,39 @@ |
|||||||
|
package com.example.todoapp.dto; |
||||||
|
|
||||||
|
import java.util.List; |
||||||
|
|
||||||
|
import lombok.Data; |
||||||
|
|
||||||
|
/** |
||||||
|
* レシピ詳細情報のデータ転送オブジェクト(DTO) |
||||||
|
* <p> |
||||||
|
* このクラスはレシピの詳細情報を伝送するために使用されます。 |
||||||
|
* レシピ基本情報に加えて関連食材情報を含みます。 |
||||||
|
* </p> |
||||||
|
*/ |
||||||
|
@Data |
||||||
|
public class RecipeDetailDTO { |
||||||
|
/** |
||||||
|
* レシピID |
||||||
|
* ユニークなレシピを識別するためのID |
||||||
|
*/ |
||||||
|
private Long recipeId; |
||||||
|
|
||||||
|
/** |
||||||
|
* レシピ名 |
||||||
|
* レシピの名称を表します |
||||||
|
*/ |
||||||
|
private String recipeName; |
||||||
|
|
||||||
|
/** |
||||||
|
* 概要 |
||||||
|
* レシピの簡単な説明文 |
||||||
|
*/ |
||||||
|
private String summary; |
||||||
|
|
||||||
|
/** |
||||||
|
* 食材リスト |
||||||
|
* このレシピに必要な食材とその数量のリスト |
||||||
|
*/ |
||||||
|
private List<StuffDetailDTO> stuffs; |
||||||
|
} |
@ -0,0 +1,39 @@ |
|||||||
|
package com.example.todoapp.dto; |
||||||
|
|
||||||
|
import java.util.List; |
||||||
|
|
||||||
|
import lombok.Data; |
||||||
|
|
||||||
|
/** |
||||||
|
* レシピ操作要求のデータ転送オブジェクト(DTO) |
||||||
|
* <p> |
||||||
|
* このクラスはレシピ操作要求をサーバーに送信するために使用されます。 |
||||||
|
* 新規作成および更新時の情報を含みます。 |
||||||
|
* </p> |
||||||
|
*/ |
||||||
|
@Data |
||||||
|
public class RecipeRequestDTO { |
||||||
|
/** |
||||||
|
* レシピID |
||||||
|
* 新規作成時は未指定、更新時は必須 |
||||||
|
*/ |
||||||
|
private Long recipeId; |
||||||
|
|
||||||
|
/** |
||||||
|
* レシピ名 |
||||||
|
* レシピの名称を表します |
||||||
|
*/ |
||||||
|
private String recipeName; |
||||||
|
|
||||||
|
/** |
||||||
|
* 概要 |
||||||
|
* レシピの簡単な説明文 |
||||||
|
*/ |
||||||
|
private String summary; |
||||||
|
|
||||||
|
/** |
||||||
|
* 食材と数量リスト |
||||||
|
* このレシピに必要な食材とその数量のリスト |
||||||
|
*/ |
||||||
|
private List<StuffRequestDTO> stuffAndAmountArray; |
||||||
|
} |
@ -0,0 +1,31 @@ |
|||||||
|
package com.example.todoapp.dto; |
||||||
|
|
||||||
|
import lombok.Data; |
||||||
|
|
||||||
|
/** |
||||||
|
* レシピ情報のデータ転送オブジェクト(DTO) |
||||||
|
* <p> |
||||||
|
* このクラスはクライアントとサーバー間で基本的なレシピ情報をやり取りするために使用されます。 |
||||||
|
* エンティティとは異なり、必要な情報のみを含みます。 |
||||||
|
* </p> |
||||||
|
*/ |
||||||
|
@Data |
||||||
|
public class RecipeResponseDTO { |
||||||
|
/** |
||||||
|
* レシピID |
||||||
|
* ユニークなレシピを識別するためのID |
||||||
|
*/ |
||||||
|
private Long recipeId; |
||||||
|
|
||||||
|
/** |
||||||
|
* レシピ名 |
||||||
|
* レシピの名称を表します |
||||||
|
*/ |
||||||
|
private String recipeName; |
||||||
|
|
||||||
|
/** |
||||||
|
* 概要 |
||||||
|
* レシピの簡単な説明文 |
||||||
|
*/ |
||||||
|
private String summary; |
||||||
|
} |
@ -0,0 +1,30 @@ |
|||||||
|
package com.example.todoapp.dto; |
||||||
|
|
||||||
|
import lombok.Data; |
||||||
|
/** |
||||||
|
* 食材詳細情報のデータ転送オブジェクト(DTO) |
||||||
|
* <p> |
||||||
|
* このクラスはレシピに含まれる個別食材情報を伝送するために使用されます。 |
||||||
|
* 必要最小限の食材情報を含みます。 |
||||||
|
* </p> |
||||||
|
*/ |
||||||
|
@Data |
||||||
|
public class StuffDetailDTO { |
||||||
|
/** |
||||||
|
* 食材ID |
||||||
|
* ユニークな食材を識別するためのID |
||||||
|
*/ |
||||||
|
private Long stuffId; |
||||||
|
|
||||||
|
/** |
||||||
|
* 食材名 |
||||||
|
* 食材の名称を表します |
||||||
|
*/ |
||||||
|
private String stuffName; |
||||||
|
|
||||||
|
/** |
||||||
|
* 数量 |
||||||
|
* レシピに必要な食材の量 |
||||||
|
*/ |
||||||
|
private Integer amount; |
||||||
|
} |
@ -0,0 +1,36 @@ |
|||||||
|
package com.example.todoapp.dto; |
||||||
|
import lombok.Data; |
||||||
|
|
||||||
|
/** |
||||||
|
* 食材操作要求のデータ転送オブジェクト(DTO) |
||||||
|
* <p> |
||||||
|
* このクラスは食材操作要求をサーバーに送信するために使用されます。 |
||||||
|
* 新規作成時の必須情報を含みます。 |
||||||
|
* </p> |
||||||
|
*/ |
||||||
|
@Data |
||||||
|
public class StuffRequestDTO { |
||||||
|
/** |
||||||
|
* 食材ID |
||||||
|
* 新規作成時は未指定 |
||||||
|
*/ |
||||||
|
private String stuffId; |
||||||
|
|
||||||
|
/** |
||||||
|
* 食材名 |
||||||
|
* 食材の名称を表します |
||||||
|
*/ |
||||||
|
private String stuffName; |
||||||
|
|
||||||
|
/** |
||||||
|
* カテゴリ |
||||||
|
* 食材の分類を示します |
||||||
|
*/ |
||||||
|
private String category; |
||||||
|
|
||||||
|
/** |
||||||
|
* 数量 |
||||||
|
* 食材の保有量を示します |
||||||
|
*/ |
||||||
|
private String amount; |
||||||
|
} |
@ -1,12 +0,0 @@ |
|||||||
package com.example.todoapp.dto; |
|
||||||
|
|
||||||
import lombok.Data; |
|
||||||
|
|
||||||
@Data |
|
||||||
public class ToBuyResponse { |
|
||||||
private Long tobuyId; |
|
||||||
private Long stuffId; |
|
||||||
private String stuffName; |
|
||||||
private int amount; |
|
||||||
private String shop; |
|
||||||
} |
|
@ -0,0 +1,44 @@ |
|||||||
|
package com.example.todoapp.dto; |
||||||
|
|
||||||
|
import lombok.Data; |
||||||
|
|
||||||
|
/** |
||||||
|
* 購入予定情報のデータ転送オブジェクト(DTO) |
||||||
|
* <p> |
||||||
|
* このクラスは購入予定食材情報をクライアントとサーバー間でやり取りするために使用されます。 |
||||||
|
* 必要な情報を含み、関連エンティティへの参照ではなくIDのみを保持します。 |
||||||
|
* </p> |
||||||
|
*/ |
||||||
|
@Data |
||||||
|
public class ToBuyResponseDTO { |
||||||
|
|
||||||
|
/** |
||||||
|
* 購入ID |
||||||
|
* 購入予定を識別するためのID |
||||||
|
*/ |
||||||
|
private Long tobuyId; |
||||||
|
|
||||||
|
/** |
||||||
|
* 食材ID |
||||||
|
* 関連する食材のID |
||||||
|
*/ |
||||||
|
private Long stuffId; |
||||||
|
|
||||||
|
/** |
||||||
|
* 食材名 |
||||||
|
* 購入予定の食材名称 |
||||||
|
*/ |
||||||
|
private String stuffName; |
||||||
|
|
||||||
|
/** |
||||||
|
* 数量 |
||||||
|
* 購入予定数量 |
||||||
|
*/ |
||||||
|
private int amount; |
||||||
|
|
||||||
|
/** |
||||||
|
* 購入先 |
||||||
|
* 購入を予定している店舗名 |
||||||
|
*/ |
||||||
|
private String shop; |
||||||
|
} |
@ -0,0 +1,14 @@ |
|||||||
|
package com.example.todoapp.repository; |
||||||
|
|
||||||
|
import org.springframework.data.jpa.repository.JpaRepository; |
||||||
|
|
||||||
|
import com.example.todoapp.model.Recipes; |
||||||
|
|
||||||
|
/** |
||||||
|
* レシピエンティティのリポジトリインターフェース |
||||||
|
* <p> |
||||||
|
* このインターフェースはレシピデータへのアクセスと操作を提供します。 |
||||||
|
* Spring Data JPAによって自動的に実装されます。 |
||||||
|
* </p> |
||||||
|
*/ |
||||||
|
public interface RecipesRepository extends JpaRepository<Recipes, Long> {} |
@ -0,0 +1,37 @@ |
|||||||
|
package com.example.todoapp.repository; |
||||||
|
|
||||||
|
import java.util.List; |
||||||
|
import java.util.Optional; |
||||||
|
|
||||||
|
import org.springframework.data.jpa.repository.JpaRepository; |
||||||
|
|
||||||
|
import com.example.todoapp.model.RecipeStuffs; |
||||||
|
|
||||||
|
/** |
||||||
|
* レシピ食材関連データのリポジトリインターフェース |
||||||
|
* <p> |
||||||
|
* このインターフェースはレシピと食材の関連データへのアクセスを提供します。 |
||||||
|
* Spring Data JPAによって自動的に実装されます。 |
||||||
|
* </p> |
||||||
|
*/ |
||||||
|
public interface RecipesStuffsRepository extends JpaRepository<RecipeStuffs, Long> { |
||||||
|
/** |
||||||
|
* レシピIDで食材情報を検索する |
||||||
|
* |
||||||
|
* @param recipeId 検索するレシピID |
||||||
|
* @return 関連する食材情報リスト |
||||||
|
*/ |
||||||
|
List<RecipeStuffs> findByRecipesRecipeId(Long recipeId); |
||||||
|
|
||||||
|
/** |
||||||
|
* レシピIDと食材IDで関連情報を検索する |
||||||
|
* |
||||||
|
* @param recipeId 検索するレシピID |
||||||
|
* @param stuffId 検索する食材ID |
||||||
|
* @return 関連情報(存在する場合) |
||||||
|
*/ |
||||||
|
Optional<RecipeStuffs> findByRecipesRecipeIdAndStuffStuffId(Long recipeId, Long stuffId); |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
|
@ -0,0 +1,210 @@ |
|||||||
|
//--------------------------------
|
||||||
|
// RecipeService.java
|
||||||
|
//
|
||||||
|
//
|
||||||
|
// 更新履歴:2025/06/05 新規作成
|
||||||
|
// Copyright(c) 2025 IVIS All rights reserved.
|
||||||
|
//--------------------------------------------
|
||||||
|
package com.example.todoapp.service; |
||||||
|
|
||||||
|
import java.util.ArrayList; |
||||||
|
import java.util.HashSet; |
||||||
|
import java.util.List; |
||||||
|
import java.util.Optional; |
||||||
|
import java.util.Set; |
||||||
|
import java.util.stream.Collectors; |
||||||
|
|
||||||
|
import org.springframework.beans.factory.annotation.Autowired; |
||||||
|
import org.springframework.stereotype.Service; |
||||||
|
|
||||||
|
import com.example.todoapp.dto.RecipeDetailDTO; |
||||||
|
import com.example.todoapp.dto.RecipeRequestDTO; |
||||||
|
import com.example.todoapp.dto.StuffDetailDTO; |
||||||
|
import com.example.todoapp.dto.StuffRequestDTO; |
||||||
|
import com.example.todoapp.model.RecipeStuffs; |
||||||
|
import com.example.todoapp.model.Recipes; |
||||||
|
import com.example.todoapp.model.Stuffs; |
||||||
|
import com.example.todoapp.repository.RecipesStuffsRepository; |
||||||
|
import com.example.todoapp.repository.RecipesRepository; |
||||||
|
import com.example.todoapp.repository.StuffsRepository; |
||||||
|
|
||||||
|
import jakarta.transaction.Transactional; |
||||||
|
|
||||||
|
/** |
||||||
|
* レシピ管理サービスクラス |
||||||
|
* <p> |
||||||
|
* このクラスは、レシピの登録処理を提供します。 |
||||||
|
* 材料の存在確認・新規作成・数量管理などの機能を含みます。 |
||||||
|
* </p> |
||||||
|
*/ |
||||||
|
@Service |
||||||
|
public class RecipeService { |
||||||
|
|
||||||
|
@Autowired |
||||||
|
private RecipesRepository recipesRepository; |
||||||
|
|
||||||
|
@Autowired |
||||||
|
private StuffsRepository stuffsRepository; |
||||||
|
|
||||||
|
@Autowired |
||||||
|
private RecipesStuffsRepository recipeStuffsRepository; |
||||||
|
|
||||||
|
/** |
||||||
|
* レシピを新規登録する |
||||||
|
* |
||||||
|
* @param dto レシピ登録情報(レシピ名、概要、材料情報含む) |
||||||
|
* @return レシピ登録結果(成功/失敗、レシピID含む) |
||||||
|
*/ |
||||||
|
@Transactional // トランザクション管理を実施
|
||||||
|
public Recipes addRecipe(RecipeRequestDTO dto) { |
||||||
|
Recipes recipe = new Recipes(); |
||||||
|
recipe.setRecipeName(dto.getRecipeName()); |
||||||
|
recipe.setSummary(dto.getSummary()); |
||||||
|
recipe = recipesRepository.save(recipe); |
||||||
|
|
||||||
|
List<RecipeStuffs> recipeStuffsList = new ArrayList<>(); |
||||||
|
for (StuffRequestDTO stuffDTO : dto.getStuffAndAmountArray()) { |
||||||
|
Stuffs stuff; |
||||||
|
if (stuffDTO.getStuffId() != null && !stuffDTO.getStuffId().isEmpty()) { |
||||||
|
// stuffIdが存在する
|
||||||
|
stuff = stuffsRepository.findById(Long.valueOf(stuffDTO.getStuffId())) |
||||||
|
.orElseThrow(() -> new RuntimeException("材料がありません")); |
||||||
|
} else { |
||||||
|
// stuffIdが存在しない
|
||||||
|
stuff = new Stuffs(); |
||||||
|
stuff.setStuffName(stuffDTO.getStuffName()); |
||||||
|
stuff.setCategory(stuffDTO.getCategory()); |
||||||
|
stuff = stuffsRepository.save(stuff); |
||||||
|
} |
||||||
|
|
||||||
|
RecipeStuffs recipeStuffs = new RecipeStuffs(); |
||||||
|
recipeStuffs.setRecipes(recipe); // 関連レシピ設定
|
||||||
|
recipeStuffs.setStuff(stuff); // 関連材料設定
|
||||||
|
|
||||||
|
// 数量設定、defaultは1
|
||||||
|
if (stuffDTO.getAmount() == null || stuffDTO.getAmount().isEmpty()) { |
||||||
|
stuffDTO.setAmount("1"); |
||||||
|
} |
||||||
|
recipeStuffs.setAmount(Integer.parseInt(stuffDTO.getAmount())); |
||||||
|
recipeStuffsList.add(recipeStuffs); |
||||||
|
} |
||||||
|
|
||||||
|
recipeStuffsRepository.saveAll(recipeStuffsList); |
||||||
|
return recipe; |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* すべてのレシピ情報を取得する |
||||||
|
* |
||||||
|
* @return 登録済みレシピ情報リスト |
||||||
|
*/ |
||||||
|
public List<Recipes> getAllRecipes() { |
||||||
|
return recipesRepository.findAll(); |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* 指定されたIDのレシピ詳細情報を取得する |
||||||
|
* |
||||||
|
* @param recipeId 検索するレシピID |
||||||
|
* @return レシピ詳細情報(レシピ基本情報と関連食材情報) |
||||||
|
* @throws RuntimeException レシピが見つからない場合 |
||||||
|
*/ |
||||||
|
public RecipeDetailDTO getRecipeDetailsById(Long recipeId) { |
||||||
|
Recipes recipe = recipesRepository.findById(recipeId) |
||||||
|
.orElseThrow(() -> new RuntimeException("レシピが見つかりません")); |
||||||
|
|
||||||
|
List<RecipeStuffs> recipeStuffsList = recipeStuffsRepository.findByRecipesRecipeId(recipeId); |
||||||
|
|
||||||
|
List<StuffDetailDTO> stuffList = recipeStuffsList.stream() |
||||||
|
.map(rs -> { |
||||||
|
StuffDetailDTO stuffDTO = new StuffDetailDTO(); |
||||||
|
stuffDTO.setStuffId(rs.getStuff().getStuffId()); |
||||||
|
stuffDTO.setStuffName(rs.getStuff().getStuffName()); |
||||||
|
stuffDTO.setAmount(rs.getAmount()); |
||||||
|
return stuffDTO; |
||||||
|
}) |
||||||
|
.collect(Collectors.toList()); |
||||||
|
|
||||||
|
RecipeDetailDTO dto = new RecipeDetailDTO(); |
||||||
|
dto.setRecipeId(recipe.getRecipeId()); |
||||||
|
dto.setRecipeName(recipe.getRecipeName()); |
||||||
|
dto.setSummary(recipe.getSummary()); |
||||||
|
dto.setStuffs(stuffList); |
||||||
|
|
||||||
|
return dto; |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* レシピ情報を更新する |
||||||
|
* |
||||||
|
* @param dto 更新するレシピ詳細情報 |
||||||
|
* @return 更新されたレシピエンティティ |
||||||
|
* @throws RuntimeException レシピまたは材料情報が見つからない場合 |
||||||
|
*/ |
||||||
|
@Transactional |
||||||
|
public Recipes updateRecipe(RecipeDetailDTO dto) { |
||||||
|
// IDでレシピを検索し、見つからない場合は例外をスロー
|
||||||
|
Recipes recipe = recipesRepository.findById(dto.getRecipeId()) |
||||||
|
.orElseThrow(() -> new RuntimeException("レシピが見つかりません")); |
||||||
|
|
||||||
|
// レシピ名と概要を更新
|
||||||
|
recipe.setRecipeName(dto.getRecipeName()); |
||||||
|
recipe.setSummary(dto.getSummary()); |
||||||
|
recipesRepository.save(recipe); |
||||||
|
|
||||||
|
Set<Long> incomingStuffIds = new HashSet<>(); |
||||||
|
|
||||||
|
// 提供された材料の詳細を繰り返し処理
|
||||||
|
for (StuffDetailDTO stuffDTO : dto.getStuffs()) { |
||||||
|
if (stuffDTO.getStuffId() == null) { |
||||||
|
// 材料IDがnullの場合、新しい材料を作成
|
||||||
|
Stuffs newStuff = new Stuffs(); |
||||||
|
newStuff.setStuffName(stuffDTO.getStuffName()); |
||||||
|
newStuff.setCategory("その他"); |
||||||
|
newStuff = stuffsRepository.save(newStuff); |
||||||
|
|
||||||
|
// 新しいRecipeStuffsエントリを作成
|
||||||
|
RecipeStuffs rs = new RecipeStuffs(); |
||||||
|
rs.setRecipes(recipe); |
||||||
|
rs.setStuff(newStuff); |
||||||
|
rs.setAmount(stuffDTO.getAmount()); |
||||||
|
recipeStuffsRepository.save(rs); |
||||||
|
|
||||||
|
incomingStuffIds.add(newStuff.getStuffId()); |
||||||
|
} else { |
||||||
|
// 材料IDが提供されている場合、既存のRecipeStuffsエントリを検索
|
||||||
|
Optional<RecipeStuffs> optionalRs = recipeStuffsRepository |
||||||
|
.findByRecipesRecipeIdAndStuffStuffId(dto.getRecipeId(), stuffDTO.getStuffId()); |
||||||
|
|
||||||
|
if (optionalRs.isPresent()) { |
||||||
|
// RecipeStuffsエントリが存在する場合、数量を更新
|
||||||
|
RecipeStuffs rs = optionalRs.get(); |
||||||
|
rs.setAmount(stuffDTO.getAmount()); |
||||||
|
recipeStuffsRepository.save(rs); |
||||||
|
incomingStuffIds.add(rs.getStuff().getStuffId()); |
||||||
|
} else { |
||||||
|
// オプション:見つからない場合、新しいRecipeStuffsエントリを作成
|
||||||
|
Stuffs existingStuff = stuffsRepository.findById(stuffDTO.getStuffId()) |
||||||
|
.orElseThrow(() -> new RuntimeException("材料が見つかりません")); |
||||||
|
|
||||||
|
RecipeStuffs rs = new RecipeStuffs(); |
||||||
|
rs.setRecipes(recipe); |
||||||
|
rs.setStuff(existingStuff); |
||||||
|
rs.setAmount(stuffDTO.getAmount()); |
||||||
|
recipeStuffsRepository.save(rs); |
||||||
|
incomingStuffIds.add(existingStuff.getStuffId()); |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
// 入ってきたリストにないRecipeStuffsエントリを削除
|
||||||
|
List<RecipeStuffs> existingStuffs = recipeStuffsRepository.findByRecipesRecipeId(dto.getRecipeId()); |
||||||
|
for (RecipeStuffs rs : existingStuffs) { |
||||||
|
if (!incomingStuffIds.contains(rs.getStuff().getStuffId())) { |
||||||
|
recipeStuffsRepository.delete(rs); |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
return recipe; |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue