[75f74d9] | 1 | <?php
|
---|
| 2 | error_reporting(E_ALL);
|
---|
| 3 | ini_set('display_errors', 1);
|
---|
| 4 |
|
---|
| 5 | header('Content-Type: application/json');
|
---|
| 6 |
|
---|
| 7 | require '../connect.php';
|
---|
| 8 |
|
---|
| 9 | try {
|
---|
| 10 | // Start transaction
|
---|
| 11 | $conn->beginTransaction();
|
---|
| 12 |
|
---|
| 13 | if ($_SERVER['REQUEST_METHOD'] !== 'POST') {
|
---|
| 14 | throw new Exception('Invalid request method');
|
---|
| 15 | }
|
---|
| 16 |
|
---|
| 17 | $firstName = $_POST['firstName'] ?? '';
|
---|
| 18 | $lastName = $_POST['lastName'] ?? '';
|
---|
| 19 | $nationality = $_POST['nationality'] ?? '';
|
---|
| 20 | $dateOfBirth = $_POST['dateOfBirth'] ?? '';
|
---|
| 21 | $authorDescription = $_POST['authorDescription'] ?? '';
|
---|
| 22 |
|
---|
| 23 | if (empty($firstName) || empty($lastName) || empty($nationality) || empty($dateOfBirth)) {
|
---|
| 24 | throw new Exception('Required fields cannot be empty');
|
---|
| 25 | }
|
---|
| 26 |
|
---|
| 27 | // image upload
|
---|
| 28 | $imageName = null;
|
---|
| 29 | if (isset($_FILES['authorImage']) && $_FILES['authorImage']['error'] === UPLOAD_ERR_OK) {
|
---|
| 30 | $uploadDir = '../AuthorImages/';
|
---|
| 31 | /*
|
---|
| 32 | if (!file_exists($uploadDir)) {
|
---|
| 33 | mkdir($uploadDir, 0777, true);
|
---|
| 34 | }*/
|
---|
| 35 |
|
---|
| 36 | $fileExtension = strtolower(pathinfo($_FILES['authorImage']['name'], PATHINFO_EXTENSION));
|
---|
| 37 | $imageName = uniqid() . '_author.' . $fileExtension;
|
---|
| 38 | $targetPath = $uploadDir . $imageName;
|
---|
| 39 |
|
---|
| 40 | $allowedTypes = ['jpg', 'jpeg', 'png', 'gif'];
|
---|
| 41 | if (!in_array($fileExtension, $allowedTypes)) {
|
---|
| 42 | throw new Exception('Invalid file type. Only JPG, JPEG, PNG, and GIF are allowed.');
|
---|
| 43 | }
|
---|
| 44 |
|
---|
| 45 | if (!move_uploaded_file($_FILES['authorImage']['tmp_name'], $targetPath)) {
|
---|
| 46 | throw new Exception('Failed to upload image');
|
---|
| 47 | }
|
---|
| 48 | }
|
---|
| 49 |
|
---|
| 50 | $sql = "INSERT INTO author (firstname, lastname, nationality, dateofbirth, author_description, author_image)
|
---|
| 51 | VALUES (:firstname, :lastname, :nationality, :dateofbirth, :author_description, :author_image)";
|
---|
| 52 |
|
---|
| 53 | $stmt = $conn->prepare($sql);
|
---|
| 54 | $stmt->execute([
|
---|
| 55 | ':firstname' => $firstName,
|
---|
| 56 | ':lastname' => $lastName,
|
---|
| 57 | ':nationality' => $nationality,
|
---|
| 58 | ':dateofbirth' => $dateOfBirth,
|
---|
| 59 | ':author_description' => $authorDescription,
|
---|
| 60 | ':author_image' => $imageName
|
---|
| 61 | ]);
|
---|
| 62 |
|
---|
| 63 | $conn->commit();
|
---|
| 64 |
|
---|
| 65 | echo json_encode(['success' => true, 'message' => 'Author added successfully']);
|
---|
| 66 |
|
---|
| 67 | } catch (Exception $e) {
|
---|
| 68 | // Rollback the transaction if it's active
|
---|
| 69 | if ($conn->inTransaction()) {
|
---|
| 70 | $conn->rollBack();
|
---|
| 71 | }
|
---|
| 72 |
|
---|
| 73 | if (isset($imageName) && file_exists($uploadDir . $imageName)) {
|
---|
| 74 | unlink($uploadDir . $imageName);
|
---|
| 75 | }
|
---|
| 76 |
|
---|
| 77 | echo json_encode(['success' => false, 'message' => $e->getMessage()]);
|
---|
| 78 | }
|
---|
| 79 |
|
---|
| 80 | ?> |
---|