mastodon/app/services/fetch_feed_service.rb

18 lines
328 B
Ruby
Raw Normal View History

2016-02-24 12:57:29 +01:00
class FetchFeedService < BaseService
# Fetch an account's feed and process it
# @param [Account] account
2016-02-20 22:53:20 +01:00
def call(account)
2016-02-22 16:00:20 +01:00
process_service.(http_client.get(account.remote_url), account)
end
private
def process_service
2016-02-24 12:57:29 +01:00
@process_service ||= ProcessFeedService.new
2016-02-22 16:00:20 +01:00
end
def http_client
HTTP
2016-02-20 22:53:20 +01:00
end
end