-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata_manager.py
83 lines (69 loc) · 2.74 KB
/
data_manager.py
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
import db_connection
@db_connection.connection_handler
def get_song_places(cursor):
cursor.execute("""
SELECT * FROM places
""")
query_result = cursor.fetchall()
return query_result
@db_connection.connection_handler
def get_songs_without_slides(cursor):
cursor.execute("""
SELECT songs.id, title, lyrics
FROM songs LEFT JOIN slides s2 on songs.id = s2.song_id
WHERE s2.id IS NULL
ORDER BY songs.id;
""")
list_of_records = cursor.fetchall()
return list_of_records
@db_connection.connection_handler
def save_new_slide(cursor, dict_of_slide):
cursor.execute("""
INSERT INTO slides (song_id, slide_number, path)
VALUES (%(song_id)s, %(slide_number)s, %(path)s)
""",
dict_of_slide)
@db_connection.connection_handler
def get_songs_with_slides(cursor):
cursor.execute("""
SELECT DISTINCT songs.id, title, lyrics
FROM songs LEFT JOIN slides s2 on songs.id = s2.song_id
WHERE s2.id IS NOT NULL
ORDER BY songs.id;
""")
list_of_records = cursor.fetchall()
return list_of_records
@db_connection.connection_handler
def get_slide_paths_by_song_id(cursor, tuple_of_song_ids):
cursor.execute("""
SELECT path FROM slides
JOIN unnest(%(array_of_song_ids)s::int[])
WITH ORDINALITY t(id, ord)
ON t.id = slides.song_id
WHERE song_id IN %(list_of_song_ids)s
ORDER BY t.ord, slide_number;
""",
{"array_of_song_ids": list(tuple_of_song_ids),
"list_of_song_ids": tuple_of_song_ids})
query_result = cursor.fetchall()
list_of_slide_paths = [row["path"] for row in query_result]
return list_of_slide_paths
@db_connection.connection_handler
def get_song_lyrics(cursor, song_id):
cursor.execute("""
SELECT id AS song_id, title, lyrics FROM songs
WHERE id = %(song_id)s;
""",
{"song_id": song_id})
result = cursor.fetchone()
return result
@db_connection.connection_handler
def get_song_index_details(cursor, song_id):
cursor.execute("""
SELECT short_name, song_number
FROM songs JOIN book_index i on songs.id = i.song_id JOIN books b on i.book_id = b.id
WHERE songs.id = %(song_id)s;
""",
{"song_id": song_id})
records = cursor.fetchall()
return records