2017-02-11 00:20:42 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
class FollowService
|
2017-02-12 09:53:04 -08:00
|
|
|
class << self
|
|
|
|
def follow(entity, user, reason)
|
2017-02-11 00:20:42 -05:00
|
|
|
|
2017-09-03 09:07:29 -04:00
|
|
|
return unless user
|
2017-02-11 00:20:42 -05:00
|
|
|
|
2017-03-08 15:02:22 -05:00
|
|
|
return if (reason == 'created' || reason == 'contributed') && !should_auto_follow(entity, user, reason)
|
2017-03-08 18:50:39 +00:00
|
|
|
|
2017-02-12 09:53:04 -08:00
|
|
|
follow = Follow.where(followed: entity, user: user).first_or_create
|
2017-09-03 15:11:52 -04:00
|
|
|
follow.update_attribute('muted', false)
|
2017-02-12 09:53:04 -08:00
|
|
|
if FollowReason::REASONS.include?(reason) && !follow.follow_reason.read_attribute(reason)
|
|
|
|
follow.follow_reason.update_attribute(reason, true)
|
|
|
|
end
|
2017-02-11 00:20:42 -05:00
|
|
|
end
|
2017-02-16 13:42:35 +00:00
|
|
|
|
2017-02-12 09:53:04 -08:00
|
|
|
def unfollow(entity, user)
|
2017-09-03 15:11:52 -04:00
|
|
|
follow = Follow.where(followed: entity, user: user).first
|
|
|
|
follow.update_attribute('muted', true)
|
2017-02-12 09:53:04 -08:00
|
|
|
end
|
2017-02-16 13:42:35 +00:00
|
|
|
|
2017-02-12 09:53:04 -08: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 00:20:42 -05:00
|
|
|
end
|
|
|
|
end
|
2017-02-16 13:42:35 +00:00
|
|
|
|
2017-02-12 09:53:04 -08: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)
|
2017-09-03 15:11:52 -04:00
|
|
|
follow = Follow.where(followed: entity, user: user).first
|
|
|
|
return false if follow && follow.muted
|
2017-03-08 18:50:39 +00:00
|
|
|
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'
|
2017-03-09 14:36:24 -05:00
|
|
|
return user.settings.follow_map_on_contributed == '1'
|
2017-03-08 18:50:39 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2017-02-11 00:20:42 -05:00
|
|
|
end
|
|
|
|
end
|