Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
Metabase
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Engineering Digital Service
Metabase
Commits
b9d6f555
Commit
b9d6f555
authored
8 years ago
by
Cam Saül
Committed by
GitHub
8 years ago
Browse files
Options
Downloads
Plain Diff
Merge pull request #3460 from metabase/legacy-card-perms-fix
Fix permissions barf on legacy cards
parents
5dba8471
82819feb
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/metabase/models/card.clj
+10
-5
10 additions, 5 deletions
src/metabase/models/card.clj
test/metabase/models/card_test.clj
+46
-0
46 additions, 0 deletions
test/metabase/models/card_test.clj
with
56 additions
and
5 deletions
src/metabase/models/card.clj
+
10
−
5
View file @
b9d6f555
...
...
@@ -41,11 +41,16 @@
(
defn-
permissions-path-set
:mbql
[{
database-id
:database,
:as
query
}]
{
:pre
[(
integer?
database-id
)
(
map?
(
:query
query
))]}
(
let
[{{
:keys
[
source-table
join-tables
]}
:query
}
(
qp/expand
query
)]
(
set
(
for
[
table
(
cons
source-table
join-tables
)]
(
perms/object-path
database-id
(
:schema
table
)
(
or
(
:id
table
)
(
:table-id
table
)))))))
(
try
(
let
[{{
:keys
[
source-table
join-tables
]}
:query
}
(
qp/expand
query
)]
(
set
(
for
[
table
(
cons
source-table
join-tables
)]
(
perms/object-path
database-id
(
:schema
table
)
(
or
(
:id
table
)
(
:table-id
table
))))))
;; if for some reason we can't expand the Card (i.e. it's an invalid legacy card)
;; just return a set of permissions that means no one will ever get to see it
(
catch
Throwable
e
(
log/warn
"Error getting permissions for card:"
(
.getMessage
e
)
"\n"
(
u/pprint-to-str
(
u/filtered-stacktrace
e
)))
#
{
"/db/0/"
})))
; DB 0 will never exist
(
defn-
permissions-path-set
:native
[
read-or-write
{
database-id
:database
}]
#
{((
case
read-or-write
...
...
This diff is collapsed.
Click to expand it.
test/metabase/models/card_test.clj
+
46
−
0
View file @
b9d6f555
...
...
@@ -6,6 +6,7 @@
[
dashboard-card
:refer
[
DashboardCard
]]
[
interface
:as
models
]
[
permissions
:as
perms
])
[
metabase.query-processor.expand
:as
ql
]
[
metabase.test.data
:refer
[
id
]]
[
metabase.test.data.users
:refer
:all
]
[
metabase.test.util
:refer
[
random-name
with-temp
]]))
...
...
@@ -75,3 +76,48 @@
(
with-temp
Card
[
card
{
:dataset_query
{
:database
(
id
)
,
:type
"native"
}}]
(
binding
[
*current-user-permissions-set*
(
delay
#
{(
perms/native-readwrite-path
(
id
))})]
(
models/can-write?
card
))))
;;; check permissions sets for queries
;; native read
(
defn-
native
[
query
]
{
:database
1
:type
:native
:native
{
:query
query
}})
(
expect
#
{
"/db/1/native/read/"
}
(
query-perms-set
(
native
"SELECT count(*) FROM toucan_sightings;"
)
:read
))
;; native write
(
expect
#
{
"/db/1/native/"
}
(
query-perms-set
(
native
"SELECT count(*) FROM toucan_sightings;"
)
:write
))
(
defn-
mbql
[
query
]
{
:database
(
id
)
:type
:query
:query
query
})
;; MBQL w/o JOIN
(
expect
#
{(
perms/object-path
(
id
)
"PUBLIC"
(
id
:venues
))}
(
query-perms-set
(
mbql
(
ql/query
(
ql/source-table
(
id
:venues
))))
:read
))
;; MBQL w/ JOIN
(
expect
#
{(
perms/object-path
(
id
)
"PUBLIC"
(
id
:checkins
))
(
perms/object-path
(
id
)
"PUBLIC"
(
id
:venues
))}
(
query-perms-set
(
mbql
(
ql/query
(
ql/source-table
(
id
:checkins
))
(
ql/order-by
(
ql/asc
(
ql/fk->
(
id
:checkins
:venue_id
)
(
id
:venues
:name
))))))
:read
))
;; invalid/legacy card should return perms for something that doesn't exist so no one gets to see it
(
expect
#
{
"/db/0/"
}
(
query-perms-set
(
mbql
{
:filter
[
:WOW
100
200
]})
:read
))
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment