@ -186,6 +186,13 @@ end
before_all do | env |
before_all do | env |
if env . request . cookies . has_key? ( " SID " )
if env . request . cookies . has_key? ( " SID " )
env . set " authorized " , true
env . set " authorized " , true
sid = env . request . cookies [ " SID " ] . value
env . set " sid " , sid
notifications = PG_DB . query_one? ( " SELECT cardinality(notifications) FROM users WHERE id = $1 " , sid , as : Int32 )
notifications || = 0
env . set " notifications " , notifications
else
else
env . set " authorized " , false
env . set " authorized " , false
end
end
@ -213,7 +220,7 @@ get "/watch" do |env|
authorized = env . get? " authorized "
authorized = env . get? " authorized "
if authorized
if authorized
sid = env . request. cookies [ " SID " ] . value
sid = env . get( " sid " ) . as ( String )
subscriptions = PG_DB . query_one ( " SELECT subscriptions FROM users WHERE id = $1 " , sid , as : Array ( String ) )
subscriptions = PG_DB . query_one ( " SELECT subscriptions FROM users WHERE id = $1 " , sid , as : Array ( String ) )
else
else
@ -580,7 +587,7 @@ get "/feed/subscriptions" do |env|
headers = HTTP :: Headers . new
headers = HTTP :: Headers . new
headers [ " Cookie " ] = env . request . headers [ " Cookie " ]
headers [ " Cookie " ] = env . request . headers [ " Cookie " ]
sid = env . request. cookies [ " SID " ] . value
sid = env . get( " sid " ) . as ( String )
client = get_client ( youtube_pool )
client = get_client ( youtube_pool )
user = get_user ( sid , client , headers , PG_DB )
user = get_user ( sid , client , headers , PG_DB )
@ -591,6 +598,8 @@ get "/feed/subscriptions" do |env|
videos = PG_DB . query_all ( " SELECT * FROM channel_videos WHERE ucid IN ( #{ args } ) \
videos = PG_DB . query_all ( " SELECT * FROM channel_videos WHERE ucid IN ( #{ args } ) \
ORDER BY published DESC LIMIT #{max_results} OFFSET #{offset}", user.subscriptions, as: ChannelVideo)
ORDER BY published DESC LIMIT #{max_results} OFFSET #{offset}", user.subscriptions, as: ChannelVideo)
env . set " notifications " , 0
templated " subscriptions "
templated " subscriptions "
else
else
env . redirect " / "
env . redirect " / "
@ -723,7 +732,7 @@ get "/subscription_ajax" do |env|
# Update user
# Update user
if client . post ( post_url , headers , post_req ) . status_code == 200
if client . post ( post_url , headers , post_req ) . status_code == 200
sid = env . request. cookies [ " SID " ] . value
sid = env . get( " sid " ) . as ( String )
case action
case action
when . starts_with? " action_create "
when . starts_with? " action_create "