kanbanworkflowstimelinescrumrubyroadmapproject-planningproject-managementopenprojectangularissue-trackerifcgantt-chartganttbug-trackerboardsbcf
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.
122 lines
5.0 KiB
122 lines
5.0 KiB
#-- copyright
|
|
# OpenProject is an open source project management software.
|
|
# Copyright (C) 2012-2022 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-2013 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 Capabilities::Scopes
|
|
module Default
|
|
extend ActiveSupport::Concern
|
|
|
|
class_methods do
|
|
# Currently, this does not reflect the behaviour present in the backend that every permission in at least one project
|
|
# leads to having that permission in the global context as well. Hopefully, this is not necessary to be added.
|
|
def default
|
|
capabilities_sql = <<~SQL.squish
|
|
(
|
|
#{default_sql_by_member}
|
|
UNION
|
|
#{default_sql_by_non_member}
|
|
UNION
|
|
#{default_sql_by_admin}
|
|
) capabilities
|
|
SQL
|
|
|
|
select('capabilities.*')
|
|
.from(capabilities_sql)
|
|
end
|
|
|
|
private
|
|
|
|
def default_sql_by_member
|
|
<<~SQL.squish
|
|
SELECT DISTINCT
|
|
actions.id "action",
|
|
users.id principal_id,
|
|
projects.id context_id
|
|
FROM (#{Action.default.to_sql}) actions
|
|
LEFT OUTER JOIN "role_permissions" ON "role_permissions"."permission" = "actions"."permission"
|
|
LEFT OUTER JOIN "roles" ON "roles".id = "role_permissions".role_id
|
|
LEFT OUTER JOIN "member_roles" ON "member_roles".role_id = "roles".id
|
|
LEFT OUTER JOIN "members" ON members.id = member_roles.member_id
|
|
JOIN (#{Principal.visible.not_builtin.not_locked.to_sql}) users
|
|
ON "users".id = members.user_id
|
|
LEFT OUTER JOIN "projects"
|
|
ON "projects".id = members.project_id
|
|
LEFT OUTER JOIN enabled_modules
|
|
ON enabled_modules.project_id = projects.id
|
|
AND actions.module = enabled_modules.name
|
|
WHERE (projects.active AND (enabled_modules.project_id IS NOT NULL OR "actions".module IS NULL))
|
|
OR (projects.id IS NULL AND "actions".global)
|
|
SQL
|
|
end
|
|
|
|
def default_sql_by_admin
|
|
<<~SQL.squish
|
|
SELECT DISTINCT
|
|
actions.id "action",
|
|
users.id principal_id,
|
|
projects.id context_id
|
|
FROM (#{Action.default.to_sql}) actions
|
|
JOIN (#{Principal.visible.not_builtin.not_locked.to_sql}) users
|
|
ON "users".admin = true AND actions.grant_to_admin = true
|
|
LEFT OUTER JOIN "projects"
|
|
ON "projects".active = true
|
|
AND NOT "actions".global
|
|
LEFT OUTER JOIN enabled_modules
|
|
ON enabled_modules.project_id = projects.id
|
|
AND actions.module = enabled_modules.name
|
|
WHERE (projects.id IS NOT NULL AND (enabled_modules.project_id IS NOT NULL OR "actions".module IS NULL)) OR "actions".global
|
|
SQL
|
|
end
|
|
|
|
def default_sql_by_non_member
|
|
<<~SQL.squish
|
|
SELECT DISTINCT
|
|
actions.id "action",
|
|
users.id principal_id,
|
|
projects.id context_id
|
|
FROM (#{Action.default.to_sql}) actions
|
|
JOIN "role_permissions" ON "role_permissions"."permission" = "actions"."permission"
|
|
JOIN "roles" ON "roles".id = "role_permissions".role_id AND roles.builtin = #{Role::BUILTIN_NON_MEMBER}
|
|
JOIN (#{Principal.visible.not_builtin.not_locked.to_sql}) users
|
|
ON 1 = 1
|
|
JOIN "projects"
|
|
ON "projects".active = true
|
|
AND ("projects".public = true OR EXISTS (SELECT 1
|
|
FROM members
|
|
WHERE members.project_id = projects.id
|
|
AND members.user_id = users.id
|
|
LIMIT 1))
|
|
LEFT OUTER JOIN enabled_modules
|
|
ON enabled_modules.project_id = projects.id
|
|
AND actions.module = enabled_modules.name
|
|
|
|
WHERE enabled_modules.project_id IS NOT NULL OR "actions".module IS NULL
|
|
SQL
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|