-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtrading.php
230 lines (207 loc) · 8.58 KB
/
trading.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
<?php
$selected = "home";
include("./includes/header.php");
$lot_name_error = "";
$sell_id_error = "";
$sell_amount_error = "";
$want_id_error = "";
$want_amount_error = "";
$auction_ends_error = "";
$can_sell_error = "";
$can_buy_error = "";
if($loggedin){
if(isset($_POST['buyItem'])){
$lot_id = mysql_real_escape_string($_POST['lot_id']);
$sale_id = mysql_real_escape_string($_POST['sale_id']);
$sale_name = Item::GetItemNameFromID($sale_id);
$sale_amount = mysql_real_escape_string($_POST['sale_amount']);
$want_id = mysql_real_escape_string($_POST['want_id']);
$want_name = Item::GetItemNameFromID($want_id);
$want_amount = mysql_real_escape_string($_POST['want_amount']);
$seller_id = mysql_real_escape_string($_POST['seller_id']);
$can_buy_error = $user->buyItem($lot_id, $sale_id, $sale_name, $sale_amount, $want_id, $want_name, $want_amount, $seller_id);
}
if(isset($_POST['buySquffy'])){
$lot_id = mysql_real_escape_string($_POST['lot_id']);
$squffy_id = mysql_real_escape_string($_POST['squffy_id']);
$want_id = mysql_real_escape_string($_POST['want_id']);
$want_name = Item::GetItemNameFromID($want_id);
$want_amount = mysql_real_escape_string($_POST['want_amount']);
$seller_id = mysql_real_escape_string($_POST['seller_id']);
$can_buy_error = $user->buySquffy($lot_id, $squffy_id, $want_id, $want_name, $want_amount, $seller_id);
}
$lot_name = "";
$sell_id = "";
$sell_amount = "";
$want_id = "";
$want_amount = "";
$auction_ends = "";
$buy_id = "";
$buy_amount = "";
if(isset($_POST['newLot'])){
$lot_name = mysql_real_escape_string($_POST['lot_name']);
$sell_id = mysql_real_escape_string($_POST['sell_id']);
$sell_amount = mysql_real_escape_string($_POST['sell_amount']);
$want_id = mysql_real_escape_string($_POST['want_id']);
$want_amount = mysql_real_escape_string($_POST['want_amount']);
$auction_ends = mysql_real_escape_string($_POST['auction_ends']);
$lot_type = mysql_real_escape_string($_POST['lot_type']);
$canCreateLot = true;
if($lot_name == ""){
$canCreateLot = false;
$lot_name_error = "Can't use empty string for lot name.";
}
$want_name = Item::GetItemNameFromID($want_id);
if($want_name == NULL){
$canCreateLot = false;
$want_id_error = "Invalid ID for the Item you want";
}
if($want_amount <= 0){
$canCreateLot = false;
$want_amount_error = "Invalid Amount";
}
if($auction_ends != ""){
$token = strtok($auction_ends, "/");
$auction_format = array(); //0 => month, 1 => day, 2 => year
while ($token != false){
array_push($auction_format, $token);
$token = strtok("/");
}
if((count($auction_format) != 3) || !(checkdate($auction_format[0], $auction_format[1], $auction_format[2]))){
$canCreateLot = false;
$auction_ends_error = "Wrong date format.";
}
}else{
$canCreateLot = false;
$auction_ends_error = "Empty String invalid";
}
if(isset($_POST['selling_squffy'])){
$squffy_id = $sell_id;
if($user->canSellSquffy($squffy_id)){//confirm squffy is owned by user
Lot::CreateSellSquffyLot($lot_name, $userid, $squffy_id, $sell_amount, $want_id, $want_amount, $lot_type, $auction_ends);//create lot
}else{
$can_sell_error = "Invalid Squffy Id.";
}
}else{
$sell_name = Item::GetItemNameFromID($sell_id);
if($sell_name == NULL){
$canCreateLot = false;
$sell_id_error = "Invalid ID for the Item you're selling";
}
if($sell_amount <= 0){
$canCreateLot = false;
$sell_amount_error = "Invalid Amount";
}
if($canCreateLot){
if($user->canSellItem($sell_id, $sell_name, $sell_amount)){
Lot::CreateSellItemLot($lot_name, $userid, $sell_id, $sell_amount, $want_id, $want_amount, $lot_type, $auction_ends);
}else{
$can_sell_error = "Can't Sell Lot. Not enough of sale item.";
}
}
}
if($canCreateLot){
$lot_name = "";
$sell_id = "";
$sell_amount = "";
$want_id = "";
$want_amount = "";
$auction_ends = "";
$buy_id = "";
$buy_amount = "";
}
}
$user_lots = Lot::GetUserLots($userid);
$other_lots = Lot::GetOtherLots($userid);
?>
<div class='text-center width100p'><h1>Marketplace</h1></div>
<p><?php echo $can_buy_error; ?></p>
<h2>Your Market Stall</h2>
<table>
<tr>
<th>Lot ID</th>
<th>Lot Name</th>
<th>Item For Sale</th>
<th>Selling Price</th>
<th>Finished</th>
</tr>
<?php
for($i = 0; $i < count($user_lots); $i++){ ?>
<tr>
<td><?php echo $user_lots[$i]->getID(); ?> </td>
<td><?php echo $user_lots[$i]->getName(); ?> </td>
<?php if($user_lots[$i]->isSellingSquffy()){ ?>
<td><?php echo $user_lots[$i]->getSaleAmount()." Squffy" ?></td>
<?php }else{ ?>
<td><?php echo $user_lots[$i]->getSaleAmount()." ".Item::getItemNameFromID($user_lots[$i]->getSaleItemID()) ?></td>
<?php } ?>
<td><?php echo $user_lots[$i]->getWantedItemAmount()." ".Item::getItemNameFromID($user_lots[$i]->getWantedItemId())."(s)"; ?></td>
<td><?php echo $user_lots[$i]->isFinished(); ?></td>
</tr>
<?php } ?>
</table>
<h2>Other Market Stalls</h2>
<table>
<tr>
<th class="content-header">Lot ID</th>
<th class="content-header">User Id</th>
<th class="content-header">Lot Name</th>
<th class="content-header">Item For Sale</th>
<th class="content-header">Selling Price</th>
</tr>
<?php
for($i = 0; $i < count($other_lots); $i++){ ?>
<tr>
<td><?php echo $other_lots[$i]->getID(); ?> </td>
<td><?php echo $other_lots[$i]->getUserID(); ?> </td>
<td><?php echo $other_lots[$i]->getName(); ?></td>
<?php if($other_lots[$i]->isSellingSquffy()){ ?>
<td>Squffy</td>
<?php }else{ ?>
<td><?php echo $other_lots[$i]->getSaleAmount()." ".Item::getItemNameFromID($other_lots[$i]->getSaleItemID()) ?></td>
<?php } ?>
<td><?php echo $other_lots[$i]->getWantedItemAmount()." ".Item::getItemNameFromID($other_lots[$i]->getWantedItemId())."(s)"; ?></td>
<td>
<?php if($other_lots[$i]->isSellingSquffy()){ ?>
<form action="" method="post">
<input type="submit" class="submit-input" value="Buy!" name="buySquffy" />
<input type="hidden" value="<?php echo $other_lots[$i]->GetID(); ?>" name="lot_id" />
<input type="hidden" value="<?php echo $other_lots[$i]->GetSquffyID(); ?>" name="squffy_id" />
<input type="hidden" value="<?php echo $other_lots[$i]->GetWantedItemID(); ?>" name="want_id" />
<input type="hidden" value="<?php echo $other_lots[$i]->GetWantedItemAmount(); ?>" name="want_amount" />
<input type="hidden" value="<?php echo $other_lots[$i]->GetUserID(); ?>" name="seller_id" />
</form>
<?php }else{ ?>
<form action="" method="post">
<input type="submit" class="submit-input" value="Buy!" name="buyItem" />
<input type="hidden" value="<?php echo $other_lots[$i]->GetID(); ?>" name="lot_id" />
<input type="hidden" value="<?php echo $other_lots[$i]->GetSaleItemID(); ?>" name="sale_id" />
<input type="hidden" value="<?php echo $other_lots[$i]->GetSaleAmount(); ?>" name="sale_amount" />
<input type="hidden" value="<?php echo $other_lots[$i]->GetWantedItemID(); ?>" name="want_id" />
<input type="hidden" value="<?php echo $other_lots[$i]->GetWantedItemAmount(); ?>" name="want_amount" />
<input type="hidden" value="<?php echo $other_lots[$i]->GetUserID(); ?>" name="seller_id" />
</form>
<?php } ?>
</td>
</tr>
<?php } ?>
</table>
<br><h2> Create Lot </h2></br>
<p><?php echo $can_sell_error; ?></p>
<form action="" method="post">
<br><label>Lot Name: </label><input type="text" name="lot_name" value="<?php echo $lot_name; ?>"/> <?php echo $lot_name_error; ?></br>
<br><input type="checkbox" name="selling_squffy" value="true"/> selling squffy</br>
<br><label>ID of Squffy or Item you're selling: </label><input type="text" name="sell_id" value="<?php echo $sell_id; ?>"/><?php echo $sell_id_error; ?></br>
<br><label>How many you're selling: </label><input type="text" name="sell_amount" value="<?php echo $sell_amount; ?>"/><?php echo $sell_amount_error; ?></br>
<br><label>What item you want for it: </label><input type="text" name="want_id" value="<?php echo $want_id; ?>"/><?php echo $want_id_error; ?></br>
<br><label>How many units of that item you want: </label><input type="text" name="want_amount" value="<?php echo $want_amount; ?>"/> <?php echo $want_amount_error; ?></br>
<br><label>Lot Type:</label></br><br><input type="radio" name="lot_type" value="sale" checked="true" /> Sale</br>
<!-- <br><input type="radio" name="lot_type" value="trade"/> Trade</br>
<br><input type="radio" name="lot_type" value="auction"/> Auction</br> -->
<br><label>Sale Ends: </label><input type="text" name="auction_ends" value="<?php echo $auction_ends; ?>"/> Please enter in mm/dd/yyyy format <?php echo $auction_ends_error; ?></br>
<br><input type="submit" name="newLot" value="Create Lot"/></br>
</form>
<?php
}
include('./includes/footer.php');
?>