Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

117 lines
3.7 KiB
Ruby
Raw Permalink Normal View History

2015-01-07 13:59:20 +01:00
#-- copyright
2020-01-15 11:31:26 +01:00
# OpenProject is an open source project management software.
# Copyright (C) the OpenProject GmbH
2015-01-07 13:59:20 +01:00
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License version 3.
#
# OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows:
2021-01-13 17:47:45 +01:00
# Copyright (C) 2006-2013 Jean-Philippe Lang
2015-01-07 13:59:20 +01:00
# Copyright (C) 2010-2013 the ChiliProject Team
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#
# See COPYRIGHT and LICENSE files for more details.
2015-01-07 13:59:20 +01:00
#++
require "roar/decorator"
require "roar/hypermedia"
2015-01-07 13:59:20 +01:00
require "roar/json/hal"
module API
module Decorators
class Single < ::Roar::Decorator
include ::Roar::JSON::HAL
include ::Roar::Hypermedia
2022-10-21 10:12:02 +02:00
include ::API::Decorators::SelfLink
include ::API::V3::Utilities::PathHelper
2015-01-07 13:59:20 +01:00
attr_reader :current_user, :embed_links
2021-02-11 16:02:18 +01:00
2015-01-07 13:59:20 +01:00
class_attribute :as_strategy
self.as_strategy = ::API::Utilities::CamelCasingStrategy.new
2015-01-07 13:59:20 +01:00
# Use this to create our own representers, giving them a chance to override the instantiation
# if desired.
# Explicitly forwards all arguments to new, to avoid having to override #create on subclasses
# such as collection
def self.create(...)
new(...)
end
def initialize(model, current_user:, embed_links: false)
2015-09-21 09:38:21 +02:00
raise "no represented object passed" if model_required? && model.nil?
@current_user = current_user
@embed_links = embed_links
2015-01-07 13:59:20 +01:00
super(model)
end
2015-01-09 16:26:58 +01:00
property :_type,
exec_context: :decorator,
2017-07-17 11:05:12 +02:00
render_nil: false,
2022-06-16 17:12:56 +03:00
writable: false
2015-01-09 16:26:58 +01:00
# List of associations that shall be eager_load'ed when rendering entities represented by this decorator.
# This is a hint for renderers of this representer.
2016-02-12 15:24:08 +01:00
class_attribute :to_eager_load
# List of associations that shall be preload'ed when rendering entities represented by this decorator.
# This is a hint for renderers of this representer.
class_attribute :to_preload
class_attribute :checked_permissions
2016-02-12 15:24:08 +01:00
2017-06-02 09:10:51 +02:00
# Override in subclasses to specify the JSON indicated "_type" of this representer
def _type; end
2015-01-09 16:26:58 +01:00
2015-03-31 14:39:47 +02:00
def call_or_send_to_represented(callable_or_name)
if callable_or_name.respond_to? :call
instance_exec(&callable_or_name)
else
represented.send(callable_or_name)
end
end
def call_or_use(callable_or_value)
if callable_or_value.respond_to? :call
instance_exec(&callable_or_value)
else
callable_or_value
end
end
def embed_link?(name)
case embed_links
when true
true
when false, nil
false
else
embed_links.include?(name)
end
end
2015-09-21 09:38:21 +02:00
# If a subclass does not depend on a model being passed to this class, it can override
# this method and return false. Otherwise it will be enforced that the model of each
# representer is non-nil.
def model_required?
true
end
2015-01-07 13:59:20 +01:00
end
end
end