about summary refs log tree commit diff
path: root/app/lib/activitypub/activity/reject.rb
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2017-08-10 22:33:12 +0200
committerGitHub <noreply@github.com>2017-08-10 22:33:12 +0200
commit81c1303cd6137c8c90794cc0bfdc1a0479eb2153 (patch)
treeb4b5a2f1036fab1b56ad2409f247f3e0dbdecaac /app/lib/activitypub/activity/reject.rb
parent4b8e4dca26666c7c0709bf5aa765764023da3bdf (diff)
Handle ActivityPub follows correctly (#4571)
* Handle ActivityPub follows correctly

ActivityPub follows are follow-requests. Always require an Accept.
If account is not locked, auto-accept.

* Handle ActivityPub Accept/Reject-Follow

* Fix wrong method

* Fix wrong class
Diffstat (limited to 'app/lib/activitypub/activity/reject.rb')
-rw-r--r--app/lib/activitypub/activity/reject.rb25
1 files changed, 25 insertions, 0 deletions
diff --git a/app/lib/activitypub/activity/reject.rb b/app/lib/activitypub/activity/reject.rb
new file mode 100644
index 000000000..78dbfd1e5
--- /dev/null
+++ b/app/lib/activitypub/activity/reject.rb
@@ -0,0 +1,25 @@
+# frozen_string_literal: true
+
+class ActivityPub::Activity::Reject < ActivityPub::Activity
+  def perform
+    case @object['type']
+    when 'Follow'
+      reject_follow
+    end
+  end
+
+  private
+
+  def reject_follow
+    target_account = account_from_uri(target_uri)
+
+    return if target_account.nil? || !target_account.local?
+
+    follow_request = FollowRequest.find_by(account: target_account, target_account: @account)
+    follow_request&.reject!
+  end
+
+  def target_uri
+    @target_uri ||= @object['object'].is_a?(String) ? @object['object'] : @object['object']['id']
+  end
+end