Recipe.java

  1. package ntnu.idatt2016.v233.SmartMat.entity.product;

  2. import java.util.ArrayList;
  3. import java.util.List;

  4. import com.fasterxml.jackson.annotation.JsonIgnore;
  5. import com.fasterxml.jackson.annotation.JsonIgnoreProperties;

  6. import jakarta.persistence.*;
  7. import lombok.AllArgsConstructor;
  8. import lombok.Builder;
  9. import lombok.Data;
  10. import lombok.NoArgsConstructor;
  11. import ntnu.idatt2016.v233.SmartMat.entity.product.Product;
  12. import ntnu.idatt2016.v233.SmartMat.entity.user.User;

  13. /**
  14.  * Recipe is an entity class representing a recipe in the system.
  15.  *
  16.  * @author Anders, Stian, Birk
  17.  * @version 1.7
  18.  */

  19. @NoArgsConstructor
  20. @AllArgsConstructor
  21. @Builder
  22. @Entity(name = "recipe")
  23. @Data
  24. public class Recipe {
  25.     @Id
  26.     @GeneratedValue(strategy = GenerationType.IDENTITY)
  27.     @Column(name = "recipe_id")
  28.     long id;

  29.     @Column(name = "recipe_name")
  30.     String name;

  31.     @Column(name = "recipe_description")
  32.     String description;
  33.    
  34.     @Column(name = "image_url")
  35.     String imageUrl;

  36.     @Column(name = "guide")
  37.     String guide;
  38.    
  39.     @ManyToMany(fetch = FetchType.LAZY,
  40.             cascade = {CascadeType.MERGE, CascadeType.PERSIST, CascadeType.REFRESH}
  41.             ,mappedBy = "recipes"
  42.     )
  43.     @JsonIgnoreProperties({"recipes"})
  44.     List<Product> products;

  45.     @ManyToMany(fetch = FetchType.LAZY,
  46.             cascade = {CascadeType.MERGE, CascadeType.PERSIST, CascadeType.REFRESH}
  47.     )
  48.     @JoinTable(
  49.             name = "favorite_recipes",
  50.             joinColumns = @JoinColumn(name = "recipe_id"),
  51.             inverseJoinColumns = @JoinColumn(name = "username"))
  52.     @JsonIgnore
  53.     List<User> users;


  54.     /**
  55.      * Adds a product to the recipe
  56.      * @param product product to add
  57.      */
  58.     public void addProduct(Product product){

  59.         if(products ==  null){
  60.             products = new ArrayList<>();
  61.         }

  62.         products.add(product);
  63.     }

  64.     /**
  65.      * Adds a user to the recipe
  66.      * used for adding favorites
  67.      * @param user user to add
  68.      */
  69.     public void addUser(User user){

  70.         if(users ==  null){
  71.             users = new ArrayList<>();
  72.         }

  73.         users.add(user);
  74.     }
  75. }