mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-26 18:32:48 +00:00
39 lines
1.4 KiB
SQL
39 lines
1.4 KiB
SQL
select *
|
|
from (select "id"::text,
|
|
"name",
|
|
"desc",
|
|
"is_publish",
|
|
"type",
|
|
'application' as "resource_type",
|
|
"workspace_id",
|
|
"folder_id",
|
|
"user_id",
|
|
"create_time",
|
|
"update_time"
|
|
from application
|
|
where id in (select target
|
|
from workspace_user_resource_permission
|
|
where auth_target_type = 'APPLICATION'
|
|
and case
|
|
when auth_type = 'ROLE' then
|
|
'APPLICATION_READ' in (select permission_id
|
|
from role_permission
|
|
where role_id in (select role_id
|
|
from user_role_relation))
|
|
else
|
|
'VIEW' = any (permission_list)
|
|
end)
|
|
UNION
|
|
select "id",
|
|
"name",
|
|
"desc",
|
|
true as "is_publish",
|
|
'folder' as "type",
|
|
'folder' as "resource_type",
|
|
"workspace_id",
|
|
"parent_id" as "folder_id",
|
|
"user_id",
|
|
"create_time",
|
|
"update_time"
|
|
from application_folder ${folder_query_set}) temp
|
|
${application_query_set} |