mirror of
https://github.com/mastodon/mastodon.git
synced 2026-03-25 03:50:00 -05:00
Some checks failed
Check i18n / check-i18n (push) Waiting to run
Chromatic / Run Chromatic (push) Waiting to run
CodeQL / Analyze (actions) (push) Waiting to run
CodeQL / Analyze (javascript) (push) Waiting to run
CodeQL / Analyze (ruby) (push) Waiting to run
Check formatting / lint (push) Waiting to run
JavaScript Linting / lint (push) Waiting to run
JavaScript Testing / test (push) Waiting to run
Ruby Testing / build (production) (push) Waiting to run
Ruby Testing / build (test) (push) Waiting to run
Ruby Testing / test (.ruby-version) (push) Blocked by required conditions
Ruby Testing / test (3.2) (push) Blocked by required conditions
Ruby Testing / test (3.3) (push) Blocked by required conditions
Ruby Testing / ImageMagick tests (.ruby-version) (push) Blocked by required conditions
Ruby Testing / ImageMagick tests (3.2) (push) Blocked by required conditions
Ruby Testing / ImageMagick tests (3.3) (push) Blocked by required conditions
Ruby Testing / End to End testing (.ruby-version) (push) Blocked by required conditions
Ruby Testing / End to End testing (3.2) (push) Blocked by required conditions
Ruby Testing / End to End testing (3.3) (push) Blocked by required conditions
Ruby Testing / Elastic Search integration testing (.ruby-version, docker.elastic.co/elasticsearch/elasticsearch:7.17.13) (push) Blocked by required conditions
Ruby Testing / Elastic Search integration testing (.ruby-version, docker.elastic.co/elasticsearch/elasticsearch:8.10.2) (push) Blocked by required conditions
Ruby Testing / Elastic Search integration testing (.ruby-version, opensearchproject/opensearch:2) (push) Blocked by required conditions
Ruby Testing / Elastic Search integration testing (3.2, docker.elastic.co/elasticsearch/elasticsearch:7.17.13) (push) Blocked by required conditions
Ruby Testing / Elastic Search integration testing (3.3, docker.elastic.co/elasticsearch/elasticsearch:7.17.13) (push) Blocked by required conditions
Bundler Audit / security (push) Has been cancelled
CSS Linting / lint (push) Has been cancelled
Haml Linting / lint (push) Has been cancelled
Ruby Linting / lint (push) Has been cancelled
Historical data migration test / test (14-alpine) (push) Has been cancelled
Historical data migration test / test (15-alpine) (push) Has been cancelled
Historical data migration test / test (16-alpine) (push) Has been cancelled
Historical data migration test / test (17-alpine) (push) Has been cancelled
43 lines
1.8 KiB
Ruby
43 lines
1.8 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
module Status::FetchRepliesConcern
|
|
extend ActiveSupport::Concern
|
|
|
|
# debounce fetching all replies to minimize DoS
|
|
# Period to wait between fetching replies
|
|
FETCH_REPLIES_COOLDOWN_MINUTES = 15.minutes
|
|
# Period to wait after a post is first created before fetching its replies
|
|
FETCH_REPLIES_INITIAL_WAIT_MINUTES = 5.minutes
|
|
|
|
included do
|
|
scope :created_recently, -> { where(created_at: FETCH_REPLIES_INITIAL_WAIT_MINUTES.ago..) }
|
|
scope :not_created_recently, -> { where(created_at: ..FETCH_REPLIES_INITIAL_WAIT_MINUTES.ago) }
|
|
scope :fetched_recently, -> { where(fetched_replies_at: FETCH_REPLIES_COOLDOWN_MINUTES.ago..) }
|
|
scope :not_fetched_recently, -> { where(fetched_replies_at: [nil, ..FETCH_REPLIES_COOLDOWN_MINUTES.ago]) }
|
|
|
|
scope :should_not_fetch_replies, -> { local.or(created_recently.or(fetched_recently)) }
|
|
scope :should_fetch_replies, -> { remote.not_created_recently.not_fetched_recently }
|
|
|
|
# statuses for which we won't receive update or deletion actions,
|
|
# and should update when fetching replies
|
|
# Status from an account which either
|
|
# a) has only remote followers
|
|
# b) has local follows that were created after the last update time, or
|
|
# c) has no known followers
|
|
scope :unsubscribed, lambda {
|
|
remote.merge(
|
|
Status.left_outer_joins(account: :followers).where.not(followers_accounts: { domain: nil })
|
|
.or(where.not('follows.created_at < statuses.updated_at'))
|
|
.or(where(follows: { id: nil }))
|
|
)
|
|
}
|
|
end
|
|
|
|
def should_fetch_replies?
|
|
# we aren't brand new, and we haven't fetched replies since the debounce window
|
|
!local? && distributable? && created_at <= FETCH_REPLIES_INITIAL_WAIT_MINUTES.ago && (
|
|
fetched_replies_at.nil? || fetched_replies_at <= FETCH_REPLIES_COOLDOWN_MINUTES.ago
|
|
)
|
|
end
|
|
end
|