mirror of
https://github.com/iv-org/invidious.git
synced 2024-11-10 10:18:24 +00:00
Trigger feed update when modifying subscriptions
This commit is contained in:
parent
b016a60a75
commit
bb1ed902a9
@ -1700,6 +1700,12 @@ post "/subscription_ajax" do |env|
|
|||||||
PG_DB.exec("UPDATE users SET subscriptions = array_remove(subscriptions,$1) WHERE email = $2", channel_id, email)
|
PG_DB.exec("UPDATE users SET subscriptions = array_remove(subscriptions,$1) WHERE email = $2", channel_id, email)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
payload = {
|
||||||
|
"email" => user.email,
|
||||||
|
"action" => "refresh",
|
||||||
|
}.to_json
|
||||||
|
PG_DB.exec("NOTIFY feeds, E'#{payload}'")
|
||||||
|
|
||||||
if redirect
|
if redirect
|
||||||
env.redirect referer
|
env.redirect referer
|
||||||
else
|
else
|
||||||
@ -1945,6 +1951,12 @@ post "/data_control" do |env|
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
payload = {
|
||||||
|
"email" => user.email,
|
||||||
|
"action" => "refresh",
|
||||||
|
}.to_json
|
||||||
|
PG_DB.exec("NOTIFY feeds, E'#{payload}'")
|
||||||
end
|
end
|
||||||
|
|
||||||
env.redirect referer
|
env.redirect referer
|
||||||
@ -4490,6 +4502,12 @@ post "/api/v1/auth/subscriptions/:ucid" do |env|
|
|||||||
if !user.subscriptions.includes? ucid
|
if !user.subscriptions.includes? ucid
|
||||||
get_channel(ucid, PG_DB, false, false)
|
get_channel(ucid, PG_DB, false, false)
|
||||||
PG_DB.exec("UPDATE users SET subscriptions = array_append(subscriptions,$1) WHERE email = $2", ucid, user.email)
|
PG_DB.exec("UPDATE users SET subscriptions = array_append(subscriptions,$1) WHERE email = $2", ucid, user.email)
|
||||||
|
|
||||||
|
payload = {
|
||||||
|
"email" => user.email,
|
||||||
|
"action" => "refresh",
|
||||||
|
}.to_json
|
||||||
|
PG_DB.exec("NOTIFY feeds, E'#{payload}'")
|
||||||
end
|
end
|
||||||
|
|
||||||
# For Google accounts, access tokens don't have enough information to
|
# For Google accounts, access tokens don't have enough information to
|
||||||
@ -4506,6 +4524,11 @@ delete "/api/v1/auth/subscriptions/:ucid" do |env|
|
|||||||
ucid = env.params.url["ucid"]
|
ucid = env.params.url["ucid"]
|
||||||
|
|
||||||
PG_DB.exec("UPDATE users SET subscriptions = array_remove(subscriptions,$1) WHERE email = $2", ucid, user.email)
|
PG_DB.exec("UPDATE users SET subscriptions = array_remove(subscriptions,$1) WHERE email = $2", ucid, user.email)
|
||||||
|
payload = {
|
||||||
|
"email" => user.email,
|
||||||
|
"action" => "refresh",
|
||||||
|
}.to_json
|
||||||
|
PG_DB.exec("NOTIFY feeds, E'#{payload}'")
|
||||||
|
|
||||||
env.response.status_code = 204
|
env.response.status_code = 204
|
||||||
end
|
end
|
||||||
|
Loading…
Reference in New Issue
Block a user