generated from mate-academy/jv-homework-template
-
Notifications
You must be signed in to change notification settings - Fork 796
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
finished? #783
Open
slava-moiseev-kramatorsk
wants to merge
4
commits into
mate-academy:master
Choose a base branch
from
slava-moiseev-kramatorsk:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
finished? #783
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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,11 @@ | ||
package mate.academy.dao; | ||
|
||
import java.util.List; | ||
import mate.academy.model.Order; | ||
import mate.academy.model.User; | ||
|
||
public interface OrderDao { | ||
Order add(Order order); | ||
|
||
List<Order> getByUser(User user); | ||
} |
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,48 @@ | ||
package mate.academy.dao.impl; | ||
|
||
import java.util.List; | ||
import mate.academy.dao.OrderDao; | ||
import mate.academy.exception.DataProcessingException; | ||
import mate.academy.lib.Dao; | ||
import mate.academy.model.Order; | ||
import mate.academy.model.User; | ||
import mate.academy.util.HibernateUtil; | ||
import org.hibernate.Session; | ||
import org.hibernate.Transaction; | ||
import org.hibernate.query.Query; | ||
|
||
@Dao | ||
public class OrderDaoImpl implements OrderDao { | ||
@Override | ||
public Order add(Order order) { | ||
Session session = null; | ||
Transaction transaction = null; | ||
try { | ||
session = HibernateUtil.getSessionFactory().openSession(); | ||
transaction = session.beginTransaction(); | ||
session.persist(order); | ||
transaction.commit(); | ||
return order; | ||
} catch (Exception e) { | ||
if (transaction != null) { | ||
transaction.rollback(); | ||
} | ||
throw new DataProcessingException("Can`t create new order: " + order, e); | ||
} finally { | ||
if (session != null) { | ||
session.close(); | ||
|
||
} | ||
} | ||
} | ||
|
||
@Override | ||
public List<Order> getByUser(User user) { | ||
try (Session session = HibernateUtil.getSessionFactory().openSession()) { | ||
Query<Order> orderQuery = session.createQuery( | ||
"FROM Order o JOIN FETCH o.user WHERE o.user =:user", Order.class) | ||
.setParameter("user", user); | ||
return orderQuery.getResultList(); | ||
} | ||
} | ||
} |
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,57 @@ | ||
package mate.academy.model; | ||
|
||
import jakarta.persistence.Entity; | ||
import jakarta.persistence.FetchType; | ||
import jakarta.persistence.GeneratedValue; | ||
import jakarta.persistence.GenerationType; | ||
import jakarta.persistence.Id; | ||
import jakarta.persistence.ManyToOne; | ||
import jakarta.persistence.OneToMany; | ||
import jakarta.persistence.Table; | ||
import java.time.LocalDateTime; | ||
import java.util.List; | ||
|
||
@Entity | ||
@Table(name = "orders") | ||
public class Order { | ||
@Id | ||
@GeneratedValue(strategy = GenerationType.IDENTITY) | ||
private Long id; | ||
@OneToMany | ||
private List<Ticket> ticketList; | ||
private LocalDateTime orderDate; | ||
@ManyToOne(fetch = FetchType.LAZY) | ||
private User user; | ||
|
||
public Long getId() { | ||
return id; | ||
} | ||
|
||
public void setId(Long id) { | ||
this.id = id; | ||
} | ||
|
||
public List<Ticket> getTicketList() { | ||
return ticketList; | ||
} | ||
|
||
public void setTicketList(List<Ticket> ticketList) { | ||
this.ticketList = ticketList; | ||
} | ||
|
||
public LocalDateTime getOrderDate() { | ||
return orderDate; | ||
} | ||
|
||
public void setOrderDate(LocalDateTime orderDate) { | ||
this.orderDate = orderDate; | ||
} | ||
|
||
public User getUser() { | ||
return user; | ||
} | ||
|
||
public void setUser(User user) { | ||
this.user = user; | ||
} | ||
} |
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,12 @@ | ||
package mate.academy.service; | ||
|
||
import java.util.List; | ||
import mate.academy.model.Order; | ||
import mate.academy.model.ShoppingCart; | ||
import mate.academy.model.User; | ||
|
||
public interface OrderService { | ||
Order completeOrder(ShoppingCart shoppingCart); | ||
|
||
List<Order> getOrdersHistory(User user); | ||
} |
36 changes: 36 additions & 0 deletions
36
src/main/java/mate/academy/service/impl/OrderServiceImpl.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,36 @@ | ||
package mate.academy.service.impl; | ||
|
||
import java.time.LocalDateTime; | ||
import java.util.ArrayList; | ||
import java.util.List; | ||
import mate.academy.dao.OrderDao; | ||
import mate.academy.lib.Inject; | ||
import mate.academy.lib.Service; | ||
import mate.academy.model.Order; | ||
import mate.academy.model.ShoppingCart; | ||
import mate.academy.model.User; | ||
import mate.academy.service.OrderService; | ||
import mate.academy.service.ShoppingCartService; | ||
|
||
@Service | ||
public class OrderServiceImpl implements OrderService { | ||
@Inject | ||
private OrderDao orderDao; | ||
@Inject | ||
private ShoppingCartService shoppingCartService; | ||
|
||
@Override | ||
public Order completeOrder(ShoppingCart shoppingCart) { | ||
Order order = new Order(); | ||
order.setUser(shoppingCart.getUser()); | ||
order.setOrderDate(LocalDateTime.now()); | ||
order.setTicketList(new ArrayList<>(shoppingCart.getTickets())); | ||
shoppingCartService.clearShoppingCart(shoppingCart); | ||
return orderDao.add(order); | ||
} | ||
|
||
@Override | ||
public List<Order> getOrdersHistory(User user) { | ||
return orderDao.getByUser(user); | ||
} | ||
} |
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,19 @@ | ||
<hibernate-configuration> | ||
<session-factory> | ||
<property name = "hibernate.dialect">org.hibernate.dialect.MySQLDialect</property> | ||
<property name = "connection.url">jdbc:mysql://localhost:3306/test</property> | ||
<property name = "connection.driver_class">com.mysql.cj.jdbc.Driver</property> | ||
<property name = "connection.username">root</property> | ||
<property name = "connection.password">rfrfirf</property> | ||
<property name = "show_sql">true</property> | ||
<property name = "hbm2ddl.auto">create-drop</property> | ||
|
||
<mapping class ="mate.academy.model.Movie"/> | ||
<mapping class ="mate.academy.model.CinemaHall"/> | ||
<mapping class ="mate.academy.model.MovieSession"/> | ||
<mapping class ="mate.academy.model.User"/> | ||
<mapping class ="mate.academy.model.Ticket"/> | ||
<mapping class ="mate.academy.model.ShoppingCart"/> | ||
<mapping class ="mate.academy.model.Order"/> | ||
</session-factory> | ||
</hibernate-configuration> |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.