1 | <?php
|
---|
2 | session_start();
|
---|
3 | require './connect.php';
|
---|
4 |
|
---|
5 | if (!isset($_SESSION['userid']) || !isset($_POST['loanId'])) {
|
---|
6 | echo json_encode(['success' => false, 'message' => 'Invalid request']);
|
---|
7 | exit;
|
---|
8 | }
|
---|
9 |
|
---|
10 | try {
|
---|
11 | $conn->beginTransaction();
|
---|
12 |
|
---|
13 | // Get loan details to calculate fine
|
---|
14 | $getLoan = "SELECT loan.*, book.title, Book_Copies.copyid
|
---|
15 | FROM loan
|
---|
16 | INNER JOIN Book_Copies ON loan.BookCopyID = Book_Copies.copyid
|
---|
17 | INNER JOIN book ON Book_Copies.bookid = book.bookid
|
---|
18 | WHERE loan.loanid = :loanid AND loan.memberid = :userid";
|
---|
19 | $stmt = $conn->prepare($getLoan);
|
---|
20 | $stmt->bindParam(':loanid', $_POST['loanId'], PDO::PARAM_INT);
|
---|
21 | $stmt->bindParam(':userid', $_SESSION['userid'], PDO::PARAM_INT);
|
---|
22 | $stmt->execute();
|
---|
23 | $loanDetails = $stmt->fetch(PDO::FETCH_ASSOC);
|
---|
24 |
|
---|
25 | if (!$loanDetails) {
|
---|
26 | throw new Exception('Loan not found');
|
---|
27 | }
|
---|
28 |
|
---|
29 | // Calculate fine amount ($0.50 per day overdue)
|
---|
30 | $dueDate = new DateTime($loanDetails['loandate']);
|
---|
31 | $dueDate->modify('+14 days');
|
---|
32 | $returnDate = new DateTime();
|
---|
33 | $daysOverdue = $returnDate->diff($dueDate)->days;
|
---|
34 | $fineAmount = $daysOverdue * 0.50;
|
---|
35 |
|
---|
36 | // Insert into fines table
|
---|
37 | $insertFine = "INSERT INTO fine (FineAmount, FineDate, Status, LoanID)
|
---|
38 | VALUES (:amount, CURRENT_DATE, 'Unpaid', :loanid)";
|
---|
39 | $stmt = $conn->prepare($insertFine);
|
---|
40 | $stmt->bindParam(':amount', $fineAmount, PDO::PARAM_STR);
|
---|
41 | $stmt->bindParam(':loanid', $_POST['loanId'], PDO::PARAM_INT);
|
---|
42 | $stmt->execute();
|
---|
43 |
|
---|
44 | // Update loan status to 'Returned'
|
---|
45 | $updateLoan = "UPDATE loan SET status = 'Returned', returndate = CURRENT_DATE WHERE loanid = :loanid AND memberid = :userid";
|
---|
46 | $stmt = $conn->prepare($updateLoan);
|
---|
47 | $stmt->bindParam(':loanid', $_POST['loanId'], PDO::PARAM_INT);
|
---|
48 | $stmt->bindParam(':userid', $_SESSION['userid'], PDO::PARAM_INT);
|
---|
49 | $stmt->execute();
|
---|
50 |
|
---|
51 | // Check if the loan was actually updated
|
---|
52 | if ($stmt->rowCount() === 0) {
|
---|
53 | throw new Exception('Loan not found or not authorized');
|
---|
54 | }
|
---|
55 |
|
---|
56 | // Update book copy status
|
---|
57 | $updateCopy = "UPDATE loan
|
---|
58 | SET BookCopyID = NULL, status = 'Available'
|
---|
59 | WHERE loanid = :loanid AND BookCopyID = :copyid";
|
---|
60 | $stmt = $conn->prepare($updateCopy);
|
---|
61 | $stmt->bindParam(':loanid', $loanId, PDO::PARAM_INT);
|
---|
62 | $stmt->bindParam(':copyid', $copyId, PDO::PARAM_INT);
|
---|
63 | $stmt->execute();
|
---|
64 |
|
---|
65 | $conn->commit();
|
---|
66 | echo json_encode(['success' => true, 'fine' => $fineAmount]);
|
---|
67 |
|
---|
68 | } catch (Exception $e) {
|
---|
69 | $conn->rollBack();
|
---|
70 | echo json_encode(['success' => false, 'message' => $e->getMessage()]);
|
---|
71 | echo json_encode(['success' => false, 'message' => $e->getMessage(), 'trace' => $e->getTraceAsString()]);
|
---|
72 | echo json_encode(['success' => true, 'fine' => (float)$fineAmount]);
|
---|
73 | }
|
---|
74 | ?> |
---|