forked from cybrespace/mastodon
Improve filtering of public/hashtag timelines, both in backlog and real-time
This commit is contained in:
parent
c5e03a2e0d
commit
17903c6dae
|
@ -14,7 +14,7 @@ module ApplicationCable
|
||||||
end
|
end
|
||||||
|
|
||||||
def filter?(status)
|
def filter?(status)
|
||||||
!status.nil? && (current_user.account.blocking?(status.account) || (status.reblog? && current_user.account.blocking?(status.reblog.account)))
|
!status.nil? && FeedManager.instance.filter?(:public, status, current_user.account)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -16,7 +16,7 @@ class Api::V1::AccountsController < ApiController
|
||||||
|
|
||||||
def following
|
def following
|
||||||
results = Follow.where(account: @account).paginate_by_max_id(DEFAULT_ACCOUNTS_LIMIT, params[:max_id], params[:since_id])
|
results = Follow.where(account: @account).paginate_by_max_id(DEFAULT_ACCOUNTS_LIMIT, params[:max_id], params[:since_id])
|
||||||
@accounts = Account.where(id: results.map(&:account_id)).with_counters.to_a
|
@accounts = Account.where(id: results.map(&:target_account_id)).with_counters.to_a
|
||||||
|
|
||||||
next_path = following_api_v1_account_url(max_id: results.last.id) if results.size == DEFAULT_ACCOUNTS_LIMIT
|
next_path = following_api_v1_account_url(max_id: results.last.id) if results.size == DEFAULT_ACCOUNTS_LIMIT
|
||||||
prev_path = following_api_v1_account_url(since_id: results.first.id) if results.size > 0
|
prev_path = following_api_v1_account_url(since_id: results.first.id) if results.size > 0
|
||||||
|
|
|
@ -14,6 +14,8 @@ class FeedManager
|
||||||
filter_from_home?(status, receiver)
|
filter_from_home?(status, receiver)
|
||||||
elsif timeline_type == :mentions
|
elsif timeline_type == :mentions
|
||||||
filter_from_mentions?(status, receiver)
|
filter_from_mentions?(status, receiver)
|
||||||
|
elsif timeline_type == :public
|
||||||
|
filter_from_public?(status, receiver)
|
||||||
else
|
else
|
||||||
false
|
false
|
||||||
end
|
end
|
||||||
|
@ -80,4 +82,16 @@ class FeedManager
|
||||||
should_filter = should_filter || receiver.blocking?(status.account) # or it's from someone I blocked
|
should_filter = should_filter || receiver.blocking?(status.account) # or it's from someone I blocked
|
||||||
should_filter
|
should_filter
|
||||||
end
|
end
|
||||||
|
|
||||||
|
def filter_from_public?(status, receiver)
|
||||||
|
should_filter = receiver.blocking?(status.account)
|
||||||
|
|
||||||
|
if status.reply? && !status.thread.account.nil?
|
||||||
|
should_filter = should_filter || receiver.blocking?(status.thread.account)
|
||||||
|
elsif status.reblog?
|
||||||
|
should_filter = should_filter || receiver.blocking?(status.reblog.account)
|
||||||
|
end
|
||||||
|
|
||||||
|
should_filter
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
|
@ -88,12 +88,10 @@ class Status < ApplicationRecord
|
||||||
end
|
end
|
||||||
|
|
||||||
def as_public_timeline(account = nil)
|
def as_public_timeline(account = nil)
|
||||||
query = joins('LEFT OUTER JOIN statuses AS reblogs ON statuses.reblog_of_id = reblogs.id')
|
query = joins('LEFT OUTER JOIN accounts ON statuses.account_id = accounts.id').where('accounts.silenced = FALSE')
|
||||||
.joins('LEFT OUTER JOIN accounts ON statuses.account_id = accounts.id')
|
|
||||||
.where('accounts.silenced = FALSE')
|
|
||||||
|
|
||||||
unless account.nil?
|
unless account.nil?
|
||||||
query = query.where('(reblogs.account_id IS NULL OR reblogs.account_id NOT IN (SELECT target_account_id FROM blocks WHERE account_id = ?)) AND statuses.account_id NOT IN (SELECT target_account_id FROM blocks WHERE account_id = ?)', account.id, account.id)
|
query = filter_timeline(query, account)
|
||||||
end
|
end
|
||||||
|
|
||||||
query.with_includes.with_counters
|
query.with_includes.with_counters
|
||||||
|
@ -101,12 +99,11 @@ class Status < ApplicationRecord
|
||||||
|
|
||||||
def as_tag_timeline(tag, account = nil)
|
def as_tag_timeline(tag, account = nil)
|
||||||
query = tag.statuses
|
query = tag.statuses
|
||||||
.joins('LEFT OUTER JOIN statuses AS reblogs ON statuses.reblog_of_id = reblogs.id')
|
|
||||||
.joins('LEFT OUTER JOIN accounts ON statuses.account_id = accounts.id')
|
.joins('LEFT OUTER JOIN accounts ON statuses.account_id = accounts.id')
|
||||||
.where('accounts.silenced = FALSE')
|
.where('accounts.silenced = FALSE')
|
||||||
|
|
||||||
unless account.nil?
|
unless account.nil?
|
||||||
query = query.where('(reblogs.account_id IS NULL OR reblogs.account_id NOT IN (SELECT target_account_id FROM blocks WHERE account_id = ?)) AND statuses.account_id NOT IN (SELECT target_account_id FROM blocks WHERE account_id = ?)', account.id, account.id)
|
query = filter_timeline(query, account)
|
||||||
end
|
end
|
||||||
|
|
||||||
query.with_includes.with_counters
|
query.with_includes.with_counters
|
||||||
|
@ -119,6 +116,19 @@ class Status < ApplicationRecord
|
||||||
def reblogs_map(status_ids, account_id)
|
def reblogs_map(status_ids, account_id)
|
||||||
select('reblog_of_id').where(reblog_of_id: status_ids).where(account_id: account_id).map { |s| [s.reblog_of_id, true] }.to_h
|
select('reblog_of_id').where(reblog_of_id: status_ids).where(account_id: account_id).map { |s| [s.reblog_of_id, true] }.to_h
|
||||||
end
|
end
|
||||||
|
|
||||||
|
private
|
||||||
|
|
||||||
|
def filter_timeline(query, account)
|
||||||
|
blocked = Block.where(account: account).pluck(:target_account_id)
|
||||||
|
|
||||||
|
query
|
||||||
|
.joins('LEFT OUTER JOIN statuses AS parents ON statuses.in_reply_to_id = parents.id')
|
||||||
|
.joins('LEFT OUTER JOIN statuses AS reblogs ON statuses.reblog_of_id = reblogs.id')
|
||||||
|
.where('parents.account_id NOT IN (?)', blocked)
|
||||||
|
.where('statuses.account_id NOT IN (?)', blocked)
|
||||||
|
.where('(reblogs.id IS NULL OR reblogs.account_id NOT IN (?))', blocked)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
before_validation do
|
before_validation do
|
||||||
|
|
Loading…
Reference in New Issue