-
Notifications
You must be signed in to change notification settings - Fork 0
/
plm.install
executable file
·458 lines (431 loc) · 12 KB
/
plm.install
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
<?php
function plm_schema() {
$schema['plm_season'] = array(
'description' => 'Summary info for the entire poker season',
'fields' => array(
'sid' => array(
'description' => 'Season id',
'type' => 'serial',
'unsigned' => TRUE,
'not null' => TRUE,
),
'title' => array(
'description' => 'This season\'s unique title',
'type' => 'varchar',
'length' => 32,
'not null' => TRUE,
'default' => '',
),
'start_date' => array(
'description' => 'Start date of this poker season.',
'type' => 'int',
'not null' => TRUE,
'default' => 0
),
'end_date' => array(
'description' => 'End date of this poker season (optional).',
'type' => 'int',
'not null' => FALSE, // default null
),
'list_entrants' => array(
'description' => 'List all entrants for each game',
'type' => 'int', 'size' => 'tiny',
'not null' => TRUE,
'default' => 1,
),
'bonus_points' => array(
'description' => 'Bonus points awarded for playing',
'type' => 'int',
'not null' => TRUE,
'default' => 0,
),
'num_games' => array(
'description' => 'Total number of games in the season',
'type' => 'int',
'not null' => TRUE,
'default' => 0,
),
),
'primary key' => array('sid'),
'unique keys' => array(
'title' => array('title'),
),
);
$schema['plm_game'] = array(
'description' => 'A game in a poker league season',
'fields' => array(
'gid' => array(
'description' => 'Game id',
'type' => 'serial',
'unsigned' => TRUE,
'not null' => TRUE,
),
'sid' => array(
'description' => 'Season id',
'unsigned' => TRUE,
'type' => 'int',
'not null' => TRUE,
'default' => 0
),
'title' => array(
'description' => "This game's title. Must be unique within the season.",
'type' => 'varchar',
'length' => 32,
'not null' => TRUE,
'default' => '',
),
'hid' => array(
'description' => 'Player id of the host of this game',
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0
),
'num_players' => array(
'description' => 'Number of total players entered in the game',
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0
),
'pot_start' => array(
'description' => 'Pot size before player buyins',
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0
),
'buyin' => array(
'description' => 'Each player contributes this much to the pot.',
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0
),
'game_date' => array(
'description' => 'Date of the game',
'type' => 'int', 'not null' => TRUE, 'default' => 0
),
'list_entrants' => array(
'description' => 'boolean: true if all players are listed in plm_entrants',
'type' => 'int', 'size' => 'tiny',
'not null' => TRUE, 'default' => 0
),
'announced' => array(
'description' => 'boolean: set when the time and place for the game are decided',
'type' => 'int', 'size' => 'tiny',
'not null' => TRUE, 'default' => 0
),
'finished' => array(
'description' => 'boolean: true if the results have been finalized',
'type' => 'int', 'size' => 'tiny',
'not null' => TRUE, 'default' => 0
),
'payid' => array(
'description' => 'Payout structure for this game',
'type' => 'int',
'unsigned' => TRUE,
'not null' => FALSE
),
'bonus_points' => array(
'description' => 'Bonus points awarded for playing this game',
'type' => 'int',
'not null' => TRUE,
'default' => 0,
)
),
'primary key' => array(
'gid',
),
);
$schema['plm_player'] = array(
'description' => 'Player roster for poker league',
'fields' => array(
'pid' => array(
'description' => 'Player Id',
'type' => 'serial',
'unsigned' => TRUE,
'not null' => TRUE,
),
'uid' => array(
'description' => 'User id, if this player has an account on this site',
'type' => 'int',
'unsigned' => TRUE,
'not null' => FALSE, 'default' => 0
),
'name' => array(
'description' => "This player's poker nickname",
'type' => 'varchar',
'length' => 32,
'not null' => TRUE,
'default' => '',
),
'picture' => array(
'description' => "This player's profile picture",
'type' => 'varchar',
'length' => 255,
'not null' => FALSE,
'default' => NULL,
),
),
'unique keys' => array(
'name' => array('name'),
),
'primary key' => array('pid'),
);
$schema['plm_entrant'] = array(
'description' => 'Game Entrants',
'fields' => array(
'entid' => array(
'description' => 'Roster entry id',
'type' => 'serial',
'unsigned' => TRUE,
'not null' => TRUE,
),
'gid' => array(
'description' => 'Game Id',
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
),
'pid' => array(
'description' => 'Player Id',
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
),
),
'primary key' => array('entid'),
'unique keys' => array(
'gid_pid' => array('gid', 'pid'),
),
);
$schema['plm_result'] = array(
'description' => 'Game results',
'fields' => array(
'gid' => array(
'description' => 'Game Id',
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
),
'place' => array(
'description' => 'Place Finished',
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
),
'pid' => array(
'description' => 'Player Id',
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
),
'points' => array(
'description' => 'Points Earned',
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
),
'cash' => array(
'description' => 'Cash Winnings',
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
'default' => 0,
),
),
'primary key' => array('gid', 'place'),
'unique keys' => array(
'gid_pid' => array('gid', 'pid'),
)
);
$schema['plm_payset'] = array(
'description' => 'Payout Structures',
'fields' => array(
'payid' => array(
'description' => 'Paystruct Id',
'type' => 'serial',
'unsigned' => TRUE,
'not null' => TRUE,
),
'title' => array(
'description' => 'Description for this payout structure',
'type' => 'varchar',
'length' => 32,
'not null' => TRUE,
),
'buyin' => array(
'description' => 'Player buy-in',
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE
),
'pot_bonus' => array(
'description' => 'Extra added to prizepool (in addition to player buy-ins)',
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE
),
),
'primary key' => array('payid'),
'unique keys' => array(
'title' => array('title'),
)
);
$schema['plm_payrule'] = array(
'description' => 'Individual payout rules',
'fields' => array(
'payid' => array(
'description' => 'Payset id for this rule',
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
),
'num_players' => array(
'description' => 'Number of entrants to match this rule',
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
),
'place' => array(
'description' => 'Finishing place (1-based)',
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
),
'amount' => array(
'description' => 'Payout amount',
'type' => 'int',
'unsigned' => TRUE,
'not null' => TRUE,
),
),
'primary key' => array('payid', 'num_players', 'place'),
);
return $schema;
}
function plm_install() {
drupal_install_schema('plm');
//drupal_set_message('plm_install() called');
_plm_install_menu();
}
function plm_update_6000(){
drupal_set_message('updating 6000!');
$ret = array();
return $ret;
}
function plm_update_6001(){
drupal_set_message('updating 6001!');
$ret = array();
return $ret;
}
function plm_update_6002() {
$ret = array();
db_add_field($ret, 'plm_game', 'payid', array(
'description' => 'Payout structure for this game',
'type' => 'int',
'unsigned' => TRUE,
'not null' => FALSE));
return $ret;
}
function plm_update_6003() {
$ret = array();
$sql = 'INSERT INTO {plm_entrant} (gid, pid) SELECT r.gid,r.pid FROM {plm_result} r
EXCEPT SELECT e.gid, e.pid FROM {plm_entrant} e';
$ret[] = update_sql($sql);
return $ret;
}
function plm_update_6004() {
$ret = array();
db_add_field($ret, 'plm_season', 'list_entrants', array(
'description' => 'List all entrants for each game',
'type' => 'int', 'size' => 'tiny',
'not null' => TRUE,
'default' => 1,
));
return $ret;
}
function plm_update_6005() {
$ret = array();
db_add_field($ret, 'plm_season', 'bonus_points', array(
'description' => 'Bonus points awarded for playing',
'type' => 'int',
'not null' => TRUE,
'default' => 0,
));
db_add_field($ret, 'plm_game', 'bonus_points', array(
'description' => 'Bonus points awarded for playing',
'type' => 'int',
'not null' => TRUE,
'default' => 0,
));
return $ret;
}
function plm_update_6006() {
$ret = array();
db_add_field($ret, 'plm_season', 'num_games', array(
'description' => 'Total number of games in the season',
'type' => 'int',
'not null' => TRUE,
'default' => 0,
));
db_query("UPDATE {plm_season} s
LEFT JOIN (
SELECT s.sid, s.title, count(g.gid) AS num_games
FROM {plm_season} s
LEFT JOIN {plm_game} g USING (sid)
GROUP BY sid
) AS s2 USING (sid)
SET s.num_games=s2.num_games");
return $ret;
}
function plm_uninstall() {
db_query("DELETE FROM {menu_custom} WHERE menu_name = 'plm'");
db_query("DELETE FROM {menu_links} WHERE module = 'plm'");
drupal_uninstall_schema('plm');
}
function _plm_install_menu() {
// Create our menu. See menu.install for an example.
$t = get_t();
db_query("INSERT INTO {menu_custom} (menu_name, title, description)
VALUES ('%s', '%s', '%s')",
'plm', $t('Poker League'), $t('Poker League Menu'));
// Add nav to primary links menu
/*
$link = array(
'link_title' => 'Schedule/Results',
'link_path' => 'plm/schedule',
'menu_name' => 'plm',
'module' => 'plm',
'weight' => 1,
);
menu_link_save($link);
$link = array(
'link_title' => 'Rankings',
'link_path' => 'plm/rankings',
'menu_name' => 'plm',
'module' => 'plm',
'weight' => 2,
);
menu_link_save($link);
$link = array(
'link_title' => 'Seasons',
'link_path' => 'plm/seasons',
'weight' => 3,
'menu_name' => 'plm',
'module' => 'plm',
);
menu_link_save($link);
$link = array(
'link_title' => 'Players',
'link_path' => 'plm/players',
'menu_name' => 'plm',
'module' => 'plm',
'weight' => 4,
);
menu_link_save($link);
*/
}