Properly escape email when creating view

This commit is contained in:
Omar Roth
2019-02-02 15:27:19 -06:00
parent d5c9b7dfe8
commit 9989c8100a
2 changed files with 2 additions and 2 deletions

View File

@@ -1033,7 +1033,7 @@ post "/login" do |env|
view_name = "subscriptions_#{sha256(user.email)[0..7]}"
PG_DB.exec("CREATE MATERIALIZED VIEW #{view_name} AS \
SELECT * FROM channel_videos WHERE \
ucid = ANY ((SELECT subscriptions FROM users WHERE email = '#{user.email}')::text[]) \
ucid = ANY ((SELECT subscriptions FROM users WHERE email = E'#{user.email.gsub("'", "\\'")}')::text[]) \
ORDER BY published DESC;")
if Kemal.config.ssl || CONFIG.https_only