Implement TODO tasks
This commit is contained in:
Generated
+10
@@ -0,0 +1,10 @@
|
|||||||
|
# Default ignored files
|
||||||
|
/shelf/
|
||||||
|
/workspace.xml
|
||||||
|
# Editor-based HTTP Client requests
|
||||||
|
/httpRequests/
|
||||||
|
# Ignored default folder with query files
|
||||||
|
/queries/
|
||||||
|
# Datasource local storage ignored files
|
||||||
|
/dataSources/
|
||||||
|
/dataSources.local.xml
|
||||||
Generated
+13
@@ -0,0 +1,13 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="CompilerConfiguration">
|
||||||
|
<annotationProcessing>
|
||||||
|
<profile name="Maven default annotation processors profile" enabled="true">
|
||||||
|
<sourceOutputDir name="target/generated-sources/annotations" />
|
||||||
|
<sourceTestOutputDir name="target/generated-test-sources/test-annotations" />
|
||||||
|
<outputRelativeToContentRoot value="true" />
|
||||||
|
<module name="WS-10-Database" />
|
||||||
|
</profile>
|
||||||
|
</annotationProcessing>
|
||||||
|
</component>
|
||||||
|
</project>
|
||||||
Generated
+7
@@ -0,0 +1,7 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="Encoding">
|
||||||
|
<file url="file://$PROJECT_DIR$/src/main/java" charset="UTF-8" />
|
||||||
|
<file url="file://$PROJECT_DIR$/src/main/resources" charset="UTF-8" />
|
||||||
|
</component>
|
||||||
|
</project>
|
||||||
Generated
+20
@@ -0,0 +1,20 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="RemoteRepositoriesConfiguration">
|
||||||
|
<remote-repository>
|
||||||
|
<option name="id" value="central" />
|
||||||
|
<option name="name" value="Maven Central repository" />
|
||||||
|
<option name="url" value="https://repo1.maven.org/maven2" />
|
||||||
|
</remote-repository>
|
||||||
|
<remote-repository>
|
||||||
|
<option name="id" value="jboss.community" />
|
||||||
|
<option name="name" value="JBoss Community repository" />
|
||||||
|
<option name="url" value="https://repository.jboss.org/nexus/content/repositories/public/" />
|
||||||
|
</remote-repository>
|
||||||
|
<remote-repository>
|
||||||
|
<option name="id" value="central" />
|
||||||
|
<option name="name" value="Central Repository" />
|
||||||
|
<option name="url" value="https://mirror-maven.runflare.com/maven2" />
|
||||||
|
</remote-repository>
|
||||||
|
</component>
|
||||||
|
</project>
|
||||||
Generated
+12
@@ -0,0 +1,12 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="ExternalStorageConfigurationManager" enabled="true" />
|
||||||
|
<component name="MavenProjectsManager">
|
||||||
|
<option name="originalFiles">
|
||||||
|
<list>
|
||||||
|
<option value="$PROJECT_DIR$/pom.xml" />
|
||||||
|
</list>
|
||||||
|
</option>
|
||||||
|
</component>
|
||||||
|
<component name="ProjectRootManager" version="2" languageLevel="JDK_25" default="true" project-jdk-name="25" project-jdk-type="JavaSDK" />
|
||||||
|
</project>
|
||||||
Generated
+6
@@ -0,0 +1,6 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<project version="4">
|
||||||
|
<component name="VcsDirectoryMappings">
|
||||||
|
<mapping directory="" vcs="Git" />
|
||||||
|
</component>
|
||||||
|
</project>
|
||||||
@@ -1,23 +1,60 @@
|
|||||||
package dev.dao;
|
package dev.dao;
|
||||||
|
|
||||||
|
import dev.database.DatabaseConnection;
|
||||||
import dev.model.MenuItem;
|
import dev.model.MenuItem;
|
||||||
|
|
||||||
|
import java.sql.*;
|
||||||
|
import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
public class MenuItemDao {
|
public class MenuItemDao {
|
||||||
|
|
||||||
public List<MenuItem> findAll() {
|
public List<MenuItem> findAll() {
|
||||||
|
List<MenuItem> items = new ArrayList<>();
|
||||||
|
String sql = "select * FROM menu_item";
|
||||||
|
|
||||||
// TODO:
|
try (Connection connection = DatabaseConnection.getConnection();
|
||||||
// Retrieve all menu items
|
Statement statement = connection.createStatement();
|
||||||
|
ResultSet resultSet = statement.executeQuery(sql)
|
||||||
|
) {
|
||||||
|
while (resultSet.next()) {
|
||||||
|
MenuItem item = new MenuItem(
|
||||||
|
resultSet.getInt("id"),
|
||||||
|
resultSet.getString("name"),
|
||||||
|
resultSet.getString("description"),
|
||||||
|
resultSet.getDouble("price"),
|
||||||
|
resultSet.getString("category")
|
||||||
|
);
|
||||||
|
items.add(item);
|
||||||
|
}
|
||||||
|
} catch (SQLException e) {
|
||||||
|
System.err.println("Error fetching menu items: " + e.getMessage());
|
||||||
|
}
|
||||||
|
|
||||||
return null;
|
return items;
|
||||||
}
|
}
|
||||||
|
|
||||||
public MenuItem findById(int id) {
|
public MenuItem findById(int id) {
|
||||||
|
String sql = "SELECT * FROM menu_items WHERE id = ?";
|
||||||
|
|
||||||
// TODO:
|
try (Connection conn = DatabaseConnection.getConnection();
|
||||||
// Find menu item by id
|
PreparedStatement pstmt = conn.prepareStatement(sql)) {
|
||||||
|
|
||||||
|
pstmt.setInt(1, id);
|
||||||
|
try (ResultSet rs = pstmt.executeQuery()) {
|
||||||
|
if (rs.next()) {
|
||||||
|
return new MenuItem(
|
||||||
|
rs.getInt("id"),
|
||||||
|
rs.getString("name"),
|
||||||
|
rs.getString("description"),
|
||||||
|
rs.getDouble("price"),
|
||||||
|
rs.getString("category")
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} catch (SQLException e) {
|
||||||
|
System.err.println("Error finding menu item: " + e.getMessage());
|
||||||
|
}
|
||||||
|
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,25 +1,61 @@
|
|||||||
package dev.dao;
|
package dev.dao;
|
||||||
|
|
||||||
|
import dev.database.DatabaseConnection;
|
||||||
import dev.model.Order;
|
import dev.model.Order;
|
||||||
|
|
||||||
|
import java.sql.*;
|
||||||
|
import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
public class OrderDao {
|
public class OrderDao {
|
||||||
|
|
||||||
public int save(Order order) {
|
public int save(Order order) {
|
||||||
|
|
||||||
// TODO:
|
String sql = "INSERT INTO orders (user_id, total_price) VALUES (?, ?)";
|
||||||
// Insert order and return generated id
|
|
||||||
|
|
||||||
|
try (Connection conn = DatabaseConnection.getConnection();
|
||||||
|
PreparedStatement pstmt = conn.prepareStatement(sql, Statement.RETURN_GENERATED_KEYS)) {
|
||||||
|
|
||||||
|
pstmt.setInt(1, order.getUserId());
|
||||||
|
pstmt.setDouble(2, order.getTotalPrice());
|
||||||
|
pstmt.executeUpdate();
|
||||||
|
|
||||||
|
//Generated ID
|
||||||
|
try (ResultSet rs = pstmt.getGeneratedKeys()) {
|
||||||
|
if (rs.next()) {
|
||||||
|
return rs.getInt(1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} catch (SQLException e) {
|
||||||
|
System.err.println("Error saving order: " + e.getMessage());
|
||||||
|
}
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
public List<Order> findByUserId(int userId) {
|
public List<Order> findByUserId(int userId) {
|
||||||
|
List<Order> orders = new ArrayList<>();
|
||||||
|
String sql = "SELECT * FROM orders WHERE user_id = ? ORDER BY created_at DESC";
|
||||||
|
|
||||||
// TODO:
|
try (Connection conn = DatabaseConnection.getConnection();
|
||||||
// Retrieve all orders of a user
|
PreparedStatement pstmt = conn.prepareStatement(sql)) {
|
||||||
|
|
||||||
return null;
|
pstmt.setInt(1, userId);
|
||||||
|
|
||||||
|
try (ResultSet rs = pstmt.executeQuery()) {
|
||||||
|
while (rs.next()) {
|
||||||
|
Order order = new Order(
|
||||||
|
rs.getInt("id"),
|
||||||
|
rs.getInt("user_id"),
|
||||||
|
rs.getTimestamp("created_at"),
|
||||||
|
rs.getDouble("total_price")
|
||||||
|
);
|
||||||
|
orders.add(order);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} catch (SQLException e) {
|
||||||
|
System.err.println("Error retrieving orders for user: " + e.getMessage());
|
||||||
|
}
|
||||||
|
return orders;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -1,24 +1,62 @@
|
|||||||
package dev.dao;
|
package dev.dao;
|
||||||
|
|
||||||
|
import dev.database.DatabaseConnection;
|
||||||
import dev.model.OrderDetail;
|
import dev.model.OrderDetail;
|
||||||
|
|
||||||
|
import java.sql.Connection;
|
||||||
|
import java.sql.PreparedStatement;
|
||||||
|
import java.sql.ResultSet;
|
||||||
|
import java.sql.SQLException;
|
||||||
|
import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
public class OrderDetailDao {
|
public class OrderDetailDao {
|
||||||
|
|
||||||
public void save(OrderDetail detail) {
|
public void save(OrderDetail detail) {
|
||||||
|
|
||||||
// TODO:
|
String sql = "INSERT INTO order_details (order_id, menu_item_id, quantity, price_at_purchase) VALUES (?, ?, ?, ?)";
|
||||||
// Insert order detail
|
|
||||||
|
|
||||||
|
try (Connection conn = DatabaseConnection.getConnection();
|
||||||
|
PreparedStatement pstmt = conn.prepareStatement(sql)) {
|
||||||
|
|
||||||
|
pstmt.setInt(1, detail.getOrderId());
|
||||||
|
pstmt.setInt(2, detail.getMenuItemId());
|
||||||
|
pstmt.setInt(3, detail.getQuantity());
|
||||||
|
pstmt.setDouble(4, detail.getPriceAtPurchase());
|
||||||
|
|
||||||
|
pstmt.executeUpdate();
|
||||||
|
|
||||||
|
} catch (SQLException e) {
|
||||||
|
System.err.println("Error saving order detail: " + e.getMessage());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public List<OrderDetail> findByOrderId(int orderId) {
|
public List<OrderDetail> findByOrderId(int orderId) {
|
||||||
|
|
||||||
// TODO:
|
List<OrderDetail> details = new ArrayList<>();
|
||||||
// Retrieve order details
|
String sql = "SELECT * FROM order_details WHERE order_id = ?";
|
||||||
|
|
||||||
return null;
|
try (Connection conn = DatabaseConnection.getConnection();
|
||||||
|
PreparedStatement pstmt = conn.prepareStatement(sql)) {
|
||||||
|
|
||||||
|
pstmt.setInt(1, orderId);
|
||||||
|
|
||||||
|
try (ResultSet rs = pstmt.executeQuery()) {
|
||||||
|
while (rs.next()) {
|
||||||
|
OrderDetail detail = new OrderDetail(
|
||||||
|
rs.getInt("id"),
|
||||||
|
rs.getInt("order_id"),
|
||||||
|
rs.getInt("menu_item_id"),
|
||||||
|
rs.getInt("quantity"),
|
||||||
|
rs.getDouble("price_at_purchase")
|
||||||
|
);
|
||||||
|
details.add(detail);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} catch (SQLException e) {
|
||||||
|
System.err.println("Error retrieving order details: " + e.getMessage());
|
||||||
|
}
|
||||||
|
return details;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -1,22 +1,59 @@
|
|||||||
package dev.dao;
|
package dev.dao;
|
||||||
|
|
||||||
|
import dev.database.DatabaseConnection;
|
||||||
import dev.model.User;
|
import dev.model.User;
|
||||||
|
|
||||||
|
import java.sql.*;
|
||||||
|
|
||||||
public class UserDao {
|
public class UserDao {
|
||||||
|
|
||||||
public boolean save(User user) {
|
public boolean save(User user) {
|
||||||
|
|
||||||
// TODO:
|
String sql = "INSERT INTO users (username, password, email) VALUES (?, ?, ?)";
|
||||||
// Insert user into database
|
|
||||||
|
|
||||||
|
try (Connection conn = DatabaseConnection.getConnection();
|
||||||
|
PreparedStatement pstmt = conn.prepareStatement(sql)) {
|
||||||
|
|
||||||
|
pstmt.setString(1, user.getUsername());
|
||||||
|
pstmt.setString(2, user.getPassword());
|
||||||
|
|
||||||
|
if (user.getEmail() == null || user.getEmail().trim().isEmpty()) {
|
||||||
|
pstmt.setNull(3, Types.VARCHAR);
|
||||||
|
} else {
|
||||||
|
pstmt.setString(3, user.getEmail());
|
||||||
|
}
|
||||||
|
|
||||||
|
int rowsAffected = pstmt.executeUpdate();
|
||||||
|
return rowsAffected > 0;
|
||||||
|
|
||||||
|
} catch (SQLException e) {
|
||||||
|
System.err.println("Error saving user: " + e.getMessage());
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
public User findByUsername(String username) {
|
public User findByUsername(String username) {
|
||||||
|
|
||||||
// TODO:
|
String sql = "SELECT * FROM users WHERE username = ?";
|
||||||
// Find a user by username
|
|
||||||
|
|
||||||
|
try (Connection conn = DatabaseConnection.getConnection();
|
||||||
|
PreparedStatement pstmt = conn.prepareStatement(sql)) {
|
||||||
|
|
||||||
|
pstmt.setString(1, username);
|
||||||
|
|
||||||
|
try (ResultSet rs = pstmt.executeQuery()) {
|
||||||
|
if (rs.next()) {
|
||||||
|
return new User(
|
||||||
|
rs.getInt("id"),
|
||||||
|
rs.getString("username"),
|
||||||
|
rs.getString("password"),
|
||||||
|
rs.getString("email")
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} catch (SQLException e) {
|
||||||
|
System.err.println("Error finding user by username: " + e.getMessage());
|
||||||
|
}
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
package dev.database;
|
package dev.database;
|
||||||
|
|
||||||
import java.sql.Connection;
|
import java.sql.Connection;
|
||||||
|
import java.sql.DriverManager;
|
||||||
import java.sql.SQLException;
|
import java.sql.SQLException;
|
||||||
|
|
||||||
public class DatabaseConnection {
|
public class DatabaseConnection {
|
||||||
@@ -20,8 +21,7 @@ public class DatabaseConnection {
|
|||||||
|
|
||||||
// TODO:
|
// TODO:
|
||||||
// Return a valid PostgreSQL connection
|
// Return a valid PostgreSQL connection
|
||||||
|
return DriverManager.getConnection(URL, USER, PASSWORD);
|
||||||
return null;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -12,4 +12,31 @@ public class MenuItem {
|
|||||||
|
|
||||||
private String category;
|
private String category;
|
||||||
|
|
||||||
|
public MenuItem(int id, String name, String description, double price, String category) {
|
||||||
|
this.id=id;
|
||||||
|
this.name=name;
|
||||||
|
this.description=description;
|
||||||
|
this.price=price;
|
||||||
|
this.category=category;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getDescription() {
|
||||||
|
return description;
|
||||||
|
}
|
||||||
|
|
||||||
|
public int getId() {
|
||||||
|
return this.id;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getName() {
|
||||||
|
return this.name;
|
||||||
|
}
|
||||||
|
|
||||||
|
public double getPrice() {
|
||||||
|
return this.price;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getCategory() {
|
||||||
|
return this.category;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
@@ -1,5 +1,6 @@
|
|||||||
package dev.model;
|
package dev.model;
|
||||||
|
|
||||||
|
import java.sql.Timestamp;
|
||||||
import java.time.LocalDateTime;
|
import java.time.LocalDateTime;
|
||||||
|
|
||||||
public class Order {
|
public class Order {
|
||||||
@@ -12,4 +13,18 @@ public class Order {
|
|||||||
|
|
||||||
private double totalPrice;
|
private double totalPrice;
|
||||||
|
|
||||||
|
public Order(int id, int userId, Timestamp createdAt, double totalPrice) {
|
||||||
|
this.id=id;
|
||||||
|
this.userId=userId;
|
||||||
|
this.createdAt= createdAt.toLocalDateTime();
|
||||||
|
this.totalPrice=totalPrice;
|
||||||
|
}
|
||||||
|
|
||||||
|
public int getUserId() {
|
||||||
|
return id;
|
||||||
|
}
|
||||||
|
|
||||||
|
public double getTotalPrice() {
|
||||||
|
return totalPrice;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
@@ -12,4 +12,27 @@ public class OrderDetail {
|
|||||||
|
|
||||||
private double price;
|
private double price;
|
||||||
|
|
||||||
|
public OrderDetail(int id, int orderId, int menuItemId, int quantity, double priceAtPurchase) {
|
||||||
|
this.id=id;
|
||||||
|
this.orderId=orderId;
|
||||||
|
this.menuItemId=menuItemId;
|
||||||
|
this.quantity=quantity;
|
||||||
|
this.price=priceAtPurchase;
|
||||||
|
}
|
||||||
|
|
||||||
|
public int getOrderId() {
|
||||||
|
return orderId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public int getMenuItemId() {
|
||||||
|
return menuItemId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public int getQuantity() {
|
||||||
|
return quantity;
|
||||||
|
}
|
||||||
|
|
||||||
|
public double getPriceAtPurchase() {
|
||||||
|
return price;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
@@ -10,4 +10,26 @@ public class User {
|
|||||||
|
|
||||||
private String email;
|
private String email;
|
||||||
|
|
||||||
|
public User(int id, String username, String password, String email) {
|
||||||
|
this.id=id;
|
||||||
|
this.username=username;
|
||||||
|
this.password=password;
|
||||||
|
this.email=email;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getUsername() {
|
||||||
|
return username;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getPassword() {
|
||||||
|
return password;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getEmail() {
|
||||||
|
return email;
|
||||||
|
}
|
||||||
|
|
||||||
|
public int getId() {
|
||||||
|
return id;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
@@ -1,7 +1,12 @@
|
|||||||
package dev.service;
|
package dev.service;
|
||||||
|
|
||||||
|
import dev.database.DatabaseConnection;
|
||||||
import dev.model.User;
|
import dev.model.User;
|
||||||
|
|
||||||
|
import java.security.MessageDigest;
|
||||||
|
import java.sql.*;
|
||||||
|
import java.util.Base64;
|
||||||
|
|
||||||
public class AuthService {
|
public class AuthService {
|
||||||
|
|
||||||
public boolean register(String username, String password, String email) {
|
public boolean register(String username, String password, String email) {
|
||||||
@@ -9,15 +14,67 @@ public class AuthService {
|
|||||||
// TODO:
|
// TODO:
|
||||||
// Validate and register user
|
// Validate and register user
|
||||||
|
|
||||||
|
if (username == null || username.trim().isEmpty() || password == null || password.isEmpty()) {
|
||||||
|
System.out.println("Username and password cannot be empty.");
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
String sql = "INSERT INTO users (username, password, email) VALUES (?, ?, ?)";
|
||||||
|
try (Connection conn = DatabaseConnection.getConnection();
|
||||||
|
PreparedStatement pstmt = conn.prepareStatement(sql)) {
|
||||||
|
|
||||||
|
pstmt.setString(1, username);
|
||||||
|
pstmt.setString(2, hashPassword(password));
|
||||||
|
if (email == null || email.trim().isEmpty()) {
|
||||||
|
pstmt.setNull(3, Types.VARCHAR);
|
||||||
|
} else {
|
||||||
|
pstmt.setString(3, email);
|
||||||
|
}
|
||||||
|
|
||||||
|
pstmt.executeUpdate();
|
||||||
|
return true;
|
||||||
|
} catch (SQLException e) {
|
||||||
|
System.out.println("Registration failed (Username might already exist): " + e.getMessage());
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
public User login(String username, String password) {
|
public User login(String username, String password) {
|
||||||
|
|
||||||
// TODO:
|
// TODO:
|
||||||
// Authenticate user
|
// Authenticate user
|
||||||
|
|
||||||
|
String sql = "SELECT * FROM users WHERE username = ? AND password = ?";
|
||||||
|
try (Connection conn = DatabaseConnection.getConnection();
|
||||||
|
PreparedStatement pstmt = conn.prepareStatement(sql)) {
|
||||||
|
|
||||||
|
pstmt.setString(1, username);
|
||||||
|
pstmt.setString(2, hashPassword(password));
|
||||||
|
|
||||||
|
try (ResultSet rs = pstmt.executeQuery()) {
|
||||||
|
if (rs.next()) {
|
||||||
|
return new User(
|
||||||
|
rs.getInt("id"),
|
||||||
|
rs.getString("username"),
|
||||||
|
rs.getString("password"),
|
||||||
|
rs.getString("email")
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} catch (SQLException e) {
|
||||||
|
System.out.println("Login error: " + e.getMessage());
|
||||||
|
}
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private String hashPassword(String password) {
|
||||||
|
try {
|
||||||
|
MessageDigest digest = MessageDigest.getInstance("SHA-256");
|
||||||
|
byte[] hash = digest.digest(password.getBytes("UTF-8"));
|
||||||
|
return Base64.getEncoder().encodeToString(hash);
|
||||||
|
} catch (Exception e) {
|
||||||
|
throw new RuntimeException("Hashing failed", e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -1,5 +1,10 @@
|
|||||||
package dev.service;
|
package dev.service;
|
||||||
|
|
||||||
|
import dev.dao.MenuItemDao;
|
||||||
|
import dev.model.MenuItem;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
public class MenuService {
|
public class MenuService {
|
||||||
|
|
||||||
public void showMenu() {
|
public void showMenu() {
|
||||||
@@ -7,6 +12,21 @@ public class MenuService {
|
|||||||
// TODO:
|
// TODO:
|
||||||
// Display menu items
|
// Display menu items
|
||||||
|
|
||||||
|
final MenuItemDao menuItemDao = new MenuItemDao();
|
||||||
|
|
||||||
|
List<MenuItem> items = menuItemDao.findAll();
|
||||||
|
if (items.isEmpty()) {
|
||||||
|
System.out.println("The menu is currently empty.");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
System.out.println("\n===== MENU =====");
|
||||||
|
for (MenuItem item : items) {
|
||||||
|
System.out.printf("[%d] %s - $%.2f (%s)\n", item.getId(), item.getName(), item.getPrice(), item.getCategory());
|
||||||
|
if (item.getDescription() != null) {
|
||||||
|
System.out.println(" " + item.getDescription());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -1,26 +1,158 @@
|
|||||||
package dev.service;
|
package dev.service;
|
||||||
|
|
||||||
|
import dev.dao.MenuItemDao;
|
||||||
|
import dev.database.DatabaseConnection;
|
||||||
|
import dev.model.MenuItem;
|
||||||
|
|
||||||
|
import java.sql.*;
|
||||||
|
import java.util.Scanner;
|
||||||
|
|
||||||
public class OrderService {
|
public class OrderService {
|
||||||
|
private final MenuItemDao menuItemDao = new MenuItemDao();
|
||||||
|
private final Scanner scanner = new Scanner(System.in);
|
||||||
|
|
||||||
public void placeOrder(int userId) {
|
public void placeOrder(int userId) {
|
||||||
|
Connection conn = null;
|
||||||
|
try {
|
||||||
|
conn = DatabaseConnection.getConnection();
|
||||||
|
conn.setAutoCommit(false);
|
||||||
|
|
||||||
// TODO:
|
String insertOrderSql = "INSERT INTO orders (user_id, total_price) VALUES (?, 0.00)";
|
||||||
// Create order
|
PreparedStatement orderStmt = conn.prepareStatement(insertOrderSql, Statement.RETURN_GENERATED_KEYS);
|
||||||
|
orderStmt.setInt(1, userId);
|
||||||
|
orderStmt.executeUpdate();
|
||||||
|
|
||||||
|
ResultSet generatedKeys = orderStmt.getGeneratedKeys();
|
||||||
|
int orderId = 0;
|
||||||
|
if (generatedKeys.next()) {
|
||||||
|
orderId = generatedKeys.getInt(1);
|
||||||
|
}
|
||||||
|
|
||||||
|
double grandTotal = 0.0;
|
||||||
|
boolean addingItems = true;
|
||||||
|
String insertDetailSql = "INSERT INTO order_details (order_id, menu_item_id, quantity, price_at_purchase) VALUES (?, ?, ?, ?)";
|
||||||
|
PreparedStatement detailStmt = conn.prepareStatement(insertDetailSql);
|
||||||
|
|
||||||
|
while (addingItems) {
|
||||||
|
System.out.print("Enter Menu Item ID to add (or 0 to finish): ");
|
||||||
|
int itemId = scanner.nextInt();
|
||||||
|
if (itemId == 0) {
|
||||||
|
addingItems = false;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
MenuItem item = menuItemDao.findById(itemId);
|
||||||
|
if (item == null) {
|
||||||
|
System.out.println("Invalid Item ID. Try again.");
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
System.out.print("Enter quantity: ");
|
||||||
|
int quantity = scanner.nextInt();
|
||||||
|
if (quantity <= 0) {
|
||||||
|
System.out.println("Quantity must be greater than zero.");
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
double subtotal = (item.getPrice()) * quantity;
|
||||||
|
grandTotal += subtotal;
|
||||||
|
|
||||||
|
detailStmt.setInt(1, orderId);
|
||||||
|
detailStmt.setInt(2, item.getId());
|
||||||
|
detailStmt.setInt(3, quantity);
|
||||||
|
detailStmt.setDouble(4, item.getPrice());
|
||||||
|
detailStmt.executeUpdate();
|
||||||
|
}
|
||||||
|
|
||||||
|
if (grandTotal == 0.0) {
|
||||||
|
System.out.println("No items selected. Canceling order.");
|
||||||
|
conn.rollback();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
String updateOrderSql = "UPDATE orders SET total_price = ? WHERE id = ?";
|
||||||
|
PreparedStatement updateStmt = conn.prepareStatement(updateOrderSql);
|
||||||
|
updateStmt.setDouble(1, grandTotal);
|
||||||
|
updateStmt.setInt(2, orderId);
|
||||||
|
updateStmt.executeUpdate();
|
||||||
|
|
||||||
|
conn.commit();
|
||||||
|
System.out.println("Order successfully saved!");
|
||||||
|
printReceipt(orderId);
|
||||||
|
|
||||||
|
} catch (SQLException e) {
|
||||||
|
System.out.println("Order failed: " + e.getMessage());
|
||||||
|
if (conn != null) {
|
||||||
|
try { conn.rollback(); } catch (SQLException ex) { ex.printStackTrace(); }
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void printReceipt(int orderId) {
|
public void printReceipt(int orderId) {
|
||||||
|
|
||||||
// TODO:
|
String sql = "SELECT od.quantity, od.price_at_purchase, m.name, o.total_price " +
|
||||||
// Print order receipt
|
"FROM order_details od " +
|
||||||
|
"JOIN menu_items m ON od.menu_item_id = m.id " +
|
||||||
|
"JOIN orders o ON od.order_id = o.id " +
|
||||||
|
"WHERE od.order_id = ?";
|
||||||
|
|
||||||
|
try (Connection conn = DatabaseConnection.getConnection();
|
||||||
|
PreparedStatement pstmt = conn.prepareStatement(sql)) {
|
||||||
|
|
||||||
|
pstmt.setInt(1, orderId);
|
||||||
|
try (ResultSet rs = pstmt.executeQuery()) {
|
||||||
|
System.out.println("\n========= RECEIPT (Order #" + orderId + ") =========");
|
||||||
|
double grandTotal = 0.0;
|
||||||
|
boolean hasRows = false;
|
||||||
|
|
||||||
|
while (rs.next()) {
|
||||||
|
hasRows = true;
|
||||||
|
String name = rs.getString("name");
|
||||||
|
int qty = rs.getInt("quantity");
|
||||||
|
double price = rs.getDouble("price_at_purchase");
|
||||||
|
double subtotal = qty * price;
|
||||||
|
grandTotal = rs.getDouble("total_price");
|
||||||
|
|
||||||
|
System.out.printf("- %s x%d @ $%.2f = $%.2f\n", name, qty, price, subtotal);
|
||||||
|
}
|
||||||
|
if (!hasRows) {
|
||||||
|
System.out.println("Order not found.");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
System.out.println("----------------------------------------");
|
||||||
|
System.out.printf("GRAND TOTAL: $%.2f\n", grandTotal);
|
||||||
|
System.out.println("========================================");
|
||||||
|
}
|
||||||
|
} catch (SQLException e) {
|
||||||
|
System.out.println("Error generating receipt: " + e.getMessage());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void showOrderHistory(int userId) {
|
public void showOrderHistory(int userId) {
|
||||||
|
String sql = "SELECT id, created_at, total_price FROM orders WHERE user_id = ? ORDER BY created_at DESC";
|
||||||
|
|
||||||
// TODO:
|
try (Connection conn = DatabaseConnection.getConnection();
|
||||||
// Display user's order history
|
PreparedStatement pstmt = conn.prepareStatement(sql)) {
|
||||||
|
|
||||||
|
pstmt.setInt(1, userId);
|
||||||
|
try (ResultSet rs = pstmt.executeQuery()) {
|
||||||
|
System.out.println("\n===== YOUR ORDER HISTORY =====");
|
||||||
|
boolean hasHistory = false;
|
||||||
|
while (rs.next()) {
|
||||||
|
hasHistory = true;
|
||||||
|
System.out.printf("Order #%d | Date: %s | Total Spent: $%.2f\n",
|
||||||
|
rs.getInt("id"),
|
||||||
|
rs.getTimestamp("created_at").toString(),
|
||||||
|
rs.getDouble("total_price")
|
||||||
|
);
|
||||||
|
}
|
||||||
|
if (!hasHistory) {
|
||||||
|
System.out.println("You haven't placed any orders yet.");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} catch (SQLException e) {
|
||||||
|
System.out.println("Error fetching history: " + e.getMessage());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -1,11 +1,19 @@
|
|||||||
package dev.ui;
|
package dev.ui;
|
||||||
|
|
||||||
|
import dev.model.User;
|
||||||
|
import dev.service.AuthService;
|
||||||
|
import dev.service.MenuService;
|
||||||
|
import dev.service.OrderService;
|
||||||
|
|
||||||
import java.util.Scanner;
|
import java.util.Scanner;
|
||||||
|
|
||||||
public class ConsoleMenu {
|
public class ConsoleMenu {
|
||||||
|
|
||||||
private final Scanner scanner =
|
private final Scanner scanner =
|
||||||
new Scanner(System.in);
|
new Scanner(System.in);
|
||||||
|
private final AuthService authService = new AuthService();
|
||||||
|
private final MenuService menuService = new MenuService();
|
||||||
|
private final OrderService orderService = new OrderService();
|
||||||
|
|
||||||
public void start() {
|
public void start() {
|
||||||
|
|
||||||
@@ -23,10 +31,12 @@ public class ConsoleMenu {
|
|||||||
|
|
||||||
case 1:
|
case 1:
|
||||||
// TODO
|
// TODO
|
||||||
|
handleLogin();
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 2:
|
case 2:
|
||||||
// TODO
|
// TODO
|
||||||
|
handleRegister();
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 3:
|
case 3:
|
||||||
@@ -41,4 +51,64 @@ public class ConsoleMenu {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void handleRegister() {
|
||||||
|
System.out.print("Choose Username: ");
|
||||||
|
String user = scanner.nextLine();
|
||||||
|
System.out.print("Choose Password: ");
|
||||||
|
String pass = scanner.nextLine();
|
||||||
|
System.out.print("Email (Optional, press Enter to skip): ");
|
||||||
|
String email = scanner.nextLine();
|
||||||
|
|
||||||
|
if (authService.register(user, pass, email)) {
|
||||||
|
System.out.println("Registration successful! You can now log in.");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void handleLogin() {
|
||||||
|
System.out.print("Username: ");
|
||||||
|
String user = scanner.nextLine();
|
||||||
|
System.out.print("Password: ");
|
||||||
|
String pass = scanner.nextLine();
|
||||||
|
|
||||||
|
User loggedInUser = authService.login(user, pass);
|
||||||
|
if (loggedInUser != null) {
|
||||||
|
System.out.println("Welcome back, " + loggedInUser.getUsername() + "!");
|
||||||
|
showCustomerDashboard(loggedInUser);
|
||||||
|
} else {
|
||||||
|
System.out.println("Invalid username or password.");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void showCustomerDashboard(User user) {
|
||||||
|
while (true) {
|
||||||
|
System.out.println("\n===== CUSTOMER MENU =====");
|
||||||
|
System.out.println("1. Browse Menu");
|
||||||
|
System.out.println("2. Place New Order");
|
||||||
|
System.out.println("3. View Order History");
|
||||||
|
System.out.println("4. Logout");
|
||||||
|
System.out.print("Choose an option: ");
|
||||||
|
|
||||||
|
int choice = scanner.nextInt();
|
||||||
|
scanner.nextLine();
|
||||||
|
|
||||||
|
switch (choice) {
|
||||||
|
case 1:
|
||||||
|
menuService.showMenu();
|
||||||
|
break;
|
||||||
|
case 2:
|
||||||
|
menuService.showMenu();
|
||||||
|
orderService.placeOrder(user.getId());
|
||||||
|
break;
|
||||||
|
case 3:
|
||||||
|
orderService.showOrderHistory(user.getId());
|
||||||
|
break;
|
||||||
|
case 4:
|
||||||
|
System.out.println("Logged out successfully.");
|
||||||
|
return;
|
||||||
|
default:
|
||||||
|
System.out.println("Invalid choice.");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user