-
Notifications
You must be signed in to change notification settings - Fork 0
/
db.sql
501 lines (418 loc) · 16.1 KB
/
db.sql
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
sudo service postgresql start
sudo -u postgres psql
DROP DATABASE yelpheim;
CREATE DATABASE yelpheim;
CREATE TABLE users (
id BIGSERIAL NOT NULL PRIMARY KEY,
first_name VARCHAR(50) NOT NULL,
username VARCHAR(50) NOT NULL UNIQUE,
user_pass VARCHAR(255) NOT NULL,
email VARCHAR(50) NOT NULL
);
CREATE TABLE worlds (
id BIGSERIAL NOT NULL PRIMARY KEY,
world_name VARCHAR(50) NOT NULL,
owner_username VARCHAR(50) NOT NULL REFERENCES users(username),
seed VARCHAR(50) NOT NULL,
bosses_defeated INT NOT NULL check (bosses_defeated >= 0 and bosses_defeated <=5),
residents VARCHAR(25)
);
CREATE TABLE worlds_users (
world_id BIGINT NOT NULL REFERENCES worlds(id),
username VARCHAR(50) NOT NULL REFERENCES users(username)
);
CREATE TABLE locations (
id BIGSERIAL NOT NULL PRIMARY KEY,
location_name VARCHAR(50) NOT NULL,
location_description VARCHAR(500) NOT NULL,
biome VARCHAR(25) NOT NULL,
builder_username VARCHAR(50) REFERENCES users(username),
added_by VARCHAR(50) NOT NULL REFERENCES users(username),
world_id BIGINT NOT NULL REFERENCES worlds(id)
);
CREATE TABLE tags (
id BIGSERIAL NOT NULL PRIMARY KEY,
tag_name VARCHAR(50) NOT NULL
);
CREATE TABLE locations_tags (
tag_id BIGINT NOT NULL REFERENCES tags(id),
location_id BIGINT NOT NULL REFERENCES locations(id)
);
INSERT INTO users (first_name, username, user_pass, email) VALUES ('Joe', 'Juicebox343', '100852', '[email protected]');
INSERT INTO worlds (world_name, owner_id, seed, bosses_defeated) VALUES ('Palheim', 1, 'AZfqhmCT6j', 3);
INSERT INTO worlds_users (world_id, user_id) VALUES (1,1);
INSERT INTO locations (location_name, location_description, owner_id, world_id) VALUES ('Palheim', 'Historic Palheim. Centrally located, the first settlement in this generation of the 10th realm.', 1, 1);
INSERT INTO locations (location_name, location_description, owner_id, world_id) VALUES ('East Paleim', 'Perched along a mountain cliff face, East Palheim boasts easy access to Plains, Swamps, and Mountain biomes.', 1, 1);
SELECT id AS world_id, world_name, seed, owner_id AS world_owner, bosses_defeated FROM worlds WHERE owner_id = 1;
SELECT worlds_users.user_id, users.first_name FROM worlds_users RIGHT JOIN users ON worlds_users.user_id = users.id WHERE world_id = 1;
insert into tags (tag_name) values ('Forge (Level 1)'), ('Forge (Level 2)'), ('Forge (Level 3)'), ('Forge (Level 4)'), ('Forge (Level 5)'), ('Forge (Level 6)'), ( 'Forge (Level 7)'), ('Workbench (Level 1)'), ('Workbench (Level 2)'), ('Workbench (Level 3)'), ('Workbench (Level 4)'), ('Workbench (Level 5)'), ('Smelter'), ('Blast Furnace'), ('Open Beds'), ('Open Storage'), ('5+ Comfort'), ('10+ Comfort'), ('15+ Comfort'), ('Not Fortified'), ('Fortified'), ('Impenetrable'), ('Portal'),( 'Resource Farm'), ('Harbor');
INSERT INTO worlds (world_name, owner_username, seed, bosses_defeated) VALUES ($1, $2, $3, $4) returning *
WITH insert1 AS(
INSERT INTO worlds (world_name, owner_username, seed, bosses_defeated)
VALUES ($1, $2, $3, $4)
RETURNING id as world_id)
)
INSERT INTO worlds_users (world_id, username)
VALUES (world_id, $6)
-- is authenticated?
-- yes? load world gallery - with own world as priority
-- no? load world gallery
-- Front Page
-- load all world data on navigation
-- load locations with world_id
-- Location Page
-- Load all world data on navigation
-- load all location data
WITH insert1 AS (INSERT INTO worlds (world_name, owner_username, seed, bosses_defeated) VALUES ($1, $2, $3, $4) RETURNING id as world_id)), insert2 AS(INSERT INTO worlds_users (world_id, username) VALUES (world_id, $6));
WITH insert1 AS(INSERT INTO worlds (world_name, owner_username, seed, bosses_defeated) VALUES ($1, $2, $3, $4) RETURNING id as world_id)) INSERT INTO worlds_users (world_id, username) VALUES (world_id, $6)
WITH insert1 AS(INSERT INTO worlds (world_name, owner_username, seed, bosses_defeated) VALUES ($1, $2, $3, $4) RETURNING id as world_id, owner_username AS username)
INSERT INTO worlds_users (world_id, username) SELECT world_id, username FROM insert1;
SELECT id, username FROM worlds LEFT JOIN worlds_users ON worlds_users.world_id = worlds.id WHERE worlds_users.world_id = 6;
WITH select1 AS(SELECT id, username FROM worlds LEFT JOIN worlds_users ON worlds_users.world_id = worlds.id WHERE worlds_users.username = 'Juicebox343')
SELECT worlds_users.username, users.first_name FROM worlds_users, select1 RIGHT JOIN users ON worlds_users.username = users.username WHERE worlds_users.world_id = select1.world_id;
WITH select1 AS(SELECT id, username FROM worlds LEFT JOIN worlds_users ON worlds_users.world_id = worlds.id WHERE worlds_users.world_id = 6);
WITH select1 AS(SELECT id, username FROM worlds LEFT JOIN worlds_users ON worlds_users.world_id = worlds.id WHERE worlds_users.username = 'Juicebox343') SELECT
first_name, users.username FROM users RIGHT JOIN worlds_users ON worlds_users.username = users.username WHERE worlds_users.world_id = 6;
select sess -> 'passport' -> 'user' from session where CAST (sess -> 'passport' ->> 'user' AS VARCHAR) = 'Juicebox343';
await db.query("SELECT sess -> 'passport' -> 'user' FROM session WHERE CAST (sess -> 'passport' ->> 'user' AS VARCHAR) = $1;", [req.user.username]);
--
select
locations.location_name || ' ' ||
coalesce((string_agg(biomes.biome_name , ' ')), '')
as document
from
locations
join locations_biomes on
locations_biomes.location_id = locations.id
join biomes on
biomes.id = locations_biomes.biome_id
group by
locations.location_name
select
to_tsvector(locations.location_name) ||
to_tsvector(locations.location_description) ||
to_tsvector(coalesce(locations.builder_username, '')) ||
to_tsvector(worlds.world_name) ||
to_tsvector(coalesce((string_agg(biomes.biome_name, '')), '')) ||
to_tsvector(coalesce((string_agg(dangers.danger_name, '')), '')) ||
to_tsvector(coalesce((string_agg(tags.tag_name, ' ')), ''))
as document
from
locations
left join locations_biomes on
locations_biomes.location_id = locations.id
left join biomes on
biomes.id = locations_biomes.biome_id
left join locations_dangers on
locations_dangers.location_id = locations.id
left join dangers on
dangers.id = locations_dangers.danger_id
left join locations_tags on
locations_tags.location_id = locations.id
left join tags on
tags.id = locations_tags.tag_id
left join worlds on
worlds.id = locations.world_id
group by
locations.location_name,
locations.location_description,
locations.builder_username,
worlds.world_name
UPDATE locations SET searchtext =
to_tsvector(locations.location_name) ||
to_tsvector(locations.location_description) ||
to_tsvector(coalesce(locations.builder_username, '')) ||
to_tsvector(worlds.world_name) ||
to_tsvector(coalesce((string_agg(biomes.biome_name, '')), '')) ||
to_tsvector(coalesce((string_agg(dangers.danger_name, '')), '')) ||
to_tsvector(coalesce((string_agg(tags.tag_name, ' ')), ''))
as document
from
locations
left join locations_biomes on
locations_biomes.location_id = locations.id
left join biomes on
biomes.id = locations_biomes.biome_id
left join locations_dangers on
locations_dangers.location_id = locations.id
left join dangers on
dangers.id = locations_dangers.danger_id
left join locations_tags on
locations_tags.location_id = locations.id
left join tags on
tags.id = locations_tags.tag_id
left join worlds on
worlds.id = locations.world_id
group by
locations.location_name,
locations.location_description,
locations.builder_username,
worlds.world_name
with cte_search as (
select
to_tsvector(locations.location_name) ||
to_tsvector(locations.location_description) ||
to_tsvector(coalesce(locations.builder_username, '')) ||
to_tsvector(worlds.world_name) ||
to_tsvector(coalesce((string_agg(biomes.biome_name, '')), '')) ||
to_tsvector(coalesce((string_agg(dangers.danger_name, '')), '')) ||
to_tsvector(coalesce((string_agg(tags.tag_name, ' ')), ''))
as document
from
locations
left join locations_biomes on
locations_biomes.location_id = locations.id
left join biomes on
biomes.id = locations_biomes.biome_id
left join locations_dangers on
locations_dangers.location_id = locations.id
left join dangers on
dangers.id = locations_dangers.danger_id
left join locations_tags on
locations_tags.location_id = locations.id
left join tags on
tags.id = locations_tags.tag_id
left join worlds on
worlds.id = locations.world_id
group by
locations.location_name,
locations.location_description,
locations.builder_username,
worlds.world_name
)
update
locations
set
searchtext = cte_search.document
from
cte_search
with my_cte as (select
locations.location_name || ' ' ||
locations.location_description || ' ' ||
coalesce(locations.builder_username, '') || ' ' ||
worlds.world_name || ' ' ||
coalesce((string_agg(biomes.biome_name, '')), '') || ' ' ||
coalesce((string_agg(dangers.danger_name, '')), '') || ' ' ||
coalesce((string_agg(tags.tag_name, ' ')), '')
as document
from
locations
left join locations_biomes on
locations_biomes.location_id = locations.id
left join biomes on
biomes.id = locations_biomes.biome_id
left join locations_dangers on
locations_dangers.location_id = locations.id
left join dangers on
dangers.id = locations_dangers.danger_id
left join locations_tags on
locations_tags.location_id = locations.id
left join tags on
tags.id = locations_tags.tag_id
left join worlds on
worlds.id = locations.world_id
group by
locations.location_name,
locations.location_description,
locations.builder_username,
worlds.world_name)
update locations set searchtext = to_tsvector('english', my_cte.document) from my_cte
with my_cte as (select
locations.id,
locations.location_name,
locations.location_description,
coalesce((string_agg(biomes.biome_name, '')), ' ') as biome_name,
coalesce((string_agg(dangers.danger_name, '')), ' ') as danger_name,
coalesce((string_agg(tags.tag_name, ' ')), ' ') as tag_name
from
locations
left join locations_biomes on
locations_biomes.location_id = locations.id
left join biomes on
biomes.id = locations_biomes.biome_id
left join locations_dangers on
locations_dangers.location_id = locations.id
left join dangers on
dangers.id = locations_dangers.danger_id
left join locations_tags on
locations_tags.location_id = locations.id
left join tags on
tags.id = locations_tags.tag_id
group by
locations.id,
locations.location_name,
locations.location_description)
update locations set searchtext = to_tsvector('english', my_cte.location_name || ' ' || my_cte.location_description || ' ' || my_cte.biome_name || ' ' || my_cte.danger_name || ' ' || my_cte.tag_name) from my_cte where my_cte.id = locations.id
create trigger ts_searchtext before
insert
or
update
on
public.locations for each row execute function tsvector_update_trigger('searchtext', 'pg_catalog.english', 'location_name', 'location_description')
select lid, l_name, l_desc, l_dangers, l_tags, l_biomes from
(select
locations.id as lid,
locations.location_name as l_name,
locations.location_description as l_desc,
string_agg(biomes.biome_name, '') as l_biomes,
string_agg(dangers.danger_name, '') as l_dangers,
string_agg(tags.tag_name, ' ') as l_tags,
to_tsvector(locations.location_name) ||
to_tsvector(locations.location_description) ||
to_tsvector(coalesce(locations.builder_username, '')) ||
to_tsvector(worlds.world_name) ||
to_tsvector(coalesce((string_agg(biomes.biome_name, '')), '')) ||
to_tsvector(coalesce((string_agg(dangers.danger_name, '')), '')) ||
to_tsvector(coalesce((string_agg(tags.tag_name, ' ')), ''))
as document
from
locations
left join locations_biomes on
locations_biomes.location_id = locations.id
left join biomes on
biomes.id = locations_biomes.biome_id
left join locations_dangers on
locations_dangers.location_id = locations.id
left join dangers on
dangers.id = locations_dangers.danger_id
left join locations_tags on
locations_tags.location_id = locations.id
left join tags on
tags.id = locations_tags.tag_id
left join worlds on
worlds.id = locations.world_id
group by
locations.id,
locations.location_name,
locations.location_description,
locations.builder_username,
worlds.world_name
) l_search
where l_search.document @@ to_tsquery('swamp & mountain');
select lid, l_name, l_desc, l_dangers, l_tags, l_biomes from
(select
locations.id as lid,
locations.location_name as l_name,
locations.location_description as l_desc,
string_agg(biomes.biome_name, '') as l_biomes,
string_agg(dangers.danger_name, '') as l_dangers,
string_agg(tags.tag_name, ' ') as l_tags,
to_tsvector(locations.location_name) ||
to_tsvector(locations.location_description) ||
to_tsvector(coalesce(locations.builder_username, '')) ||
to_tsvector(worlds.world_name) ||
to_tsvector(coalesce((string_agg(biomes.biome_name, '')), '')) ||
to_tsvector(coalesce((string_agg(dangers.danger_name, '')), '')) ||
to_tsvector(coalesce((string_agg(tags.tag_name, ' ')), ''))
as document
from
locations
left join locations_biomes on
locations_biomes.location_id = locations.id
left join biomes on
biomes.id = locations_biomes.biome_id
left join locations_dangers on
locations_dangers.location_id = locations.id
left join dangers on
dangers.id = locations_dangers.danger_id
left join locations_tags on
locations_tags.location_id = locations.id
left join tags on
tags.id = locations_tags.tag_id
left join worlds on
worlds.id = locations.world_id
group by
locations.id,
locations.location_name,
locations.location_description,
locations.builder_username,
worlds.world_name
) l_search
where l_search.document @@ to_tsquery('swamp & mountain');
select
locations.id,
locations.location_name,
locations.location_description,
locations.builder_username,
worlds.world_name,
string_agg(distinct biomes.biome_name, ' '),
string_agg(distinct tags.tag_name, ' '),
string_agg(distinct dangers.danger_name, ' ')
from
locations
left join locations_biomes on
locations_biomes.location_id = locations.id
left join biomes on
biomes.id = locations_biomes.biome_id
left join locations_dangers on
locations_dangers.location_id = locations.id
left join dangers on
dangers.id = locations_dangers.danger_id
left join locations_tags on
locations_tags.location_id = locations.id
left join tags on
tags.id = locations_tags.tag_id
left join worlds on
worlds.id = locations.world_id
where
locations.id = 23
group by
locations.id,
locations.location_name,
locations.location_description,
locations.builder_username,
worlds.world_name
-- THIS ONE JOE
select
locations.id,
locations.location_name,
locations.location_description,
locations.builder_username,
locations.header_url,
worlds.world_name,
array_agg(distinct biomes.biome_name) biomes,
array_agg(distinct tags.tag_name) tags,
array_agg(distinct dangers.danger_name) dangers
from
locations
left join locations_biomes on
locations_biomes.location_id = locations.id
left join biomes on
biomes.id = locations_biomes.biome_id
left join locations_dangers on
locations_dangers.location_id = locations.id
left join dangers on
dangers.id = locations_dangers.danger_id
left join locations_tags on
locations_tags.location_id = locations.id
left join tags on
tags.id = locations_tags.tag_id
left join worlds on
worlds.id = locations.world_id
where
locations.id = 23
group by
locations.id,
locations.location_name,
locations.location_description,
locations.builder_username,
locations.header_url,
worlds.world_name
select
locations.id,
locations.location_name,
locations.location_description,
locations.builder_username,
locations.added_by,
locations.world_id,
images.id as image_id,
images.url as image_url,
images.image_name as image_name
from
locations
left join images on
images.entity_id = locations.id
and images.is_main = true
order by
locations.created_at desc
limit 5