The code powering m.abunchtell.com https://m.abunchtell.com
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 

85 строки
3.1 KiB

  1. # frozen_string_literal: true
  2. namespace :mastodon do
  3. task make_admin: :environment do
  4. include RoutingHelper
  5. user = Account.find_local(ENV.fetch('USERNAME')).user
  6. user.update(admin: true)
  7. puts "Congrats! #{user.account.username} is now an admin. \\o/\nNavigate to #{admin_settings_url} to get started"
  8. end
  9. namespace :media do
  10. desc 'Removes media attachments that have not been assigned to any status for longer than a day'
  11. task clear: :environment do
  12. MediaAttachment.where(status_id: nil).where('created_at < ?', 1.day.ago).find_each(&:destroy)
  13. end
  14. desc 'Remove media attachments attributed to silenced accounts'
  15. task remove_silenced: :environment do
  16. MediaAttachment.where(account: Account.silenced).find_each(&:destroy)
  17. end
  18. end
  19. namespace :push do
  20. desc 'Unsubscribes from PuSH updates of feeds nobody follows locally'
  21. task clear: :environment do
  22. Account.remote.without_followers.where.not(subscription_expires_at: nil).find_each do |a|
  23. Rails.logger.debug "PuSH unsubscribing from #{a.acct}"
  24. UnsubscribeService.new.call(a)
  25. end
  26. end
  27. desc 'Re-subscribes to soon expiring PuSH subscriptions'
  28. task refresh: :environment do
  29. Account.expiring(1.day.from_now).find_each do |a|
  30. Rails.logger.debug "PuSH re-subscribing to #{a.acct}"
  31. SubscribeService.new.call(a)
  32. end
  33. end
  34. end
  35. namespace :feeds do
  36. desc 'Clear timelines of inactive users'
  37. task clear: :environment do
  38. User.confirmed.where('current_sign_in_at < ?', 14.days.ago).find_each do |user|
  39. Redis.current.del(FeedManager.instance.key(:home, user.account_id))
  40. end
  41. end
  42. desc 'Clears all timelines so that they would be regenerated on next hit'
  43. task clear_all: :environment do
  44. Redis.current.keys('feed:*').each { |key| Redis.current.del(key) }
  45. end
  46. end
  47. namespace :emails do
  48. desc 'Send out digest e-mails'
  49. task digest: :environment do
  50. User.confirmed.joins(:account).where(accounts: { silenced: false, suspended: false }).where('current_sign_in_at < ?', 20.days.ago).find_each do |user|
  51. DigestMailerWorker.perform_async(user.id)
  52. end
  53. end
  54. end
  55. namespace :maintenance do
  56. desc 'Update counter caches'
  57. task update_counter_caches: :environment do
  58. Rails.logger.debug 'Updating counter caches for accounts...'
  59. Account.unscoped.select('id').find_in_batches do |batch|
  60. Account.where(id: batch.map(&:id)).update_all('statuses_count = (select count(*) from statuses where account_id = accounts.id), followers_count = (select count(*) from follows where target_account_id = accounts.id), following_count = (select count(*) from follows where account_id = accounts.id)')
  61. end
  62. Rails.logger.debug 'Updating counter caches for statuses...'
  63. Status.unscoped.select('id').find_in_batches do |batch|
  64. Status.where(id: batch.map(&:id)).update_all('favourites_count = (select count(*) from favourites where favourites.status_id = statuses.id), reblogs_count = (select count(*) from statuses as reblogs where reblogs.reblog_of_id = statuses.id)')
  65. end
  66. Rails.logger.debug 'Done!'
  67. end
  68. end
  69. end