You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
137 lines
3.1 KiB
137 lines
3.1 KiB
# frozen_string_literal: true |
|
|
|
class PublicFeed |
|
# @param [Account] account |
|
# @param [Hash] options |
|
# @option [Boolean] :with_replies |
|
# @option [Boolean] :with_reblogs |
|
# @option [Boolean] :local |
|
# @option [Boolean] :remote |
|
# @option [Boolean] :only_media |
|
def initialize(account, options = {}) |
|
@account = account |
|
@options = options |
|
end |
|
|
|
# @param [Integer] limit |
|
# @param [Integer] max_id |
|
# @param [Integer] since_id |
|
# @param [Integer] min_id |
|
# @return [Array<Status>] |
|
def get(limit, max_id = nil, since_id = nil, min_id = nil) |
|
return [] if incompatible_feed_settings? |
|
|
|
scope = public_scope |
|
|
|
scope.merge!(without_replies_scope) unless with_replies? |
|
scope.merge!(without_reblogs_scope) unless with_reblogs? |
|
scope.merge!(local_only_scope) if local_only? |
|
scope.merge!(remote_only_scope) if remote_only? |
|
if account? |
|
scope.merge!(account_filters_scope) |
|
else |
|
scope.merge!(instance_only_statuses_scope) |
|
end |
|
scope.merge!(media_only_scope) if media_only? |
|
scope.merge!(language_scope) if account&.chosen_languages.present? |
|
|
|
scope.to_a_paginated_by_id(limit, max_id: max_id, since_id: since_id, min_id: min_id) |
|
end |
|
|
|
private |
|
|
|
attr_reader :account, :options |
|
|
|
def incompatible_feed_settings? |
|
(local_only? && !user_has_access_to_feed?(local_feed_setting)) || (remote_only? && !user_has_access_to_feed?(remote_feed_setting)) |
|
end |
|
|
|
def user_has_access_to_feed?(setting) |
|
case setting |
|
when 'public' |
|
true |
|
when 'authenticated' |
|
@account&.user&.functional? |
|
when 'disabled' |
|
@account&.user&.can?(:view_feeds) |
|
end |
|
end |
|
|
|
def with_reblogs? |
|
options[:with_reblogs] |
|
end |
|
|
|
def with_replies? |
|
options[:with_replies] |
|
end |
|
|
|
def local_feed_setting |
|
Setting.local_live_feed_access |
|
end |
|
|
|
def remote_feed_setting |
|
Setting.remote_live_feed_access |
|
end |
|
|
|
def local_only? |
|
(options[:local] && !options[:remote]) || !user_has_access_to_feed?(remote_feed_setting) |
|
end |
|
|
|
def without_local_only? |
|
options[:without_local_only] |
|
end |
|
|
|
def remote_only? |
|
(options[:remote] && !options[:local]) || !user_has_access_to_feed?(local_feed_setting) |
|
end |
|
|
|
def account? |
|
account.present? |
|
end |
|
|
|
def media_only? |
|
options[:only_media] |
|
end |
|
|
|
def public_scope |
|
Status.public_visibility.joins(:account).merge(Account.without_suspended.without_silenced) |
|
end |
|
|
|
def local_only_scope |
|
Status.local |
|
end |
|
|
|
def remote_only_scope |
|
Status.remote |
|
end |
|
|
|
def without_local_only_scope |
|
Status.without_local_only |
|
end |
|
|
|
def without_replies_scope |
|
Status.without_replies |
|
end |
|
|
|
def without_reblogs_scope |
|
Status.without_reblogs |
|
end |
|
|
|
def media_only_scope |
|
Status.joins(:media_attachments).group(:id) |
|
end |
|
|
|
def instance_only_statuses_scope |
|
Status.where(local_only: [false, nil]) |
|
end |
|
|
|
def language_scope |
|
Status.where(language: account.chosen_languages) |
|
end |
|
|
|
def account_filters_scope |
|
Status.not_excluded_by_account(account).tap do |scope| |
|
scope.merge!(Status.not_domain_blocked_by_account(account)) unless local_only? |
|
end |
|
end |
|
end
|
|
|