-
Notifications
You must be signed in to change notification settings - Fork 0
/
global.php
482 lines (440 loc) · 20.1 KB
/
global.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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
<?php
// session_start();
/*
* Định nghĩa các url cần thiết được sử dụng trong website
*/
// $ROOT_URL = "/xshop";
// $CONTENT_URL = "$ROOT_URL/content";
// $ADMIN_URL = "$ROOT_URL/admin";
// $SITE_URL = "$ROOT_URL/site";
$FOLDER_VAR = "/PRO1014_DA1/main-project";
$ROOT_URL = $_SERVER['DOCUMENT_ROOT'] . "$FOLDER_VAR";
$ADMIN_URL = $ROOT_URL . "/admin";
$SITE_URL = $ROOT_URL . "/site";
$PDO_LIB = $ROOT_URL . "/pdo-library.php";
/*
* Định nghĩa đường dẫn chứa ảnh sử dụng trong upload
*/
$IMAGE_DIR = $ROOT_URL . "./uploads";
/*
* 2 biến toàn cục cần thiết để chia sẻ giữa controller và view
*/
$VIEW_NAME = "index.php";
$MESSAGE = '';
/**
* Kiểm tra sự tồn tại của một tham số trong request
* @param string $fieldname là tên tham số cần kiểm tra
* @return boolean true tồn tại
*/
function exist_param($fieldname)
{
return array_key_exists($fieldname, $_REQUEST);
}
/**
* Lưu file upload vào thư mục
* @param string $fieldname là tên trường file
* @param string $target_dir thư mục lưu file
* @return tên file upload
*/
function save_file($fieldname, $target_dir)
{
$file_uploaded = $_FILES[$fieldname];
$file_name = basename($file_uploaded["name"]);
$target_path = $target_dir . $file_name;
move_uploaded_file($file_uploaded["tmp_name"], $target_path);
return $file_name;
}
/**
* Tạo cookie
* @param string $name là tên cookie
* @param string $value là giá trị cookie
* @param int $day là số ngày tồn tại cookie
*/
function add_cookie($name, $value, $day)
{
setcookie($name, $value, time() + (86400 * $day), "/");
}
/**
* Xóa cookie
* @param string $name là tên cookie
*/
function delete_cookie($name)
{
add_cookie($name, '', -1);
}
/**
* Đọc giá trị cookie
* @param string $name là tên cookie
* @return string giá trị của cookie
*/
function get_cookie($name)
{
return $_COOKIE[$name] ?? '';
}
/**
* Kiểm tra đăng nhập và vai trò sử dụng.
* Các php trong admin hoặc php yêu cầu phải được đăng nhập mới được
* phép sử dụng thì cần thiết phải gọi hàm này trước
**/
function check_login()
{
global $SITE_URL;
if (isset($_SESSION['user'])) {
if ($_SESSION['user']['vai_tro'] == 1) {
return;
}
if (strpos($_SERVER["REQUEST_URI"], '/admin/') == false) {
return;
}
}
$_SESSION['request_uri'] = $_SERVER["REQUEST_URI"];
header("location: $SITE_URL/tai-khoan/dang-nhap.php");
}
function renderCard($productList)
{
foreach ($productList as $productItem) {
# code...
$productSelectByCate = cate_select_by_id($productItem['ma_danhmuc']);
$cateName = $productSelectByCate['ten_danhmuc'];
$newPrice = $productItem['don_gia'] * (1 - $productItem['giam_gia'] / 100);
echo '
<div class="text-center">
<div class="card position-relative" style="">
<img src="../' . $productItem['hinhanh1'] . '"
class="card-img-top" alt="...">
<div class="card-body">
<p class="card-cate fz-5">Phân loại: ' . $cateName . '</p>
<h5 class="card-title">' . $productItem['tensp'] . '</h5>
<s class="mb-3 card-old-price">' . number_format($productItem['don_gia']) . ' VND</s>
<div class="card-price mb-3">
' . number_format($newPrice) . ' VND
</div>
<a href="./index.php?act=detailproductpage&id=' . $productItem['masanpham'] . '" class="btn btn-primary">Xem chi tiết</a>
</div>
<span class="card-discount position-absolute translate-middle badge rounded-pill bg-danger p-2">
- ' . $productItem['giam_gia'] . ' %
<span class="visually-hidden">unread messages</span>
</span>
<span class="card-view position-absolute badge rounded-pill bg-dark">' . $productItem['so_luot_xem'] . ' view</span>
</div>
</div>
';
}
}
function renderCardShoppage($productList)
{
foreach ($productList as $productItem) {
# code...
$productSelectByCate = cate_select_by_id($productItem['ma_danhmuc']);
$cateName = $productSelectByCate['ten_danhmuc'];
$newPrice = $productItem['don_gia'] * (1 - $productItem['giam_gia'] / 100);
echo '
<div class="product-item col-4">
<div class="text-center">
<div class="card position-relative" style="">
<img src="../' . $productItem['hinhanh1'] . '"
class="card-img-top" alt="...">
<div class="card-body">
<p class="card-cate fz-5">Phân loại: ' . $cateName . '</p>
<h5 class="card-title">' . $productItem['tensp'] . '</h5>
<s class="mb-3 card-old-price">' . number_format($productItem['don_gia']) . ' VND</s>
<div class="card-price mb-3">
' . number_format($newPrice) . ' VND
</div>
<a href="./index.php?act=detailproductpage&id=' . $productItem['masanpham'] . '" class="btn btn-primary">Xem chi tiết</a>
</div>
<span class="card-discount position-absolute translate-middle badge rounded-pill bg-danger p-2">
- ' . $productItem['giam_gia'] . ' %
<span class="visually-hidden">unread messages</span>
</span>
<span class="card-view position-absolute badge rounded-pill bg-dark">' . $productItem['so_luot_xem'] . ' view</span>
</div>
</div>
</div>
';
}
}
function cardItem($item, $thumbnail, $addcartfunc, $addwishlistfunc, $cate_name, $price_format, $result_stars)
{
return '
<form action="./index.php?act=addtocart" method="post">
<div class="product-item position-relative">
<span class="ms-2 badge bg-secondary">' . $item['giam_gia'] . '%</span>
<span class="product-item__views position-absolute translate-middle badge rounded-pill bg-danger">
' . $item['so_luot_xem'] . ' views
<span class="visually-hidden">unread messages</span>
</span>
<div class="product-img">
<a href="index.php?act=detailproduct&id=' . $item['masanpham'] . '">
<img src="' . $thumbnail . '" alt="' . $thumbnail . '" />
</a>
</div>
<div class="product-info">
<h6 class="product-title">
<a href="index.php?act=detailproduct&id=' . $item['masanpham'] . '">' . $item['tensp'] . '</a>
</h6>
<div class="pro-rating">
' . $result_stars . '
</div>
<h3 class="pro-price"> ' . $price_format . ' VND</h3>
<ul class="action-button">
<li>
<a onclick="' . $addwishlistfunc . '" class="add-to-wishlist" href="#" title="Wishlist"><i class="zmdi zmdi-favorite"></i></a>
<input type="submit" class="add-to-wishlist__submit-input d-none" name="addtowishlistbtn" value="Thêm vào sản phẩm yêu thích">
</li>
<li>
<a class="zoom-detail-product" href="#" data-bs-toggle="modal" data-bs-target="#productModal"
title="Quickview"><i class="zmdi zmdi-zoom-in"></i></a>
</li>
<li>
<button onclick="' . $addcartfunc . '" class="add-to-cart" data-bs-toggle="modal" data-bs-target="#cartModal" type="submit" type="submit" title="Add to cart"><i
class="zmdi zmdi-shopping-cart-plus"></i></button>
<input type="submit" class="d-none add-to-cart__submit-input" name="addtocartbtn" value="Thêm vào giỏ hàng" >
</li>
</ul>
<input type="hidden" name="id" value="' . $item['masanpham'] . '"/>
<input type="hidden" name="tensp" value="' . $item['tensp'] . '"/>
<input type="hidden" name="hinh_anh" value="' . $thumbnail . '"/>
<input type="hidden" name="sl" value="1">
<input type="hidden" name="danhmuc" value="' . $cate_name . '"/>
<input type="hidden" name="iddm" value="' . $item['ma_danhmuc'] . '"/>
<input type="hidden" name="don_gia" value="' . $item['don_gia'] . '"/>
<input type="hidden" name="mo_ta" value="' . $item['mo_ta'] . '">
<input type="hidden" name="giam_gia" value="' . $item['giam_gia'] . '">
</div>
</div>
</form>
';
}
function renderStarRatings($number)
{
$result = '
<a href="#" tabindex="0"><i class="zmdi zmdi-star-outline"></i></a>
<a href="#" tabindex="0"><i class="zmdi zmdi-star-outline"></i></a>
<a href="#" tabindex="0"><i class="zmdi zmdi-star-outline"></i></a>
<a href="#" tabindex="0"><i class="zmdi zmdi-star-outline"></i></a>
<a href="#" tabindex="0"><i class="zmdi zmdi-star-outline"></i></a>
';
switch ($number) {
case 1:
$result = '<a href="#" tabindex="0"><i class="zmdi zmdi-star"></i></a>
<a href="#" tabindex="0"><i class="zmdi zmdi-star-outline"></i></a>
<a href="#" tabindex="0"><i class="zmdi zmdi-star-outline"></i></a>
<a href="#" tabindex="0"><i class="zmdi zmdi-star-outline"></i></a>
<a href="#" tabindex="0"><i class="zmdi zmdi-star-outline"></i></a>
';
break;
case 1.5:
$result = '<a href="#" tabindex="0"><i class="zmdi zmdi-star"></i></a>
<a href="#" tabindex="0"><i class="zmdi zmdi-star-half"></i></a>
<a href="#" tabindex="0"><i class="zmdi zmdi-star-outline"></i></a>
<a href="#" tabindex="0"><i class="zmdi zmdi-star-outline"></i></a>
<a href="#" tabindex="0"><i class="zmdi zmdi-star-outline"></i></a>
';
break;
case 2:
$result = '<a href="#" tabindex="0"><i class="zmdi zmdi-star"></i></a>
<a href="#" tabindex="0"><i class="zmdi zmdi-star"></i></a>
<a href="#" tabindex="0"><i class="zmdi zmdi-star-outline"></i></a>
<a href="#" tabindex="0"><i class="zmdi zmdi-star-outline"></i></a>
<a href="#" tabindex="0"><i class="zmdi zmdi-star-outline"></i></a>
';
break;
case 2.5:
$result = '<a href="#" tabindex="0"><i class="zmdi zmdi-star"></i></a>
<a href="#" tabindex="0"><i class="zmdi zmdi-star"></i></a>
<a href="#" tabindex="0"><i class="zmdi zmdi-star-half"></i></a>
<a href="#" tabindex="0"><i class="zmdi zmdi-star-outline"></i></a>
<a href="#" tabindex="0"><i class="zmdi zmdi-star-outline"></i></a>
';
break;
case 3:
$result = '<a href="#" tabindex="0"><i class="zmdi zmdi-star"></i></a>
<a href="#" tabindex="0"><i class="zmdi zmdi-star"></i></a>
<a href="#" tabindex="0"><i class="zmdi zmdi-star"></i></a>
<a href="#" tabindex="0"><i class="zmdi zmdi-star-outline"></i></a>
<a href="#" tabindex="0"><i class="zmdi zmdi-star-outline"></i></a>
';
break;
case 3.5:
$result = '<a href="#" tabindex="0"><i class="zmdi zmdi-star"></i></a>
<a href="#" tabindex="0"><i class="zmdi zmdi-star"></i></a>
<a href="#" tabindex="0"><i class="zmdi zmdi-star"></i></a>
<a href="#" tabindex="0"><i class="zmdi zmdi-star-half"></i></a>
<a href="#" tabindex="0"><i class="zmdi zmdi-star-outline"></i></a>
';
break;
case 4:
$result = '<a href="#" tabindex="0"><i class="zmdi zmdi-star"></i></a>
<a href="#" tabindex="0"><i class="zmdi zmdi-star"></i></a>
<a href="#" tabindex="0"><i class="zmdi zmdi-star"></i></a>
<a href="#" tabindex="0"><i class="zmdi zmdi-star"></i></a>
<a href="#" tabindex="0"><i class="zmdi zmdi-star-outline"></i></a>
';
break;
case 4.5:
$result = '<a href="#" tabindex="0"><i class="zmdi zmdi-star"></i></a>
<a href="#" tabindex="0"><i class="zmdi zmdi-star"></i></a>
<a href="#" tabindex="0"><i class="zmdi zmdi-star"></i></a>
<a href="#" tabindex="0"><i class="zmdi zmdi-star"></i></a>
<a href="#" tabindex="0"><i class="zmdi zmdi-star-half"></i></a>
';
break;
case 5:
$result = '<a href="#" tabindex="0"><i class="zmdi zmdi-star"></i></a>
<a href="#" tabindex="0"><i class="zmdi zmdi-star"></i></a>
<a href="#" tabindex="0"><i class="zmdi zmdi-star"></i></a>
<a href="#" tabindex="0"><i class="zmdi zmdi-star"></i></a>
<a href="#" tabindex="0"><i class="zmdi zmdi-star"></i></a>
';
break;
default:
}
return $result;
}
function validating($phone)
{
if (preg_match('/^[0-9]{10}+$/', $phone)) {
return true;
} else {
return false;
}
}
function is_email($str)
{
return (!preg_match("/^([a-z0-9\+_\-]+)(\.[a-z0-9\+_\-]+)*@([a-z0-9\-]+\.)+[a-z]{2,6}$/ix", $str)) ? false : true;
}
function validateUploadImage($fileName)
{
// $check = getimagesize($_FILES["$fileName"]["tmp_name"]);
// if ($check !== false) {
// echo "File is an image - " . $check["mime"] . ".";
// $uploadOk = 1;
// } else {
// echo "File is not an image.";
// $uploadOk = 0;
// }
// // Check if file already exists
// if (file_exists($target_file)) {
// echo "Sorry, file already exists.";
// $uploadOk = 0;
// }
// // Check file size
// if ($_FILES["$fileName"]["size"] > 500000) {
// echo "Sorry, your file is too large.";
// $uploadOk = 0;
// }
// // Allow certain file formats
// if ($imageFileType != "jpg" && $imageFileType != "png" && $imageFileType != "jpeg"
// && $imageFileType != "gif") {
// echo "Sorry, only JPG, JPEG, PNG & GIF files are allowed.";
// $uploadOk = 0;
// }
// // Check if $uploadOk is set to 0 by an error
// if ($uploadOk == 0) {
// echo "Sorry, your file was not uploaded.";
// // if everything is ok, try to upload file
// } else {
// if (move_uploaded_file($_FILES["$fileName"]["tmp_name"], $target_file)) {
// echo "The file " . htmlspecialchars(basename($_FILES["$fileName"]["name"])) . " has been uploaded.";
// } else {
// echo "Sorry, there was an error uploading your file.";
// }
// }
}
// include "./site/model/connectdb.php";
function createDataWithPagination($conn, $sql, $_limit)
{
// BƯỚC 2: TÌM TỔNG SỐ RECORDS
$stmt = $conn->prepare($sql);
$stmt->execute();
// set the resulting array to associative
$result = $stmt->setFetchMode(PDO::FETCH_ASSOC);
$finalresult = $stmt->fetchAll();
$total_records = count($finalresult);
// BƯỚC 3: TÌM LIMIT VÀ CURRENT_PAGE
$current_page = isset($_GET['page']) ? $_GET['page'] : 1;
$limit = $_limit;
// BƯỚC 4: TÍNH TOÁN TOTAL_PAGE VÀ START
// tổng số trang
$total_page = ceil($total_records / $limit);
// Giới hạn current_page trong khoảng 1 đến total_page
if ($current_page > $total_page) {
$current_page = $total_page;
} else if ($current_page < 1) {
$current_page = 1;
}
// Tìm Start
$start = ($current_page - 1) * $limit;
if ($start < 0) {
$start = 0;
}
// BƯỚC 5: TRUY VẤN LẤY DANH SÁCH SẢN PHẨM
// Có limit và start rồi thì truy vấn CSDL lấy danh sách SẢN PHẨM
$stmt = $conn->prepare("$sql LIMIT $start, $limit");
$stmt->execute();
$datalist = $stmt->fetchAll();
$pagination = ['datalist' => $datalist, 'totalpage' => $total_page, 'start' => $start, 'current_page' => $current_page, 'total_records' => $total_records];
return $pagination;
}
function showStatus($num)
{
$trangthai = '';
$statusMess = '';
switch ($num) {
case 1:
$trangthai = 'Chờ xác nhận';
$statusMess = 'Đơn hàng đã được đặt, Đang chờ xác nhận!';
break;
case 2:
$trangthai = 'Đã xác nhận';
$statusMess = 'Đơn hàng đã được xác nhận, Đang chờ giao cho khâu vận chuyển!';
break;
case 3:
$trangthai = 'Đang giao hàng';
$statusMess = 'Đơn hàng đang được vận chuyển đến cho bạn!';
break;
case 4:
$trangthai = 'Giao hàng thành công';
$statusMess = 'Đơn hàng đã được giao thành công';
break;
case 5:
$trangthai = 'Giao hàng thất bại';
$statusMess = 'Đơn hàng đã giao hàng thất bại! Do thời tiết hoặc lỗi do khách hàng không nhận hàng';
break;
case 6:
$trangthai = 'Đơn hàng đã bị hủy';
$statusMess = 'Đơn hàng đã hủy!';
break;
default:
}
return [$trangthai, $statusMess];
}
function showPayment($num)
{
$trangthai = '';
$statusMess = '';
switch ($num) {
case '0':
# code...
$trangthai = "Chưa thanh toán";
break;
case '1':
$trangthai = "Đã thanh toán";
break;
default:
# code...
break;
}
return $trangthai;
}
function getthumbnail($image_list)
{
foreach ($image_list as $image_item) {
if (substr($image_item, 0, 6) == "thumb-") {
// echo $image_item;
$thumbnail = "../uploads/" . $image_item;
return $thumbnail;
}
}
}