1 | <?php
|
---|
2 | require_once '../connect.php';
|
---|
3 |
|
---|
4 | header('Content-Type: application/json');
|
---|
5 |
|
---|
6 | if ($_SERVER['REQUEST_METHOD'] === 'POST') {
|
---|
7 | try {
|
---|
8 |
|
---|
9 | $required = ['authorId', 'firstName', 'lastName', 'nationality', 'dateOfBirth', 'authorDescription'];
|
---|
10 | foreach ($required as $field) {
|
---|
11 | if (!isset($_POST[$field])) {
|
---|
12 | throw new Exception("Missing required field: $field");
|
---|
13 | }
|
---|
14 | }
|
---|
15 |
|
---|
16 | $conn->beginTransaction();
|
---|
17 |
|
---|
18 | $authorId = $_POST['authorId'];
|
---|
19 | $firstName = $_POST['firstName'];
|
---|
20 | $lastName = $_POST['lastName'];
|
---|
21 | $nationality = $_POST['nationality'];
|
---|
22 | $dateOfBirth = $_POST['dateOfBirth'];
|
---|
23 | $authorDescription = $_POST['authorDescription'];
|
---|
24 |
|
---|
25 | $imageName = null;
|
---|
26 |
|
---|
27 | if (isset($_FILES['authorImage']) && $_FILES['authorImage']['error'] === UPLOAD_ERR_OK) {
|
---|
28 | $uploadDir = __DIR__ . "/../AuthorImages/";
|
---|
29 |
|
---|
30 | // Create directory if not exists
|
---|
31 | if (!file_exists($uploadDir)) {
|
---|
32 | mkdir($uploadDir, 0777, true);
|
---|
33 | }
|
---|
34 |
|
---|
35 | $fileExtension = strtolower(pathinfo($_FILES['authorImage']['name'], PATHINFO_EXTENSION));
|
---|
36 | $allowedTypes = ['jpg', 'jpeg', 'png', 'gif'];
|
---|
37 |
|
---|
38 | if (!in_array($fileExtension, $allowedTypes)) {
|
---|
39 | throw new Exception('Invalid file type. Allowed: JPG, JPEG, PNG, GIF.');
|
---|
40 | }
|
---|
41 |
|
---|
42 | $fileName = uniqid() . '_' . basename($_FILES['authorImage']['name']);
|
---|
43 | $targetPath = $uploadDir . $fileName;
|
---|
44 |
|
---|
45 | if (!move_uploaded_file($_FILES['authorImage']['tmp_name'], $targetPath)) {
|
---|
46 | throw new Exception('Failed to upload image.');
|
---|
47 | }
|
---|
48 | $imageName = $fileName;
|
---|
49 |
|
---|
50 | $stmt = $conn->prepare("SELECT author_image FROM author WHERE authorid = ?");
|
---|
51 | $stmt->execute([$authorId]);
|
---|
52 | $oldImage = $stmt->fetchColumn();
|
---|
53 | }
|
---|
54 |
|
---|
55 | // Build query
|
---|
56 | $query = "UPDATE author SET
|
---|
57 | firstname = :firstName,
|
---|
58 | lastname = :lastName,
|
---|
59 | nationality = :nationality,
|
---|
60 | dateofbirth = :dateOfBirth,
|
---|
61 | author_description = :authorDescription
|
---|
62 | " . ($imageName ? ", author_image = :author_image" : "") .
|
---|
63 | " WHERE authorid = :authorId";
|
---|
64 |
|
---|
65 | $params = [
|
---|
66 | ':firstName' => $firstName,
|
---|
67 | ':lastName' => $lastName,
|
---|
68 | ':nationality' => $nationality,
|
---|
69 | ':dateOfBirth' => $dateOfBirth,
|
---|
70 | ':authorDescription' => $authorDescription,
|
---|
71 | ':authorId' => $authorId
|
---|
72 | ];
|
---|
73 |
|
---|
74 | if ($imageName) {
|
---|
75 | $params[':author_image'] = $imageName;
|
---|
76 | }
|
---|
77 |
|
---|
78 | $stmt = $conn->prepare($query);
|
---|
79 | if (!$stmt->execute($params)) {
|
---|
80 | throw new Exception('Failed to update author.');
|
---|
81 | }
|
---|
82 |
|
---|
83 | if ($imageName && $oldImage) {
|
---|
84 | $oldImagePath = __DIR__ . "/../AuthorImages/" . $oldImage;
|
---|
85 | if (file_exists($oldImagePath)) {
|
---|
86 | unlink($oldImagePath);
|
---|
87 | }
|
---|
88 | }
|
---|
89 |
|
---|
90 | $conn->commit();
|
---|
91 | echo json_encode(['success' => true, 'message' => 'Author updated.']);
|
---|
92 |
|
---|
93 | } catch (Exception $e) {
|
---|
94 | $conn->rollBack();
|
---|
95 | if (isset($targetPath) && file_exists($targetPath)) {
|
---|
96 | unlink($targetPath);
|
---|
97 | }
|
---|
98 | http_response_code(400);
|
---|
99 | echo json_encode(['success' => false, 'message' => $e->getMessage()]);
|
---|
100 | }
|
---|
101 | }
|
---|
102 | ?> |
---|