-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathproduct.php
416 lines (336 loc) · 12 KB
/
product.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
<?php
if (!class_exists('WP_List_Table')){
require_once(ABSPATH . 'wp-admin/includes/class-wp-list-table.php');
}
function v3d_product_menu()
{
if (!current_user_can('manage_verge3d')) {
echo 'Access denied';
return;
}
add_filter('admin_footer_text', 'v3d_replace_footer');
$action = (!empty($_REQUEST['action'])) ? sanitize_text_field($_REQUEST['action']) : '';
switch ($action) {
case 'createform':
v3d_display_product(-1);
break;
case 'create':
v3d_create_product();
v3d_redirect_product_list();
break;
case 'editform':
$product_id = intval($_REQUEST['product']);
if (empty($product_id)) {
echo 'Bad request';
return;
}
v3d_display_product($product_id);
break;
case 'edit':
if ($_SERVER['REQUEST_METHOD'] == 'POST' && !empty($_REQUEST['product'])) {
$product_id = intval($_REQUEST['product']);
v3d_update_product($product_id);
v3d_redirect_product_list();
} else {
echo 'Bad request';
return;
}
break;
case 'delete':
if (!empty($_REQUEST['product'])) {
$product = $_REQUEST['product'];
// process bulk request
if (is_array($product)) {
foreach ($product as $o)
if (!empty(intval($o)))
v3d_delete_product(intval($o));
} else {
if (!empty(intval($product))) {
v3d_delete_product($product);
}
}
v3d_redirect_product_list();
} else {
echo 'Bad request';
return;
}
break;
default:
$productTable = new V3D_Product_List_Table();
$productTable->prepare_items();
?>
<div class="wrap">
<div id="icon-users" class="icon32"><br/></div>
<h1 class='wp-heading-inline'>E-Commerce Products</h1>
<a href="?page=verge3d_product&action=createform" class="page-title-action">Add New</a>
<form id="products-filter" method="get">
<!-- For plugins, we also need to ensure that the form posts back to our current page -->
<input type="hidden" name="page" value="<?php echo sanitize_text_field($_REQUEST['page']) ?>" />
<?php $productTable->display() ?>
</form>
</div>
<?php
break;
}
}
function v3d_create_product() {
$post_arr = array(
'post_title' => (!empty($_REQUEST['title'])) ?
sanitize_text_field($_REQUEST['title']) : 'My Product',
'post_status' => 'publish',
'post_type' => 'v3d_product',
'meta_input' => array(
'sku' => (!empty($_REQUEST['sku'])) ? sanitize_text_field($_REQUEST['sku']) : '',
'price' => (!empty($_REQUEST['price'])) ? sanitize_text_field($_REQUEST['price']) : 0,
'download_link' => (!empty($_REQUEST['download_link'])) ? sanitize_text_field($_REQUEST['download_link']) : '',
),
);
return wp_insert_post($post_arr);
}
function v3d_update_product($product_id) {
$post_arr = array(
'ID' => $product_id,
'post_title' => (!empty($_REQUEST['title'])) ?
sanitize_text_field($_REQUEST['title']) : 'My Product',
'post_status' => 'publish',
'post_type' => 'v3d_product',
'meta_input' => array(
'sku' => (!empty($_REQUEST['sku'])) ? sanitize_text_field($_REQUEST['sku']) : '',
'price' => (!empty($_REQUEST['price'])) ? sanitize_text_field($_REQUEST['price']) : 0,
'download_link' => (!empty($_REQUEST['download_link'])) ? sanitize_text_field($_REQUEST['download_link']) : '',
),
);
wp_update_post($post_arr);
}
function v3d_display_product($product_id) {
if ($product_id > -1) {
$title = get_the_title($product_id);
$sku = get_post_meta($product_id, 'sku', true);
$price = get_post_meta($product_id, 'price', true);
$download_link = get_post_meta($product_id, 'download_link', true);
} else {
$title = '';
$sku = '';
$price = 0;
$download_link = '';
}
include v3d_get_template('product_admin_form.php');
}
function v3d_delete_product($product_id) {
wp_delete_post($product_id);
}
function v3d_get_products() {
$args = array(
'posts_per_page' => -1,
'orderby' => 'title',
'order' => 'ASC',
'post_type' => 'v3d_product',
'post_status' => 'publish',
'suppress_filters' => true,
);
$posts = get_posts($args);
$products = array();
foreach ($posts as $p) {
$products[] = array(
'id' => $p->ID,
'title' => get_the_title($p->ID),
'sku' => get_post_meta($p->ID, 'sku', true),
'price' => get_post_meta($p->ID, 'price', true),
'download_link' => get_post_meta($p->ID, 'download_link', true),
);
}
return $products;
}
function v3d_find_product_by_sku($sku) {
$products = v3d_get_products();
foreach ($products as $p) {
if ($p['sku'] === $sku)
return $p;
}
return null;
}
class V3D_Product_List_Table extends WP_List_Table {
function __construct(){
global $status, $page;
// Set parent defaults
parent::__construct( array(
'singular' => 'product',
'plural' => 'products',
'ajax' => false
) );
}
function column_default($item, $column_name){
switch ($column_name) {
case 'sku':
case 'price':
return $item[$column_name];
default:
return print_r($item, true); // show the whole array for troubleshooting purposes
}
}
function column_title($item){
// Build row actions
$actions = array(
'edit' => sprintf('<a href="?page=%s&action=%s&product=%s">Edit</a>',
sanitize_text_field($_REQUEST['page']), 'editform', $item['ID']),
'delete' => sprintf('<a href="?page=%s&action=%s&product=%s">Delete</a>',
sanitize_text_field($_REQUEST['page']), 'delete', $item['ID']),
);
// Return the title contents
return sprintf('%1$s <span style="color:silver">(id:%2$s)</span>%3$s',
/*$1%s*/ $item['title'],
/*$2%s*/ $item['ID'],
/*$3%s*/ $this->row_actions($actions)
);
}
// bulk actions callback
function column_cb($item){
return sprintf('<input type="checkbox" name="%1$s[]" value="%2$s" />',
$this->_args['singular'], $item['ID']);
}
function get_columns(){
$columns = array(
'cb' => '<input type="checkbox" />', //Render a checkbox instead of text
'title' => 'Title',
'sku' => 'SKU',
'price' => 'Price',
);
return $columns;
}
function get_sortable_columns() {
$sortable_columns = array(
'title' => array('title', false),
'sku' => array('sku', false),
'price' => array('price', false),
);
return $sortable_columns;
}
function get_bulk_actions() {
$actions = array(
'delete' => 'Delete'
);
return $actions;
}
function process_bulk_action() {
if ('delete' === $this->current_action()) {
wp_die('Items deleted (or they would be if we had items to delete)!');
}
}
function prepare_items() {
$per_page = 15;
$columns = $this->get_columns();
$hidden = array();
$sortable = $this->get_sortable_columns();
$this->_column_headers = array($columns, $hidden, $sortable);
$this->process_bulk_action();
// if no sort, default to title
$orderby = !empty($_REQUEST['orderby']) ? sanitize_text_field($_REQUEST['orderby']) : 'title';
// if no order, default to asc
$order = !empty($_REQUEST['order']) ? sanitize_text_field($_REQUEST['order']) : 'ASC';
$args = array(
'posts_per_page' => -1,
'offset' => 0,
'category' => '',
'category_name' => '',
'orderby' => $orderby,
'order' => $order,
'include' => '',
'exclude' => '',
'meta_key' => '',
'meta_value' => '',
'post_type' => 'v3d_product',
'post_mime_type' => '',
'post_parent' => '',
'author' => '',
'author_name' => '',
'post_status' => 'publish',
'suppress_filters' => true,
'fields' => '',
);
if ($orderby == 'sku') {
$args['meta_key'] = 'sku';
$args['orderby'] = 'meta_value';
} else if ($orderby == 'price') {
$args['meta_key'] = 'price';
$args['orderby'] = 'meta_value_num';
}
$q_posts = get_posts($args);
$posts = array();
foreach ($q_posts as $q_post) {
$title = get_the_title($q_post->ID);
$sku = get_post_meta($q_post->ID, 'sku', true);
$price = get_post_meta($q_post->ID, 'price', true);
$posts[] = array(
'ID' => $q_post->ID,
'title' => !empty($title) ? $title : 'N/A',
'sku' => !empty($sku) ? $sku : 'N/A',
'price' => isset($price) ? v3d_price($price) : 'N/A',
);
}
$current_page = $this->get_pagenum();
$total_items = count($posts);
$posts = array_slice($posts, (($current_page-1)*$per_page), $per_page);
$this->items = $posts;
$this->set_pagination_args(array(
'total_items' => $total_items,
'per_page' => $per_page,
'total_pages' => ceil($total_items/$per_page)
));
}
}
function v3d_redirect_product($product_id=-1) {
$params = '?page=verge3d_product';
if ($product_id > -1) {
$params .= ('&action=edit&product='.$product_id);
}
?>
<script type="text/javascript">
document.location.href="<?php echo $params ?>";
</script>
<?php
}
function v3d_redirect_product_list() {
?>
<script type="text/javascript">
document.location.href="?page=verge3d_product";
</script>
<?php
}
function v3d_api_get_product_info(WP_REST_Request $request) {
$sku = urldecode(esc_attr($request->get_param('sku')));
if (!empty($sku)) {
$product = v3d_find_product_by_sku($sku);
if (!empty($product)) {
$product_info = array(
'status' => 'ok',
'title' => $product['title'],
'sku' => $product['sku'],
'price' => $product['price'],
'currency' => v3d_currency_symbol(),
);
$response = new WP_REST_Response($product_info);
} else
$response = new WP_REST_Response(array('error' => 'Product not found'));
} else {
$response = new WP_REST_Response(array('error' => 'Bad request'), 400);
}
if (get_option('v3d_cross_domain'))
$response->header('Access-Control-Allow-Origin', '*');
return $response;
}
add_action('rest_api_init', function () {
if (get_option('v3d_product_api')) {
register_rest_route('verge3d/v1', '/get_product_info/(?P<sku>.+)', array(
'methods' => 'GET',
'callback' => 'v3d_api_get_product_info',
'args' => array(
'sku' => array(
'validate_callback' => function($param, $request, $key) {
return is_string($param);
}
),
),
'permission_callback' => '__return_true',
));
}
});