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
|
-- Blacklists --
create table if not exists blacklist_ip ( ip text primary key ) without rowid;
create table if not exists blacklist_mail ( mail text primary key ) without rowid;
-- Titles and roles --
create table if not exists titles (
title_id text
primary key,
title_name text,
bgg integer,
is_hidden boolean
) without rowid;
create table if not exists roles (
title_id text
references titles,
role text,
unique (title_id, role)
);
-- Users --
create table if not exists users (
user_id integer
primary key,
name text
unique
collate nocase,
mail text
unique
collate nocase,
notify boolean
default 0,
is_banned boolean
default 0,
ctime timestamp
default current_timestamp,
password text,
salt text,
about text
);
create table if not exists user_last_seen (
user_id integer
primary key
references users
on delete cascade,
atime timestamp,
aip text
);
create table if not exists tokens (
user_id integer
primary key
references users
on delete cascade,
token text,
time timestamp
);
create table if not exists last_notified (
game_id integer
references games
on delete cascade,
user_id integer
references users
on delete cascade,
time timestamp,
primary key (game_id, user_id)
) without rowid;
drop view if exists user_view;
create view if not exists user_view as
select
user_id, name, mail, notify
from
users
;
drop view if exists user_profile_view;
drop view if exists user_login_view;
create view if not exists user_login_view as
select
user_id, name, mail, notify, password, salt
from
users
;
create view if not exists user_profile_view as
select
user_id, name, mail, notify, ctime, atime, about
from
users
natural left join user_last_seen
;
-- Messages --
create table if not exists messages (
message_id integer
primary key,
is_deleted_from_inbox boolean
default 0,
is_deleted_from_outbox boolean
default 0,
from_id integer
references users,
to_id integer
references users,
time timestamp
default current_timestamp,
is_read boolean
default 0,
subject text,
body text
);
drop view if exists message_view;
create view if not exists message_view as
select
messages.*,
users_from.name as from_name,
users_to.name as to_name
from
messages
left join users as users_from
on messages.from_id = users_from.user_id
left join users as users_to
on messages.to_id = users_to.user_id
;
create index if not exists messages_inbox_idx
on
messages(to_id)
where
is_deleted_from_inbox = 0
;
create index if not exists messages_inbox_unread_idx
on
messages(to_id)
where
is_read = 0 and is_deleted_from_inbox = 0
;
-- Forum --
create table if not exists threads (
thread_id integer
primary key,
author_id integer
references users,
subject text,
is_locked boolean
default 0
);
create table if not exists posts (
post_id integer
primary key,
thread_id integer
references threads
on delete cascade,
author_id integer
references users,
ctime timestamp
default current_timestamp,
mtime timestamp
default current_timestamp,
body text
);
drop view if exists thread_view;
create view if not exists thread_view as
select
threads.*,
author.name as author_name,
(
select
count(*) - 1
from
posts
where
posts.thread_id = threads.thread_id
) as replies,
(
select
max(posts.mtime)
from
posts
where
posts.thread_id = threads.thread_id
) as mtime
from
threads
left join users as author
on threads.author_id = author.user_id
;
drop view if exists post_view;
create view if not exists post_view as
select
posts.*,
author.name as author_name
from
posts
left join users as author
on posts.author_id = author.user_id
;
create index if not exists posts_thread_idx on posts(thread_id);
-- Games --
create table if not exists games (
game_id integer
primary key,
title_id text
references titles,
scenario text,
options text,
owner_id integer
references users,
ctime timestamp
default current_timestamp,
is_private boolean
default 0,
is_random boolean
default 0,
description text,
status integer
default 0,
result text
);
create index if not exists games_title_idx on games(title_id);
create index if not exists games_status_idx on games(status);
create table if not exists game_state (
game_id integer
primary key
references games
on delete cascade,
mtime timestamp,
active text,
state text
);
create table if not exists game_chat (
chat_id integer
primary key,
game_id integer
references games
on delete cascade,
time timestamp
default current_timestamp,
user_id integer
references users,
message text
);
drop view if exists game_chat_view;
create view if not exists game_chat_view as
select
chat_id, game_id, time, name, message
from
game_chat
natural join users
;
create index if not exists game_chat_idx on game_chat(game_id);
create table if not exists game_replay (
game_id integer
references games
on delete cascade,
time timestamp
default current_timestamp,
role text,
action text,
arguments text
);
create table if not exists players (
game_id integer
references games
on delete cascade,
role text,
user_id integer
references users,
primary key (game_id, role)
) without rowid;
create index if not exists player_user_idx on players(user_id);
create index if not exists player_game_user_idx on players(game_id, user_id);
drop view if exists game_view;
create view if not exists game_view as
select
games.*,
titles.title_name,
owner.name as owner_name,
game_state.mtime,
game_state.active
from
games
natural left join game_state
natural join titles
join users as owner
on owner.user_id = games.owner_id
;
drop view if exists game_full_view;
create view if not exists game_full_view as
select
*,
(
select
group_concat(name, ', ')
from
players
natural join users
where
players.game_id = game_view.game_id
) as player_names,
(
select
count(distinct user_id) = 1
from
players
where
players.game_id = game_view.game_id
) as is_solo
from
game_view
;
drop view if exists opposed_games;
create view if not exists opposed_games as
select
*
from
games
where
status > 0
and (
select
count(distinct user_id) > 1
from
players
where
players.game_id = games.game_id
)
;
drop view if exists your_turn_reminder;
create view if not exists your_turn_reminder as
select
game_id, role, user_id, name, mail, notify
from
game_full_view
join players using(game_id)
join users using(user_id)
where
status = 1
and active in ('All', 'Both', role)
and is_solo = 0
and notify = 1
and datetime('now') > datetime(mtime, '+1 hour')
;
drop view if exists your_turn;
create view if not exists your_turn as
select
game_id, user_id, role
from
players
join games using(game_id)
join game_state using(game_id)
where
status = 1
and active in ('All', 'Both', role)
;
-- Triggers --
drop trigger if exists no_part_on_active_game;
create trigger no_part_on_active_game before delete on players
begin
select
raise(abort, 'Cannot remove players from started games.')
where
(select status from games where games.game_id = old.game_id) > 0
;
end;
drop trigger if exists no_join_on_active_game;
create trigger no_join_on_active_game before insert on players
begin
select
raise(abort, 'Cannot add players to started games.')
where
(select status from games where games.game_id = new.game_id) > 0
;
end;
drop trigger if exists must_be_valid_role;
create trigger must_be_valid_role before insert on players
begin
select
raise(abort, 'Invalid role.')
where
not exists (
select
1
from
roles
where
roles.title_id = (
select
title_id
from
games
where
games.game_id = new.game_id
)
and roles.role = new.role
)
and new.role != 'Random 1'
and new.role != 'Random 2'
and new.role != 'Random 3'
and new.role != 'Random 4'
and new.role != 'Random 5'
and new.role != 'Random 6'
and new.role != 'Random 7'
;
end;
-- Manual key management if pragma foreign_keys = off
drop trigger if exists trigger_delete_on_games;
create trigger trigger_delete_on_games after delete on games
begin
delete from game_state where game_id = old.game_id;
delete from game_chat where game_id = old.game_id;
delete from game_replay where game_id = old.game_id;
delete from last_notified where game_id = old.game_id;
delete from players where game_id = old.game_id;
end;
-- Game stats
drop view if exists role_index_view;
create view if not exists role_index_view (t, i, r) as
select
title_id,
row_number() over (partition by title_id),
role
from
roles
;
drop view if exists game_stat_view;
create view if not exists game_stat_view as
select
title_name,
null as scenario,
null as total,
(select r from role_index_view where t=title_id and i=1) as r1,
(select r from role_index_view where t=title_id and i=2) as r2,
(select r from role_index_view where t=title_id and i=3) as r3,
(select r from role_index_view where t=title_id and i=4) as r4,
(select r from role_index_view where t=title_id and i=5) as r5,
(select r from role_index_view where t=title_id and i=6) as r6,
(select r from role_index_view where t=title_id and i=7) as r7
from
titles
where
is_hidden = 0
union
select
title_name,
scenario,
count(*) as total,
sum((select i from role_index_view where t=title_id and r=result) = 1) as r1,
sum((select i from role_index_view where t=title_id and r=result) = 2) as r2,
sum((select i from role_index_view where t=title_id and r=result) = 3) as r3,
sum((select i from role_index_view where t=title_id and r=result) = 4) as r4,
sum((select i from role_index_view where t=title_id and r=result) = 5) as r5,
sum((select i from role_index_view where t=title_id and r=result) = 6) as r6,
sum((select i from role_index_view where t=title_id and r=result) = 7) as r7
from
games
natural join titles
where
is_hidden = 0
and status = 2
and game_id in (select game_id from opposed_games)
group by
title_id,
scenario
order by
title_name,
total desc nulls first
;
|