16 lines
483 B
Ruby
16 lines
483 B
Ruby
# Copyright (c) 2010-2012, Diaspora Inc. This file is
|
|
# licensed under the Affero General Public License version 3 or later. See
|
|
# the COPYRIGHT file.
|
|
|
|
module Jobs
|
|
class FetchWebfinger < Base
|
|
@queue = :socket_webfinger
|
|
|
|
def self.perform(account)
|
|
person = Webfinger.new(account).fetch
|
|
|
|
# also, schedule to fetch a few public posts from that person
|
|
Resque.enqueue(Jobs::FetchPublicPosts, person.diaspora_handle) unless person.nil?
|
|
end
|
|
end
|
|
end
|