module Diaspora
module Webhooks
def self.included(klass)
klass.class_eval do
after_save :notify_friends
@@queue = MessageHandler.new
def notify_friends
if self.owner == User.first.email
xml = Post.build_xml_for(self)
@@queue.add_post_request( friends_with_permissions, xml )
@@queue.process
end
end
def prep_webhook
"#{self.to_xml.to_s}"
end
def friends_with_permissions
Friend.only(:url).map{|x| x = x.url + "/receive/"}
end
def self.build_xml_for(posts)
xml = ""
posts.each {|x| xml << x.prep_webhook}
xml = xml + ""
end
end
end
end
end