-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsgapi_gatools.js
More file actions
395 lines (368 loc) · 9.23 KB
/
sgapi_gatools.js
File metadata and controls
395 lines (368 loc) · 9.23 KB
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
/*
* SteamGifts Userscript API
* Giveaway Tools
*
*/
SgApi.Plugins.register("Giveaway Tools", "0.1.1", function(){
/**
*
* Extension Module for SgApi.UI to get Giveaway-specific HTML elements.
*
* @name CurrentGiveaway
* @memberof SgApi.Ui
* @static
* @declared in sgapi_gatools.js
*/
SgApi.Ui._registerModule("CurrentGiveaway", function(context) {
var $ = context.$;
return {
/**
*
* @memberof SgApi.Ui.CurrentGiveaway
* @return {jQuery}
* @declared in sgapi_gatools.js
*/
get cpElement(){
return $(".featured__heading__small").last();
},
/**
*
* @memberof SgApi.Ui.CurrentGiveaway
* @return {jQuery}
* @declared in sgapi_gatools.js
*/
get creatorElement(){
return $(".featured__column.featured__column--width-fill.text-right a[href]");
},
/**
*
* @memberof SgApi.Ui.CurrentGiveaway
* @return {jQuery}
* @declared in sgapi_gatools.js
*/
get headerImageElement(){
return $(".global__image-outer-wrap.global__image-outer-wrap--game-large");
},
/**
*
* @memberof SgApi.Ui.CurrentGiveaway
* @return {jQuery}
* @declared in sgapi_gatools.js
*/
get startTimeElement(){
return $(".featured__column.text-right span[data-timestamp]");
},
/**
*
* @memberof SgApi.Ui.CurrentGiveaway
* @return {jQuery}
* @declared in sgapi_gatools.js
*/
get endTimeElement(){
return $(".featured__column:first-child span[data-timestamp]");
},
/**
*
* @memberof SgApi.Ui.CurrentGiveaway
* @return {jQuery}
* @declared in sgapi_gatools.js
*/
get copiesElement(){
return $(".featured__heading__small:contains(Copies)");
},
/**
*
* @memberof SgApi.Ui.CurrentGiveaway
* @return {jQuery}
* @declared in sgapi_gatools.js
*/
get contributorLevelElement(){
return $('div.featured__column[title="Contributor Level"]');
},
/**
*
* @memberof SgApi.Ui.CurrentGiveaway
* @return {jQuery}
* @declared in sgapi_gatools.js
*/
get whitelistElement(){
return $(".featured__column.featured__column--whitelist");
},
/**
*
* @memberof SgApi.Ui.CurrentGiveaway
* @return {jQuery}
* @declared in sgapi_gatools.js
*/
get groupElement(){
return $(".featured__column.featured__column--group");
},
/**
*
* @memberof SgApi.Ui.CurrentGiveaway
* @return {jQuery}
* @declared in sgapi_gatools.js
*/
get descriptionElement(){
return $(".page__description .markdown.markdown--resize-body");
},
/**
*
* @memberof SgApi.Ui.CurrentGiveaway
* @return {jQuery}
* @declared in sgapi_gatools.js
*/
get visibleButtonElement(){
return $(".sidebar div:not(.is-hidden)").first();
}
};
});
/**
*
* @name Giveaways
* @memberof SgApi
* @static
* @namespace
* @declared in sgapi_gatools.js
*/
SgApi.Giveaways = new function(){
var self = this;
var getGiveawayData = function(context){
context = context || new SgApi.Context();
var util = SgApi.Util;
if(!util.isGiveaway(context))
return undefined;
var ui = new SgApi.Ui(context);
var sidebar = ui.Sidebar;
ui = ui.CurrentGiveaway;
function getSidebarCount(str){
return SgApi.Util.parseInteger(sidebar.menuItemValueElement(str).text());
}
/**
*
*
* Read-only representation of a giveaway.
* Getters should be self-explanatory.
*
* @class Giveaway
* @memberof SgApi.Giveaways
* @declared in sgapi_gatools.js
*/
return {
/**
*
* @memberof SgApi.Giveaways.Giveaway
* @return {string}
* @declared in sgapi_gatools.js
*/
get id() {
return util.extractId(context.url);
},
/**
*
* @memberof SgApi.Giveaways.Giveaway
* @return {string}
* @declared in sgapi_gatools.js
*/
get gameTitle(){
var title = context.title;
var urlParts = context.url.split("/");
if(urlParts.length > 6) //If we are at a subpage, eg "/entries", we need to remove that appendix from the title
title = title.substring(0, title.lastIndexOf("-"));
return title;
},
/**
*
* @memberof SgApi.Giveaways.Giveaway
* @return {int}
* @declared in sgapi_gatools.js
*/
get cp(){
var cpStr = ui.cpElement.text();
return util.parseInteger(cpStr.substring(1, cpStr.length-2));
},
/**
*
* @memberof SgApi.Giveaways.Giveaway
* @return {string}
* @declared in sgapi_gatools.js
*/
get steamUrl(){
return ui.headerImageElement.attr("href");
},
/**
*
* @memberof SgApi.Giveaways.Giveaway
* @return {string}
* @declared in sgapi_gatools.js
*/
get steamAppId(){
return util.extractId(this.steamUrl);
},
/**
*
* @memberof SgApi.Giveaways.Giveaway
* @return {int}
* @declared in sgapi_gatools.js
*/
get copies(){
var $copies = ui.copiesElement;
if($copies.length > 0)
return util.parseInteger($copies.text().match(/\(([0-9.,]+) Copies\)/)[1]);
return 1;
},
/**
*
* @memberof SgApi.Giveaways.Giveaway
* @return {int}
* @declared in sgapi_gatools.js
*/
get contributorLevel(){
var $level = context.$('div.featured__column[title="Contributor Level"]');
if($level.length > 0)
return +$level.text().match(/Level (\d+)\+/)[1];
return 0;
},
/**
*
* @memberof SgApi.Giveaways.Giveaway
* @return {string}
* @declared in sgapi_gatools.js
*/
get url(){return context.url;},
/**
*
* @memberof SgApi.Giveaways.Giveaway
* @return {string}
* @declared in sgapi_gatools.js
*/
get creator() { return ui.creatorElement.text();},
/**
*
* @memberof SgApi.Giveaways.Giveaway
* @return {int}
* @declared in sgapi_gatools.js
*/
get startTime(){return ui.startTimeElement.attr("data-timestamp");},
/**
*
* @memberof SgApi.Giveaways.Giveaway
* @return {int}
* @declared in sgapi_gatools.js
*/
get endTime(){return ui.endTimeElement.attr("data-timestamp");},
/**
*
* @memberof SgApi.Giveaways.Giveaway
* @return {boolean}
* @declared in sgapi_gatools.js
*/
get isWhitelist(){return ui.whitelistElement.length > 0;},
/**
*
* @memberof SgApi.Giveaways.Giveaway
* @return {boolean}
* @declared in sgapi_gatools.js
*/
get isGroup(){return ui.groupElement.length > 0;},
/**
*
* @memberof SgApi.Giveaways.Giveaway
* @return {boolean}
* @declared in sgapi_gatools.js
*/
get hasStarted(){return new Date().getTime() > this.startTime * 1000;},
/**
*
* @memberof SgApi.Giveaways.Giveaway
* @return {boolean}
* @declared in sgapi_gatools.js
*/
get hasEnded(){return new Date().getTime() > this.endTime * 1000;},
/**
*
* @memberof SgApi.Giveaways.Giveaway
* @return {boolean}
* @declared in sgapi_gatools.js
*/
get isRunning(){return this.hasStarted && !this.hasEnded;},
/**
*
* @memberof SgApi.Giveaways.Giveaway
* @return {int}
* @declared in sgapi_gatools.js
*/
get commentCount(){return getSidebarCount("Comments");},
/**
*
* @memberof SgApi.Giveaways.Giveaway
* @return {int}
* @declared in sgapi_gatools.js
*/
get entryCount(){return getSidebarCount("Entries");},
/**
*
* @memberof SgApi.Giveaways.Giveaway
* @return {string}
* @declared in sgapi_gatools.js
*/
get thumbUrl(){return SgApi.Util.getGameThumbUrl(this);},
/**
*
* @memberof SgApi.Giveaways.Giveaway
* @return {jQuery}
* @declared in sgapi_gatools.js
*/
get descriptionHtml(){return ui.descriptionElement;},
/**
*
* @memberof SgApi.Giveaways.Giveaway
* @return {boolean}
* @declared in sgapi_gatools.js
*/
get isOwned() {return ui.visibleButtonElement.text().indexOf("Exists in Account") === 1;},
/**
*
* @memberof SgApi.Giveaways.Giveaway
* @return {boolean}
* @declared in sgapi_gatools.js
*/
get isEntered() {return ui.visibleButtonElement.is(".sidebar__entry-delete");}
};
};
/**
*
* Loads a giveaway via ajax and passes it to the callback
*
* @name loadGiveaway
* @memberof SgApi.Giveaways
* @param {string} idOrUrl a SG giveaway id or a complete url for the GA to fetch
* @param {function(Giveaway, Context)} callback the callback to notify on success
* @declared in sgapi_gatools.js
*/
this.loadGiveaway = function(idOrUrl, callback){
if(idOrUrl === undefined){
callback(self.currentGiveaway, new SgApi.Context());
return self.currentGiveaway;
}
var url = SgApi.Util.buildGiveawayUrl(idOrUrl);
$.ajax(url).done(function (data){
var context = SgApi.Context.fromHtml(data, url);
var gaInfo = getGiveawayData(context);
callback(gaInfo, context);
});
};
/**
*
* Get the current giveaway. If the current page is no giveaway, the result is undefined
*
* @name currentGiveaway
* @memberof SgApi.Giveaways
* @return {Giveaway|undefined} the current GA or undefined if the current page is no Giveaway
* @declared in sgapi_gatools.js
*/
this.currentGiveaway = function(){
return getGiveawayData();
}
}();
});