-
Notifications
You must be signed in to change notification settings - Fork 0
/
market.php
183 lines (157 loc) · 6.79 KB
/
market.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
<?php
// fetch bootloader
require('bootloader.php');
// market enabled
if (!$system['market_enabled']) {
_error(404);
}
// user access
if ($user->_logged_in || !$system['system_public']) {
user_access();
}
// market
try {
// get view content
$_GET['view'] = (isset($_GET['view'])) ? $_GET['view'] : '';
switch ($_GET['view']) {
case '':
// get promoted products
$promoted_products = array();
$get_promoted = $db->query("SELECT posts.post_id FROM posts INNER JOIN posts_products ON posts.post_id = posts_products.post_id WHERE posts.post_type = 'product' AND posts_products.available = '1' AND posts.boosted = '1' ORDER BY RAND() LIMIT 3") or _error("SQL_ERROR");
while ($promoted_product = $get_promoted->fetch_assoc()) {
$promoted_product = $user->get_post($promoted_product['post_id']);
if ($promoted_product) {
$promoted_products[] = $promoted_product;
}
}
/* assign variables */
$smarty->assign('promoted_products', $promoted_products);
// prepare query
/* prepare where query */
$where_query = "";
/* prepare pager url */
$url = "";
// page header
page_header(__($system['system_title']) . ' - ' . __("Marketplace"), __($system['system_description_marketplace']));
// get market categories
$categories = $user->get_categories("market_categories");
/* assign variables */
$smarty->assign('categories', $categories);
break;
case 'search':
// check query
if (!isset($_GET['query']) || is_empty($_GET['query'])) {
redirect('/market');
}
/* assign variables */
$smarty->assign('query', $_GET['query']);
// prepare query
/* prepare where query */
$where_query = sprintf('AND (posts.text LIKE %1$s OR posts_products.name LIKE %1$s)', secure($_GET['query'], 'search'));
/* prepare pager url */
$url = "/search/" . $_GET['query'];
// page header
page_header(__($system['system_title']) . ' - ' . __("Marketplace"), __($system['system_description_marketplace']));
// get market categories
$categories = $user->get_categories("market_categories");
/* assign variables */
$smarty->assign('categories', $categories);
break;
case 'category':
// check category
$current_category = $user->get_category("market_categories", $_GET['category_id'], true);
if (!$current_category) {
_error(404);
}
/* assign variables */
$smarty->assign('current_category', $current_category);
// prepare query
/* prepare where query */
$where_query = sprintf("AND posts_products.category_id = %s", secure($current_category['category_id'], 'int'));
/* prepare pager url */
$url = "/category/" . $current_category['category_id'] . "/" . $current_category['category_url'];
// page header
page_header(__($system['system_title']) . ' - ' . __("Marketplace") . ' - ' . __($current_category['category_name']), __($current_category['category_description']));
// get market categories (only sub-categories)
if (!$current_category['sub_categories'] && !$current_category['parent']) {
$categories = $user->get_categories("market_categories");
} else {
$categories = $user->get_categories("market_categories", $current_category['category_id']);
}
/* assign variables */
$smarty->assign('categories', $categories);
break;
default:
_error(404);
break;
}
// prepare queries
$distance_clause = "";
$distance_query = "";
$order_query = "";
// prepare distance
if ($user->_logged_in && $system['location_finder_enabled'] && isset($_GET['distance']) && is_numeric($_GET['distance'])) {
/* validate distance */
$distance = $_GET['distance'];
$unit = ($system['system_distance'] == "mile") ? 3958 : 6371;
$distance = ($_GET['distance'] && is_numeric($_GET['distance']) && $_GET['distance'] > 0) ? $_GET['distance'] : 25;
$distance_clause = sprintf(", (%s * acos(cos(radians(%s)) * cos(radians(user_latitude)) * cos(radians(user_longitude) - radians(%s)) + sin(radians(%s)) * sin(radians(user_latitude))) ) AS distance ", secure($unit, 'int'), secure($user->_data['user_latitude']), secure($user->_data['user_longitude']), secure($user->_data['user_latitude']));
$distance_query .= sprintf(" HAVING distance < %s ", secure($distance, 'int'));
$order_query .= " ORDER BY distance ASC ";
}
// prepare sort
$order_query .= ($order_query) ? "," : " ORDER BY ";
switch ($_GET['sort']) {
case '':
case 'latest':
$order_query .= " posts.post_id DESC ";
break;
case 'price-high':
$order_query .= " posts_products.price DESC ";
break;
case 'price-low':
$order_query .= " posts_products.price ASC ";
break;
default:
_error(404);
break;
}
// get products
require('includes/class-pager.php');
$params['selected_page'] = ((int) $_GET['page'] == 0) ? 1 : $_GET['page'];
$total = $db->query("SELECT COUNT(*) as count " . $distance_clause . " FROM posts INNER JOIN posts_products ON posts.post_id = posts_products.post_id INNER JOIN users ON posts.user_id = users.user_id WHERE posts.post_type = 'product' AND posts_products.available = '1'" . $where_query . $distance_query . $order_query) or _error("SQL_ERROR");
$params['total_items'] = $total->fetch_assoc()['count'];
$params['items_per_page'] = $system['marketplace_results'];
$params['url'] = $system['system_url'] . '/market' . $url . '/%s';
$params['url'] .= (isset($distance)) ? "?distance=" . $distance : "";
if (isset($_GET['sort'])) {
$params['url'] .= ($distance) ? "&" : "?";
$params['url'] .= "sort=" . $_GET['sort'];
}
$pager = new Pager($params);
$limit_query = $pager->getLimitSql();
// get posts
$rows = array();
$get_rows = $db->query("SELECT posts.post_id " . $distance_clause . " FROM posts INNER JOIN posts_products ON posts.post_id = posts_products.post_id INNER JOIN users ON posts.user_id = users.user_id WHERE posts.post_type = 'product' AND posts_products.available = '1'" . $where_query . $distance_query . $order_query . $limit_query) or _error("SQL_ERROR");
while ($row = $get_rows->fetch_assoc()) {
$row = $user->get_post($row['post_id']);
if ($row) {
$rows[] = $row;
}
}
/* assign variables */
$smarty->assign('sort', $_GET['sort']);
$smarty->assign('distance', htmlentities($distance, ENT_QUOTES, 'utf-8'));
$smarty->assign('rows', $rows);
$smarty->assign('total', $params['total_items']);
$smarty->assign('pager', $pager->getPager());
$smarty->assign('view', $_GET['view']);
// get ads
$ads = $user->ads('market');
/* assign variables */
$smarty->assign('ads', $ads);
} catch (Exception $e) {
_error(__("Error"), $e->getMessage());
}
// page footer
page_footer("market");