forked from renlok/WeBid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
yourauctions_sold.php
227 lines (203 loc) · 7.66 KB
/
yourauctions_sold.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
<?php
/***************************************************************************
* copyright : (C) 2008 - 2013 WeBid
* site : http://www.webidsupport.com/
***************************************************************************/
/***************************************************************************
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version. Although none of the code may be
* sold. If you have been sold this script, get a refund.
***************************************************************************/
include 'common.php';
// If user is not logged in redirect to login page
if (!$user->is_logged_in())
{
$_SESSION['REDIRECT_AFTER_LOGIN'] = 'yourauctions_sold.php';
header('location: user_login.php');
exit;
}
$NOW = time();
$NOWB = gmdate('Ymd');
// Update
if (isset($_POST['action']) && $_POST['action'] == 'update')
{
// Re-list auctions
if (is_array($_POST['relist']))
{
foreach ($_POST['relist'] as $k)
{
$k = intval($k);
$query = "SELECT duration, category FROM " . $DBPrefix . "auctions WHERE id = " . $k;
$res = mysql_query($query);
$system->check_mysql($res, $query, __LINE__, __FILE__);
$AUCTION = mysql_fetch_assoc($res);
// auction ends
$WILLEND = time() + ($AUCTION['duration'] * 24 * 60 * 60);
$suspend = 0;
if ($system->SETTINGS['fees'] == 'y')
{
if ($system->SETTINGS['fee_type'] == 1)
{
// charge relist fee
$query = "UPDATE " . $DBPrefix . "users SET balance = balance - " . $relist_fee . " WHERE id = " . $user->user_data['id'];
$system->check_mysql(mysql_query($query), $query, __LINE__, __FILE__);
}
else
{
$suspend = 8;
}
}
$query = "UPDATE " . $DBPrefix . "auctions
SET starts = '" . $NOW . "',
ends = '" . $WILLEND . "',
closed = 0,
num_bids = 0,
relisted = relisted + 1,
current_bid = 0,
sold = 'n',
suspended = " . $suspend . "
WHERE id = " . $k;
$system->check_mysql(mysql_query($query), $query, __LINE__, __FILE__);
// Insert into relisted table
$query = "INSERT INTO " . $DBPrefix . "closedrelisted VALUES (" . $k . ", '" . $NOWB . "', '" . $k . "')";
$system->check_mysql(mysql_query($query), $query, __LINE__, __FILE__);
// delete bids
$query = "DELETE FROM " . $DBPrefix . "bids WHERE auction = " . $k;
$system->check_mysql(mysql_query($query), $query, __LINE__, __FILE__);
// Proxy Bids
$query = "DELETE FROM " . $DBPrefix . "proxybid WHERE itemid = " . $k;
$system->check_mysql(mysql_query($query), $query, __LINE__, __FILE__);
// Winners: only in case of reserve not reached
$query = "DELETE FROM " . $DBPrefix . "winners WHERE auction = " . $k;
$system->check_mysql(mysql_query($query), $query, __LINE__, __FILE__);
// Update COUNTERS table
$query = "UPDATE " . $DBPrefix . "counters SET auctions = auctions + 1";
$system->check_mysql(mysql_query($query), $query, __LINE__, __FILE__);
$query = "SELECT left_id, right_id, level FROM " . $DBPrefix . "categories WHERE cat_id = " . $AUCTION['category'];
$res = mysql_query($query);
$system->check_mysql($res, $query, __LINE__, __FILE__);
$parent_node = mysql_fetch_assoc($res);
$crumbs = $catscontrol->get_bread_crumbs($parent_node['left_id'], $parent_node['right_id']);
// update recursive categories
for ($i = 0; $i < count($crumbs); $i++)
{
$query = "UPDATE " . $DBPrefix . "categories SET sub_counter = sub_counter + 1 WHERE cat_id = " . $crumbs[$i]['cat_id'];
$system->check_mysql(mysql_query($query), $query, __LINE__, __FILE__);
}
if ($system->SETTINGS['fee_type'] == 2 && isset($relist_fee) && $relist_fee > 0)
{
header('location: pay.php?a=5');
exit;
}
}
}
}
// Retrieve closed auction data from the database
$query = "SELECT a.* FROM " . $DBPrefix . "auctions a, " . $DBPrefix . "winners w
WHERE a.user = " . $user->user_data['id'] . " AND a.closed = 1 AND a.suspended = 0 AND a.id = w.auction GROUP BY w.auction";
$res = mysql_query($query);
$system->check_mysql($res, $query, __LINE__, __FILE__);
$TOTALAUCTIONS = mysql_num_rows($res);
if (!isset($_GET['PAGE']) || $_GET['PAGE'] < 0 || empty($_GET['PAGE']))
{
$OFFSET = 0;
$PAGE = 1;
}
else
{
$PAGE = intval($_GET['PAGE']);
$OFFSET = ($PAGE - 1) * $system->SETTINGS['perpage'];
}
$PAGES = ($TOTALAUCTIONS == 0) ? 1 : ceil($TOTALAUCTIONS / $system->SETTINGS['perpage']);
// Handle columns sorting variables
if (!isset($_SESSION['solda_ord']) && empty($_GET['solda_ord']))
{
$_SESSION['solda_ord'] = 'title';
$_SESSION['solda_type'] = 'asc';
}
elseif (!empty($_GET['solda_ord']))
{
$_SESSION['solda_ord'] = mysql_escape_string($_GET['solda_ord']);
$_SESSION['solda_type'] = mysql_escape_string($_GET['solda_type']);
}
elseif (isset($_SESSION['solda_ord']) && empty($_GET['solda_ord']))
{
$_SESSION['solda_nexttype'] = $_SESSION['solda_type'];
}
if (!isset($_SESSION['solda_nexttype']) || $_SESSION['solda_nexttype'] == 'desc')
{
$_SESSION['solda_nexttype'] = 'asc';
}
else
{
$_SESSION['solda_nexttype'] = 'desc';
}
if (!isset($_SESSION['solda_type']) || $_SESSION['solda_type'] == 'desc')
{
$_SESSION['solda_type_img'] = '<img src="images/arrow_up.gif" align="center" hspace="2" border="0" alt="up"/>';
}
else
{
$_SESSION['solda_type_img'] = '<img src="images/arrow_down.gif" align="center" hspace="2" border="0" alt="down"/>';
}
$query = "SELECT a.* FROM " . $DBPrefix . "auctions a, " . $DBPrefix . "winners w
WHERE a.user = " . $user->user_data['id'] . "
AND a.closed = 1
AND a.suspended = 0
AND a.id = w.auction
GROUP BY w.auction
ORDER BY " . $_SESSION['solda_ord'] . " " . $_SESSION['solda_type'] . " LIMIT " . $OFFSET . "," . $system->SETTINGS['perpage'];
$res = mysql_query($query);
$system->check_mysql($res, $query, __LINE__, __FILE__);
$i = 0;
while ($item = mysql_fetch_assoc($res))
{
$template->assign_block_vars('items', array(
'BGCOLOUR' => (!($i % 2)) ? '' : 'class="alt-row"',
'ID' => $item['id'],
'TITLE' => $item['title'],
'STARTS' => FormatDate($item['starts']),
'ENDS' => FormatDate($item['ends']),
'BID' => ($item['current_bid'] == 0) ? '-' : $system->print_money($item['current_bid']),
'BIDS' => $item['num_bids'],
'B_CLOSED' => ($item['closed'] == 1),
'B_HASNOBIDS' => ($item['current_bid'] == 0)
));
$i++;
}
// get pagenation
$PREV = intval($PAGE - 1);
$NEXT = intval($PAGE + 1);
if ($PAGES > 1)
{
$LOW = $PAGE - 5;
if ($LOW <= 0) $LOW = 1;
$COUNTER = $LOW;
while ($COUNTER <= $PAGES && $COUNTER < ($PAGE + 6))
{
$template->assign_block_vars('pages', array(
'PAGE' => ($PAGE == $COUNTER) ? '<b>' . $COUNTER . '</b>' : '<a href="' . $system->SETTINGS['siteurl'] . 'yourauctions_sold.php?PAGE=' . $COUNTER . '&id=' . $id . '"><u>' . $COUNTER . '</u></a>'
));
$COUNTER++;
}
}
$template->assign_vars(array(
'ORDERCOL' => $_SESSION['solda_ord'],
'ORDERNEXT' => $_SESSION['solda_nexttype'],
'ORDERTYPEIMG' => $_SESSION['solda_type_img'],
'PREV' => ($PAGES > 1 && $PAGE > 1) ? '<a href="' . $system->SETTINGS['siteurl'] . 'yourauctions_sold.php?PAGE=' . $PREV . '&id=' . $id . '"><u>' . $MSG['5119'] . '</u></a> ' : '',
'NEXT' => ($PAGE < $PAGES) ? '<a href="' . $system->SETTINGS['siteurl'] . 'yourauctions_sold.php?PAGE=' . $NEXT . '&id=' . $id . '"><u>' . $MSG['5120'] . '</u></a>' : '',
'PAGE' => $PAGE,
'PAGES' => $PAGES
));
include 'header.php';
$TMP_usmenutitle = $MSG['25_0119'];
include $include_path . 'user_cp.php';
$template->set_filenames(array(
'body' => 'yourauctions_sold.tpl'
));
$template->display('body');
include 'footer.php';
?>