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.
|
2024-07-30 13:42:36 +02:00
|
|
|
# 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.
|
|
|
|
|
#
|
2021-09-02 21:49:06 +02:00
|
|
|
# See COPYRIGHT and LICENSE files for more details.
|
2015-01-07 13:59:20 +01:00
|
|
|
#++
|
|
|
|
|
|
|
|
|
|
require "roar/decorator"
|
2015-03-23 16:37:17 +01:00
|
|
|
require "roar/hypermedia"
|
2015-01-07 13:59:20 +01:00
|
|
|
require "roar/json/hal"
|
|
|
|
|
|
|
|
|
|
module API
|
|
|
|
|
module Decorators
|
2015-03-23 16:37:17 +01:00
|
|
|
class Single < ::Roar::Decorator
|
|
|
|
|
include ::Roar::JSON::HAL
|
|
|
|
|
include ::Roar::Hypermedia
|
2022-10-21 10:12:02 +02:00
|
|
|
include ::API::Decorators::SelfLink
|
2015-03-23 16:37:17 +01:00
|
|
|
include ::API::V3::Utilities::PathHelper
|
2015-01-07 13:59:20 +01:00
|
|
|
|
2015-09-02 10:58:54 +02: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
|
2015-03-23 16:37:17 +01:00
|
|
|
self.as_strategy = ::API::Utilities::CamelCasingStrategy.new
|
2015-01-07 13:59:20 +01:00
|
|
|
|
2015-09-02 11:40:27 +02:00
|
|
|
# Use this to create our own representers, giving them a chance to override the instantiation
|
|
|
|
|
# if desired.
|
2022-02-15 10:10:53 +01:00
|
|
|
# Explicitly forwards all arguments to new, to avoid having to override #create on subclasses
|
|
|
|
|
# such as collection
|
|
|
|
|
def self.create(...)
|
|
|
|
|
new(...)
|
2015-09-02 11:40:27 +02:00
|
|
|
end
|
|
|
|
|
|
2015-09-02 10:58:54 +02:00
|
|
|
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?
|
|
|
|
|
|
2015-09-02 10:58:54 +02:00
|
|
|
@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
|
|
|
|
2025-10-22 10:06:36 +02: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
|
2025-10-22 10:06:36 +02:00
|
|
|
|
|
|
|
|
# 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
|
|
|
|
|
|
2016-07-13 13:49:32 +02:00
|
|
|
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
|
|
|
|
|
|
2015-08-28 10:31:01 +02:00
|
|
|
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
|
|
|
|
|
|
2026-06-09 13:29:11 +02:00
|
|
|
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
|