summaryrefslogtreecommitdiffstats
path: root/app/services/process_interaction_service.rb
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2017-04-05 21:41:50 +0200
committerEugen Rochko <eugen@zeonfederated.com>2017-04-05 21:43:10 +0200
commit5442083b3c44c731679fc489568bf7f70a807a39 (patch)
tree009c6f57e1707356fc2a78822bae7baf2321b405 /app/services/process_interaction_service.rb
parentbafbf63fcca81ae9dce3a40959b8a47e5fcfc6ac (diff)
Split SalmonWorker into smaller parts, move profile updating into another job
Diffstat (limited to 'app/services/process_interaction_service.rb')
-rw-r--r--app/services/process_interaction_service.rb10
1 files changed, 3 insertions, 7 deletions
diff --git a/app/services/process_interaction_service.rb b/app/services/process_interaction_service.rb
index d5f7b4b3cda..805ca5a2735 100644
--- a/app/services/process_interaction_service.rb
+++ b/app/services/process_interaction_service.rb
@@ -24,7 +24,7 @@ class ProcessInteractionService < BaseService
return if account.suspended?
if salmon.verify(envelope, account.keypair)
- update_remote_profile_service.call(xml.at_xpath('/xmlns:entry', xmlns: TagManager::XMLNS), account, true)
+ RemoteProfileUpdateWorker.perform_async(account.id, body.force_encoding('UTF-8'), true)
case verb(xml)
when :follow
@@ -114,7 +114,7 @@ class ProcessInteractionService < BaseService
return if status.nil?
- remove_status_service.call(status) if account.id == status.account_id
+ RemovalWorker.perform_async(status.id) if account.id == status.account_id
end
def favourite!(xml, from_account)
@@ -130,7 +130,7 @@ class ProcessInteractionService < BaseService
end
def add_post!(body, account)
- process_feed_service.call(body, account)
+ ProcessingWorker.perform_async(account.id, body.force_encoding('UTF-8'))
end
def status(xml)
@@ -153,10 +153,6 @@ class ProcessInteractionService < BaseService
@process_feed_service ||= ProcessFeedService.new
end
- def update_remote_profile_service
- @update_remote_profile_service ||= UpdateRemoteProfileService.new
- end
-
def remove_status_service
@remove_status_service ||= RemoveStatusService.new
end