2016-11-15 15:56:29 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-09-10 14:21:17 +00:00
|
|
|
namespace :mastodon do
|
|
|
|
namespace :media do
|
|
|
|
desc 'Removes media attachments that have not been assigned to any status for longer than a day'
|
|
|
|
task clear: :environment do
|
2016-10-22 17:38:47 +00:00
|
|
|
MediaAttachment.where(status_id: nil).where('created_at < ?', 1.day.ago).find_each(&:destroy)
|
2016-09-10 14:21:17 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
namespace :push do
|
|
|
|
desc 'Unsubscribes from PuSH updates of feeds nobody follows locally'
|
|
|
|
task clear: :environment do
|
2016-10-10 01:40:08 +00:00
|
|
|
include RoutingHelper
|
|
|
|
|
2016-10-18 10:23:38 +00:00
|
|
|
Account.remote.without_followers.where.not(subscription_expires_at: nil).find_each do |a|
|
2016-09-19 23:10:51 +00:00
|
|
|
Rails.logger.debug "PuSH unsubscribing from #{a.acct}"
|
2016-09-20 00:43:20 +00:00
|
|
|
|
2016-09-19 23:53:30 +00:00
|
|
|
begin
|
2016-10-10 01:40:08 +00:00
|
|
|
a.subscription(api_subscription_url(a.id)).unsubscribe
|
2016-09-19 23:53:30 +00:00
|
|
|
rescue HTTP::Error, OpenSSL::SSL::SSLError
|
|
|
|
Rails.logger.debug "PuSH unsubscribing from #{a.acct} failed due to an HTTP or SSL error"
|
|
|
|
ensure
|
2016-09-20 00:43:20 +00:00
|
|
|
a.update!(secret: '', subscription_expires_at: nil)
|
2016-09-19 23:53:30 +00:00
|
|
|
end
|
2016-09-19 22:39:03 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
desc 'Re-subscribes to soon expiring PuSH subscriptions'
|
|
|
|
task refresh: :environment do
|
|
|
|
Account.expiring(1.day.from_now).find_each do |a|
|
2016-09-19 23:10:51 +00:00
|
|
|
Rails.logger.debug "PuSH re-subscribing to #{a.acct}"
|
2016-11-15 15:56:29 +00:00
|
|
|
SubscribeService.new.call(a)
|
2016-09-10 14:21:17 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
namespace :feeds do
|
2016-11-24 17:17:58 +00:00
|
|
|
desc 'Clear timelines of inactive users'
|
2016-09-10 14:21:17 +00:00
|
|
|
task clear: :environment do
|
2016-11-24 17:17:58 +00:00
|
|
|
User.where('current_sign_in_at < ?', 14.days.ago).find_each do |user|
|
|
|
|
Redis.current.del(FeedManager.instance.key(:home, user.account_id))
|
|
|
|
Redis.current.del(FeedManager.instance.key(:mentions, user.account_id))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
desc 'Clears all timelines so that they would be regenerated on next hit'
|
|
|
|
task clear_all: :environment do
|
2016-11-15 15:56:29 +00:00
|
|
|
Redis.current.keys('feed:*').each { |key| Redis.current.del(key) }
|
2016-09-10 14:21:17 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|