2017-02-11 05:20:42 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
class FollowService
|
2017-02-12 17:53:04 +00:00
|
|
|
class << self
|
|
|
|
def follow(entity, user, reason)
|
2017-02-11 05:20:42 +00:00
|
|
|
|
2017-03-08 19:13:47 +00:00
|
|
|
return unless user && is_tester(user)
|
2017-02-11 05:20:42 +00:00
|
|
|
|
2017-03-08 18:50:39 +00:00
|
|
|
return unless should_auto_follow(entity, user, reason)
|
|
|
|
|
2017-02-12 17:53:04 +00:00
|
|
|
follow = Follow.where(followed: entity, user: user).first_or_create
|
|
|
|
if FollowReason::REASONS.include?(reason) && !follow.follow_reason.read_attribute(reason)
|
|
|
|
follow.follow_reason.update_attribute(reason, true)
|
|
|
|
end
|
2017-02-11 05:20:42 +00:00
|
|
|
end
|
2017-02-16 13:42:35 +00:00
|
|
|
|
2017-02-12 17:53:04 +00:00
|
|
|
def unfollow(entity, user)
|
|
|
|
Follow.where(followed: entity, user: user).destroy_all
|
|
|
|
end
|
2017-02-16 13:42:35 +00:00
|
|
|
|
2017-02-12 17:53:04 +00:00
|
|
|
def remove_reason(entity, user, reason)
|
|
|
|
return unless FollowReason::REASONS.include?(reason)
|
|
|
|
follow = Follow.where(followed: entity, user: user).first
|
|
|
|
if follow
|
|
|
|
follow.follow_reason.update_attribute(reason, false)
|
|
|
|
if !follow.follow_reason.has_reason
|
|
|
|
follow.destroy
|
|
|
|
end
|
2017-02-11 05:20:42 +00:00
|
|
|
end
|
|
|
|
end
|
2017-02-16 13:42:35 +00:00
|
|
|
|
2017-02-12 17:53:04 +00:00
|
|
|
protected
|
2017-02-16 13:42:35 +00:00
|
|
|
|
2017-03-08 18:50:39 +00:00
|
|
|
def should_auto_follow(entity, user, reason)
|
|
|
|
if entity.class == Topic
|
|
|
|
if reason == 'created'
|
|
|
|
return user.settings.follow_topic_on_created == '1'
|
|
|
|
elsif reason == 'contributed'
|
|
|
|
return user.settings.follow_topic_on_contributed == '1'
|
|
|
|
end
|
|
|
|
elsif entity.class == Map
|
|
|
|
if reason == 'created'
|
|
|
|
return user.settings.follow_map_on_created == '1'
|
|
|
|
elsif reason == 'contributed'
|
|
|
|
return user.settings.follow_map_contributed == '1'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-02-12 17:53:04 +00:00
|
|
|
def is_tester(user)
|
|
|
|
%w(connorturland@gmail.com devin@callysto.com chessscholar@gmail.com solaureum@gmail.com ishanshapiro@gmail.com).include?(user.email)
|
|
|
|
end
|
2017-02-11 05:20:42 +00:00
|
|
|
end
|
|
|
|
end
|