0
0
Fork 0

Fixing FanOutOnWriteService, fixing Sidekiq not having enough DB connections

in the pool, adding a throttle of 60rpm per IP, adding mini profiler, adding
admin status to users
This commit is contained in:
Eugen Rochko 2016-03-25 14:12:24 +01:00
parent 8eeec389c1
commit e24bfbde1a
10 changed files with 36 additions and 13 deletions

View file

@ -2,4 +2,11 @@ class ApplicationController < ActionController::Base
# Prevent CSRF attacks by raising an exception.
# For APIs, you may want to use :null_session instead.
protect_from_forgery with: :exception
# Profiling
before_action do
if current_user && current_user.admin?
Rack::MiniProfiler.authorize_request
end
end
end

View file

@ -6,6 +6,7 @@ class FeedManager
end
def self.filter_status?(status, follower)
replied_to_user = status.reply? ? status.thread.account : nil
(status.reply? && !(follower.id = replied_to_user.id || follower.following?(replied_to_user)))
end
end

View file

@ -7,4 +7,8 @@ class User < ActiveRecord::Base
validates :account, presence: true
has_many :oauth_applications, class_name: 'Doorkeeper::Application', as: :owner
def admin?
self.admin
end
end

View file

@ -3,7 +3,7 @@ class FanOutOnWriteService < BaseService
# @param [Status] status
def call(status)
deliver_to_self(status) if status.account.local?
deliver_to_followers(status, status.reply? ? status.thread.account : nil)
deliver_to_followers(status)
deliver_to_mentioned(status)
end
@ -13,7 +13,7 @@ class FanOutOnWriteService < BaseService
push(:home, status.account.id, status)
end
def deliver_to_followers(status, replied_to_user)
def deliver_to_followers(status)
status.account.followers.each do |follower|
next if !follower.local? || FeedManager.filter_status?(status, follower)
push(:home, follower.id, status)