Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dispatcher.rb « postzord « lib - github.com/diaspora/diaspora.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7b3c5255bdf9bd459c63b5a74284a06abf72fc2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#   Copyright (c) 2011, Diaspora Inc.  This file is
#   licensed under the Affero General Public License version 3 or later.  See
#   the COPYRIGHT file.


class Postzord::Dispatcher
  require File.join(Rails.root, 'lib/postzord/dispatcher/private')
  #require File.join(Rails.root, 'lib/postzord/dispatcher/public')

  attr_reader :zord
  delegate :post, :to => :zord

  def initialize(user, object, opts={})
    unless object.respond_to? :to_diaspora_xml
      raise 'this object does not respond_to? to_diaspora xml.  try including Diaspora::Webhooks into your object'
    end

    #if object.respond_to?(:public) && object.public?
    #  Postzord::Dispatcher::Public.new(user, object, opts)
    #else
     @zord =  Postzord::Dispatcher::Private.new(user, object, opts)
    #end
  end
end