OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
openproject/lib/api/v3/capabilities/capability_sql_representer.rb

122 lines
4.4 KiB

#-- encoding: UTF-8
#-- copyright
# OpenProject is an open source project management software.
# Copyright (C) 2012-2020 the OpenProject GmbH
#
# 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:
# Copyright (C) 2006-2017 Jean-Philippe Lang
# 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.
#++
module API
module V3
module Capabilities
class CapabilitySqlRepresenter
include API::Decorators::Sql::Hal
property :_type,
representation: ->(*) { "'Capability'" }
property :id,
representation: ->(*) {
<<~SQL
CASE
WHEN context_id IS NULL THEN action || '/g-' || principal_id
ELSE action || '/p' || context_id || '-' || principal_id
END
SQL
}
link :self,
path: { api: :capability, params: %w(action) },
column: -> {
<<~SQL
CASE
WHEN context_id IS NULL THEN action || '/g-' || principal_id
ELSE action || '/p' || context_id || '-' || principal_id
END
SQL
},
title: -> { nil }
link :action,
path: { api: :action, params: %w(action) },
title: -> { nil }
link :context,
href: ->(*) {
<<~SQL
CASE
WHEN context_id IS NULL THEN '#{api_v3_paths.capabilities_contexts_global}'
ELSE format('#{api_v3_paths.project('%s')}', context_id)
END
SQL
},
title: ->(*) {
<<~SQL
CASE
WHEN context_id IS NULL THEN '#{I18n.t('activerecord.errors.models.capability.context.global')}'
ELSE context_name
END
SQL
},
join: { table: :projects,
condition: "contexts.id = capabilities.context_id",
select: ['contexts.name context_name'] }
link :principal,
href: ->(*) {
<<~SQL
CASE principal_type
WHEN 'Group' THEN format('#{api_v3_paths.group('%s')}', principal_id)
WHEN 'PlaceholderUser' THEN format('#{api_v3_paths.placeholder_user('%s')}', principal_id)
ELSE format('#{api_v3_paths.user('%s')}', principal_id)
END
SQL
},
title: -> {
join_string = if Setting.user_format == :lastname_coma_firstname
" || ', ' || "
else
" || ' ' || "
end
<<~SQL
CASE principal_type
WHEN 'Group' THEN lastname
WHEN 'PlaceholderUser' THEN lastname
ELSE #{User::USER_FORMATS_STRUCTURE[Setting.user_format].map { |p| p }.join(join_string)}
END
SQL
},
join: { table: :users,
condition: "principals.id = capabilities.principal_id",
select: ['principals.firstname',
'principals.lastname',
'principals.login',
'principals.mail',
'principals.type principal_type'] }
end
end
end
end