about summary refs log tree commit diff
path: root/app/services/unfollow_service.rb
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2016-02-24 12:57:29 +0100
committerEugen Rochko <eugen@zeonfederated.com>2016-02-24 12:57:29 +0100
commitfa7868675d0952f8e4e1aa2f6b77586bb56de2c1 (patch)
tree33b79c306943ade9c5bc49a06cfedf1e2aee231a /app/services/unfollow_service.rb
parent10eb47a33e2f0c7f0eba5302319c4321db41294c (diff)
Send Salmon interactions
Diffstat (limited to 'app/services/unfollow_service.rb')
-rw-r--r--app/services/unfollow_service.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/app/services/unfollow_service.rb b/app/services/unfollow_service.rb
new file mode 100644
index 000000000..039838d32
--- /dev/null
+++ b/app/services/unfollow_service.rb
@@ -0,0 +1,15 @@
+class UnfollowService < BaseService
+  # Unfollow and notify the remote user
+  # @param [Account] source_account Where to unfollow from
+  # @param [Account] target_account Which to unfollow
+  def call(source_account, target_account)
+    follow = source_account.unfollow!(target_account)
+    send_interaction_service.(follow.stream_entry, target_account) unless target_account.local?
+  end
+
+  private
+
+  def send_interaction_service
+    @send_interaction_service ||= SendInteractionService.new
+  end
+end