diaspora/app/presenters/base_presenter.rb
2017-09-17 19:29:15 +02:00

38 lines
773 B
Ruby

# frozen_string_literal: true
class BasePresenter
attr_reader :current_user
include Rails.application.routes.url_helpers
class << self
def new(*args)
return NilPresenter.new if args[0].nil?
super *args
end
def as_collection(collection, method=:as_json, *args)
collection.map{|object| self.new(object, *args).send(method) }
end
end
def initialize(presentable, curr_user=nil)
@presentable = presentable
@current_user = curr_user
end
def method_missing(method, *args)
@presentable.public_send(method, *args)
end
class NilPresenter
def method_missing(method, *args)
nil
end
end
private
def default_url_options
{host: AppConfig.pod_uri.host, port: AppConfig.pod_uri.port}
end
end