docbrown/app/labor/rate_limit_checker.rb
rhymes e588fa7ece Code cleanups (#659)
* Initial automatic cleanup with rubocop

* Fix syntax error introduced by rubocop

* Cleanup seeds file

* Cleanup lib folder

* Exclude bin folder because it contains auto generated files

* Make Rubocop a little bit more chatty

* Block length should not include comments in the count

* Cleanup config folder

* Cleanup specs

* Updated Rubocop version and generated a todo file

* Fix broken ArticlesApi spec

* Fix tests

* Restored rubocop pre-commit hook
2018-08-07 11:00:13 -04:00

39 lines
1.1 KiB
Ruby

class RateLimitChecker
attr_accessor :user
def initialize(user = nil)
@user = user
end
def limit_by_situation(situation)
result = false
result = case situation
when "comment_creation"
user.comments.where("created_at > ?", 30.seconds.ago).size > 9
when "published_article_creation"
user.articles.
where(published: true).
where("created_at > ?", 30.seconds.ago).size > 9
else
false
end
ping_admins if result == true
result
end
def limit_by_email_recipient_address(address)
# This is related to the recipient, not the "user" initiator, like in situation.
EmailMessage.where(to: address).
where("sent_at > ?", 2.minutes.ago).size > 5
end
def ping_admins
return unless user
SlackBot.ping(
"Rate limit exceeded. https://dev.to#{user.path}",
channel: "abuse-reports",
username: "rate_limit",
icon_emoji: ":hand:",
)
end
handle_asynchronously :ping_admins
end