-
Notifications
You must be signed in to change notification settings - Fork 0
/
action_admin_products.php
121 lines (107 loc) · 4.24 KB
/
action_admin_products.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<?php
$title = "مدیریت کالا (نهایی)";
include("./includes/header.php");
if ((isset($_SESSION["state_login"]) && $_SESSION["state_login"] === true && $_SESSION["user_type"] === "nonadmin") ||
!isset($_SESSION["state_login"])
) {
?>
<script>
location.replace("./restricted.php");
</script>
<?php
}
include("./includes/db_link.php");
$id = $name = $qty = $price = $image = $details = "";
if (
isset($_POST['id']) && !empty($_POST['id']) &&
isset($_POST['name']) && !empty($_POST['name']) &&
isset($_POST['qty']) && !empty($_POST['qty']) &&
isset($_POST['price']) && !empty($_POST['price']) &&
isset($_POST['details']) && !empty($_POST['details'])
) {
$id = $_POST['id'];
$name = $_POST['name'];
$qty = $_POST['qty'];
$price = $_POST['price'];
$image = basename($_FILES['image']['name']);
$details = $_POST['details'];
} else {
if (isset($_GET['action']) && $_GET['action'] == "DELETE") {
$id = $_GET['id'];
$imagefile = strval(mysqli_fetch_array(mysqli_query($link, "SELECT * FROM `products` WHERE `id`='$id'"))["image"]);
$query = "DELETE FROM `products` WHERE `id`='$id'";
if (mysqli_query($link, $query)) {
delete("products/$imagefile");
echo "<span class='done'>کالا با موفقیت حذف شد.</span>";
include("includes/index_link.php");
} else
echo "<span class='error'>خطایی در حین حذف کالا رخ داد.</span>";
exit();
} else
exit("<span class='error'>لطفا فرم را تکمیل کنید.</span>");
}
if (isset($_GET['action']) && $_GET['action'] == "EDIT") {
$id = $_GET['id'];
$query = "UPDATE `products` SET `id`='$id',
`name`='$name',
`qty`='$qty',
`price`='$price',
`details`='$details' WHERE `id`='$id'";
$request = mysqli_query($link, $query);
if ($request) {
echo "<span class='done'>کالا با موفقیت ویرایش شد.</span>";
include("includes/index_link.php");
} else
echo "<span class='error'>خطایی در حین ویرایش کالا رخ داد.</span>";
mysqli_close($link);
include("includes/footer.php");
exit();
}
$target_dir = "./products/";
$target_file = $target_dir . $_FILES["image"]["name"];
$upload_code = 1;
$image_filetype = strtolower(pathinfo($target_file, PATHINFO_EXTENSION));
// $check = getimagesize($_FILES['image']["tmp_name"]);
// if ($check !== false) {
// echo "<span class='done'>نوع فایل انتخابی {$check['mime']} است.</span><br>";
// $upload_code = 1;
// } else {
// echo "<span class='warn'>فایل انتخابی یک عکس نیست</span><br>";
// $upload_code = 0;
// }
if (file_exists($target_file)) {
echo "<span class='warn'>فایلی با همین نام در سرور وجود دارد.</span><br>";
$upload_code = 0;
}
if ($_FILES['image']['size'] > (500 * 1024)) {
echo "<span class='warn'>فایل انتخابی بیشتر از ۵۰۰ کیلوبایت است.</span><br>";
$upload_code = 0;
}
$image_filetype = strtolower($image_filetype);
if ($image_filetype !== "jpg" && $image_filetype !== "png" && $image_filetype !== "jpeg") {
echo "<span class='warn'>فقط فایل با پسوند های png و jpg و jpeg مجاز هستند.</span><br>";
$upload_code = 0;
}
if ($upload_code === 0)
echo "<span class='error'>فایل انتخاب شده به سرور ارسال نشد.</span><br>";
else {
if (move_uploaded_file($_FILES["image"]["tmp_name"], $target_file)) {
echo "<span class='done'>فایل {$_FILES['image']['name']} با موفقیت به سرور ارسال شد.</span><br>";
$upload_code = 1;
} else {
echo "<span class='error'>خطایی در ارسال فایل عکس به سرور رخ داد.</span><br>";
$upload_code = 0;
}
}
if ($upload_code === 1) {
include("./includes/db_link.php");
$query = "INSERT INTO `products`(`id`, `name`, `qty`, `price`, `image`, `details`) VALUES ('$id','$name','$qty','$price','$image','$details')";
$request = mysqli_query($link, $query);
if ($request)
echo "<span class='done'>کالا با موفقیت اضافه شد.</span><br>";
else
echo "<span class='error'>خطایی در سمت دیتابیس حین ثبت مشخصات کالا رخ داد.</span><br>";
} else
echo "<span class='error'>خطایی کلی در ثبت مشخصات کالا رخ داد.</span><br>";
mysqli_close($link);
include('./includes/footer.php');