-
Notifications
You must be signed in to change notification settings - Fork 4
/
auctioninfo.c
550 lines (512 loc) · 14 KB
/
auctioninfo.c
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
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
/*
* Copyright (c) 2002, 2003, Scott Nicol <[email protected]>
* All rights reserved
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* - Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* - Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
* TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "auctioninfo.h"
#include "esniper.h"
#include "auction.h"
#include "util.h"
#include <stdlib.h>
#include <string.h>
#if defined(WIN32)
# define sleep(t) _sleep((t) * 1000)
#else
# include <unistd.h>
#endif
static double *getIncrements(const auctionInfo *aip);
/*
* Bidding increments
*
* first number is threshold for next increment range, second is increment.
* For example, 1.00, 0.05 means that under $1.00 the increment is $0.05.
*
* Increments obtained from:
* http://pages.ebay.com/help/buy/bid-increments.html
* (and similar pages on international sites)
*/
/*
* Auction items not available from ebay.com:
*
* Argentina: http://www.mercadolibre.com.ar/
* Brazil: http://www.mercadolivre.com.br/
* India: http://www.baazee.com/ (seller can set increments)
* Korea: http://www.auction.co.kr/
* Mexico: http://www.mercadolibre.com.mx/
*/
/*
* Australia: http://pages.ebay.com.au/help/buy/bid-increments.html
* AU
*/
static double AUIncrements[] = {
1.00, 0.05,
5.00, 0.25,
25.00, 0.50,
100.00, 1.00,
250.00, 2.50,
500.00, 5.00,
1000.00, 10.00,
2500.00, 25.00,
5000.00, 50.00,
-1.00, 100.00
};
/*
* Austria: http://pages.ebay.at/help/buy/bid-increments.html
* Belgium: http://pages.befr.ebay.be/help/buy/bid-increments.html
* France: http://pages.ebay.fr/help/buy/bid-increments.html
* Germany: http://pages.ebay.de/help/buy/bid-increments.html
* Italy: http://pages.ebay.it/help/buy/bid-increments.html
* Netherlands: http://pages.ebay.nl/help/buy/bid-increments.html
* Spain: http://pages.es.ebay.com/help/buy/bid-increments.html
* EUR
*/
static double EURIncrements[] = {
50.00, 0.50,
500.00, 1.00,
1000.00, 5.00,
5000.00, 10.00,
-1.00, 50.00
};
/*
* Canada: http://pages.ebay.ca/help/buy/bid-increments.html
* C
*/
static double CADIncrements[] = {
1.00, 0.05,
5.00, 0.25,
25.00, 0.50,
100.00, 1.00,
-1.00, 2.50
};
/*
* China: http://pages.ebay.com.cn/help/buy/bid-increments.html
* RMB
*/
static double RMBIncrements[] = {
1.01, 0.05,
5.01, 0.20,
15.01, 0.50,
60.01, 1.00,
150.01, 2.00,
300.01, 5.00,
600.01, 10.00,
1500.01, 20.00,
3000.01, 50.00,
-1.00, 100.00
};
/*
* Hong Kong: http://www.ebay.com.hk/
* HKD
*
* Note: Cannot find bid-increments page. Will use 0.01 to be safe.
*/
static double HKDIncrements[] = {
-1.00, 0.01
};
/*
* Singapore: http://www.ebay.com.sg/
* SGD
*
* Note: Cannot find bid-increments page. Will use 0.01 to be safe.
* From looking at auctions, it appears to be similar to US
* increments.
*/
static double SGDIncrements[] = {
-1.00, 0.01
};
/*
* Switzerland: http://pages.ebay.ch/help/buy/bid-increments.html
* CHF
*/
static double CHFIncrements[] = {
50.00, 0.50,
500.00, 1.00,
1000.00, 5.00,
5000.00, 10.00,
-1.00, 50.00
};
/*
* Taiwan: http://pages.tw.ebay.com/help/buy/bid-increments.html
* NT
*/
static double NTIncrements[] = {
501.00, 15.00,
2501.00, 30.00,
5001.00, 50.00,
25001.00, 100.00,
-1.00, 200.00
};
/*
* Ireland: http://pages.ebay.co.uk/help/buy/bid-increments.html
* Sweden: http://pages.ebay.co.uk/help/buy/bid-increments.html
* UK: http://pages.ebay.co.uk/help/buy/bid-increments.html
* Note: Sweden & Ireland use GBP or EUR. English help pages redirect
* to UK site.
* GBP
*/
static double GBPIncrements[] = {
1.01, 0.05,
5.01, 0.20,
15.01, 0.50,
60.01, 1.00,
150.01, 2.00,
300.01, 5.00,
600.01, 10.00,
1500.01, 20.00,
3000.01, 50.00,
-1.00, 100.00
};
/*
* New Zealand: http://pages.ebay.com/help/buy/bid-increments.html
* US: http://pages.ebay.com/help/buy/bid-increments.html
* Note: New Zealand site uses US or NT.
* US
*/
static double USIncrements[] = {
1.00, 0.05,
5.00, 0.25,
25.00, 0.50,
100.00, 1.00,
250.00, 2.50,
500.00, 5.00,
1000.00, 10.00,
2500.00, 25.00,
5000.00, 50.00,
-1.00, 100.00
};
/*
* Unknown currency. Increment 0.01, just to be on the safe side.
*/
static double defaultIncrements[] = {
-1.00, 0.01
};
static const char *auctionErrorString[] = {
"",
"Auction %s: Unknown item\n",
"Auction %s: Title not found\n",
"Auction %s: Current price not found\n",
"Auction %s: Cannot convert price \"%s\"\n",
"Auction %s: Quantity not found\n",
"Auction %s: Time remaining not found\n",
"Auction %s: Unknown time interval \"%s\"\n",
"Auction %s: High bidder not found\n",
"Auction %s: Cannot connect to URL %s\n",
"Auction %s: Bid price less than minimum bid price\n",
"Auction %s: Bid uiid not found\n",
"Auction %s: Bad username or password\n",
"Auction %s: You have been outbid\n",
"Auction %s: Reserve not met\n",
"Auction %s: Auction has ended\n",
"Auction %s: Duplicate auction\n",
"Auction %s: Too many errors, quitting\n",
"Auction %s: eBay temporarily unavailable\n",
"Auction %s: Login failed\n",
"Auction %s: Seller has blocked your userid\n",
"Auction %s: Seller does not ship to your location\n",
"Auction %s: Seller requires buyer to have paypal account\n",
"Auction %s: Bid amount must be higher than the proxy you already placed\n",
"Auction %s: Must sign in\n",
"Auction %s: Cannot bid on item (fixed price item?)\n",
"Auction %s: Dutch auction bid must have higher price or quantity than prior bid\n",
"Auction %s: Login failed due to captcha. Please see\nhttp://esniper.sf.net/captcha.html for more details\n",
"Auction %s: Cancelled\n", /* Seller cancel only? */
"Auction %s: Do not use esniper and eBay's bid assisant together!\n",
"Auction %s: You are currently winning or have bought the maximum-allowed number of this seller's items in the last 10 days.\n",
"Auction %s: Your maximum bid is above or equal to the Buy It Now price. Your bid must be lower.\n",
"Auction %s: An alert message was displayed. Your bid was not accepted.\n",
"Auction %s: Seller has set some requirements. You cannot bid on this article.\n",
"Auction %s: Login failed. eBay requires some manual action on login.\n",
/* ae_unknown must be last error */
"Auction %s: Unknown error code %d\n",
};
auctionInfo *
newAuctionInfo(const char *auction, const char *bidPriceStr)
{
auctionInfo *aip = (auctionInfo *)myMalloc(sizeof(auctionInfo));
aip->auction = myStrdup(auction);
aip->title = NULL;
aip->bidPriceStr = priceFixup(myStrdup(bidPriceStr), NULL);
aip->bidPrice = aip->bidPriceStr ? atof(aip->bidPriceStr) : -1;
aip->remain = 0;
aip->remainRaw = NULL;
aip->endTime = 0;
aip->latency = 0;
aip->query = NULL;
aip->biduiid = NULL;
aip->bidstok = NULL;
aip->bidsrt = NULL;
aip->quantity = 0;
aip->quantityBid = 0;
aip->bids = 0;
aip->price = 0;
aip->shipping = NULL;
aip->currency = NULL;
aip->bidResult = -1;
aip->reserve = 0;
aip->won = -1;
aip->winning = 0;
aip->auctionError = ae_none;
aip->auctionErrorDetail = NULL;
return aip;
}
void
freeAuction(auctionInfo *aip)
{
if (!aip)
return;
free(aip->auction);
free(aip->title);
free(aip->bidPriceStr);
free(aip->remainRaw);
free(aip->query);
free(aip->biduiid);
free(aip->shipping);
free(aip->currency);
free(aip->auctionErrorDetail);
free(aip);
}
/*
* compareAuctionInfo(): used to sort auctionInfo table
*
* returns (-1, 0, 1) if time remaining in p1 is (less than, equal to, greater
* than) p2
*/
int
compareAuctionInfo(const void *p1, const void *p2)
{
const auctionInfo * a1, * a2;
a1 = *((const auctionInfo * const *)p1);
a2 = *((const auctionInfo * const *)p2);
/* if end time is the same we compare the current price
* and use the lower price first
*/
if (a1->endTime == a2->endTime)
/* comparison function must return an integer so we
* convert the price to cent or whatever it's called
*/
return (int)((a1->price * 100.0) - (a2->price * 100.0));
if (a1->endTime < a2->endTime) {
return -1;
}
return 1;
}
/*
* printAuctionError()
*/
void
printAuctionError(auctionInfo *aip, FILE *fp)
{
enum auctionErrorCode err = aip->auctionError;
if (err == 0)
return;
if (err < 0 || err >= ae_unknown)
printLog(fp, auctionErrorString[ae_unknown], aip->auction, err);
else
printLog(fp, auctionErrorString[err], aip->auction,
aip->auctionErrorDetail);
}
/*
* reset parse error code.
*/
void
resetAuctionError(auctionInfo *aip)
{
aip->auctionError = ae_none;
free(aip->auctionErrorDetail);
aip->auctionErrorDetail = NULL;
}
/*
* Set parse error.
*
* returns: 1, so functions that fail with code 1 can return auctionError().
*/
int
auctionError(auctionInfo *aip, enum auctionErrorCode pe, const char *details)
{
resetAuctionError(aip);
aip->auctionError = pe;
if (details)
aip->auctionErrorDetail = myStrdup(details);
printAuctionError(aip, stderr);
return 1;
}
/*
* isValidBidPrice(): Determine if the bid price is valid.
*
* If there are no bids, or the not enough bids to fill the auction (dutch),
* or you are the current high bidder, there is no increment, just the
* minimum price.
*
* If there are bids, then the increment depends on the current price.
* See http://pages.ebay.com/help/basics/g-bid-increment.html for details.
*/
int
isValidBidPrice(const auctionInfo *aip)
{
double increment = 0.0;
static double EPSILON = 0.0001;
if (aip->quantityBid == aip->quantity && aip->winning == 0) {
int i;
double *increments = getIncrements(aip);
for (i = 0; increments[i] > 0; i += 2) {
if (aip->price < increments[i])
break;
}
increment = increments[i+1];
}
/*
* Use EPSILON to avoid floating point
* rounding errors on "=" comparison
*/
return aip->bidPrice >= (aip->price + increment - EPSILON);
}
static double *
getIncrements(const auctionInfo *aip)
{
if (!aip->currency)
return USIncrements;
switch (aip->currency[0]) {
case 'A':
if (!strcmp(aip->currency, "AU"))
return AUIncrements;
break;
case 'C':
if (!strcmp(aip->currency, "C"))
return CADIncrements;
if (!strcmp(aip->currency, "CHF"))
return CHFIncrements;
break;
case 'E':
if (!strcmp(aip->currency, "EUR"))
return EURIncrements;
break;
case 'G':
if (!strcmp(aip->currency, "GBP"))
return GBPIncrements;
break;
case 'H':
if (!strcmp(aip->currency, "HKD"))
return HKDIncrements;
break;
case 'N':
if (!strcmp(aip->currency, "NT"))
return NTIncrements;
break;
case 'R':
if (!strcmp(aip->currency, "RMB"))
return RMBIncrements;
break;
case 'S':
if (!strcmp(aip->currency, "SGD"))
return SGDIncrements;
break;
case 'U':
if (!strcmp(aip->currency, "US"))
return USIncrements;
break;
}
return defaultIncrements;
}
/*
* Get initial auction info, sort items based on:
*
* 1. current status (i.e. you already placed a bid and are winning)
* 2. end time.
*/
int
sortAuctions(auctionInfo **auctions, int numAuctions, int *quantity)
{
int i, sawError = 0;
for (i = 0; i < numAuctions; ++i) {
int j;
if (options.debug)
logOpen(auctions[i], options.logdir);
for (j = 0; j < 3; ++j) {
if (j > 0)
printLog(stderr, "Retrying...\n");
/* delay to avoid ebay's "security measure" */
if(options.delay > 0)
sleep(options.delay);
if (!getInfo(auctions[i]))
break;
printAuctionError(auctions[i], stderr);
if (auctions[i]->auctionError == ae_unavailable) {
--j; /* doesn't count as an attempt */
printLog(stderr, "%s: Will retry, sleeping for an hour\n", timestamp());
sleep(3600);
} else if (auctions[i]->auctionError == ae_login ||
auctions[i]->auctionError == ae_captcha)
return 0;
}
printLog(stdout, "\n");
}
if (numAuctions > 1) {
printLog(stdout, "Sorting auctions...\n");
/* sort by status and end time */
qsort(auctions, (size_t)numAuctions,
sizeof(auctionInfo *), compareAuctionInfo);
}
/* get rid of obvious cases */
for (i = 0; i < numAuctions; ++i) {
auctionInfo *aip = auctions[i];
if ((i + 1) < numAuctions &&
!strcmp(aip->auction, auctions[i+1]->auction))
(void)auctionError(aip, ae_duplicate, NULL);
else if (aip->won > 0)
*quantity -= aip->won;
else if (aip->auctionError != ae_none ||
aip->endTime <= time(NULL))
;
else if (!isValidBidPrice(aip))
(void)auctionError(aip, ae_bidprice, NULL);
else
continue;
printAuctionError(aip, stderr);
freeAuction(auctions[i]);
auctions[i] = NULL;
++sawError;
}
/* eliminate dead auctions */
if (sawError) {
int j;
for (i = j = 0; i < numAuctions; ++i) {
if (auctions[i])
auctions[j++] = auctions[i];
}
numAuctions -= sawError;
}
printLog(stderr, "timeLeft, timeEnd, #, currentPrice, bidPrice, title\n");
for (i = 0; i < numAuctions; ++i) {
if (auctions[i]) {
printLog(stderr, "% 6u, % 6u, %s, % 2.02f, % 2.02f, %s\n"
, auctions[i]->remain
, auctions[i]->endTime // format to string?
, auctions[i]->auction
, auctions[i]->price
, auctions[i]->bidPrice
, auctions[i]->title
);
}
}
return numAuctions;
} /* sortAuctions() */