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
b7eef740
Commit
b7eef740
authored
8 years ago
by
Cam Saül
Browse files
Options
Downloads
Patches
Plain Diff
Fix granting partial permissions for multiple tables
parent
04ac0c25
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/metabase/models/permissions.clj
+13
-13
13 additions, 13 deletions
src/metabase/models/permissions.clj
with
13 additions
and
13 deletions
src/metabase/models/permissions.clj
+
13
−
13
View file @
b7eef740
...
...
@@ -311,7 +311,7 @@
(
db/cascade-delete!
Permissions
where
))))
(
defn
revoke-permissions!
"Revoke permissions for GROUP-OR-ID to object with PATH-COMPONENTS."
"Revoke
all
permissions for GROUP-OR-ID to object with PATH-COMPONENTS
, *including* related permissions
."
[
group-or-id
&
path-components
]
(
delete-related-permissions!
group-or-id
(
apply
object-path
path-components
)))
...
...
@@ -345,7 +345,7 @@
(
grant-permissions!
group-or-id
(
native-readwrite-path
database-id
)))
(
defn
revoke-db-schema-permissions!
"Remove all permissions entires for a DB and any child objects.
"Remove all permissions entires for a DB and
*
any
*
child objects.
This does *not* revoke native permissions; use `revoke-native-permssions!` to do that."
[
group-or-id
database-id
]
;; TODO - if permissions for this DB are DB root entries like `/db/1/` won't this end up removing our native perms?
...
...
@@ -375,10 +375,10 @@
:none
(
revoke-permissions!
group-id
db-id
schema
table-id
)))
(
s/defn
^
:private
^
:always-validate
update-schema-perms!
[
group-id
:-
s/Int,
db-id
:-
s/Int,
schema
:-
s/Str,
new-schema-perms
:-
SchemaPermissionsGraph
]
(
revoke-permissions!
group-id
db-id
schema
)
(
cond
(
=
new-schema-perms
:all
)
(
grant-permissions!
group-id
db-id
schema
)
(
=
new-schema-perms
:none
)
nil
(
=
new-schema-perms
:all
)
(
do
(
revoke-permissions!
group-id
db-id
schema
)
; clear out any existing related permissions
(
grant-permissions!
group-id
db-id
schema
))
; then grant full perms for the schema
(
=
new-schema-perms
:none
)
(
revoke-permissions!
group-id
db-id
schema
)
(
map?
new-schema-perms
)
(
doseq
[[
table-id
table-perms
]
new-schema-perms
]
(
update-table-perms!
group-id
db-id
schema
table-id
table-perms
))))
...
...
@@ -400,10 +400,10 @@
(
when-let
[
new-native-perms
(
:native
new-db-perms
)]
(
update-native-permissions!
group-id
db-id
new-native-perms
))
(
when-let
[
schemas
(
:schemas
new-db-perms
)]
(
revoke-db-schema-permissions!
group-id
db-id
)
(
cond
(
=
schemas
:all
)
(
grant-permissions-for-all-schemas!
group-id
db-id
)
(
=
schemas
:none
)
nil
(
=
schemas
:all
)
(
do
(
revoke-db-schema-permissions!
group-id
db-id
)
(
grant-permissions-for-all-schemas!
group-id
db-id
))
(
=
schemas
:none
)
(
revoke-db-schema-permissions!
group-id
db-id
)
(
map?
schemas
)
(
doseq
[
schema
(
keys
schemas
)]
(
update-schema-perms!
group-id
db-id
schema
(
get-in
new-db-perms
[
:schemas
schema
]))))))
...
...
@@ -444,13 +444,13 @@
[
old
new
]
(
data/diff
(
:groups
old-graph
)
(
:groups
new-graph
))]
(
when
(
or
(
seq
old
)
(
seq
new
))
(
log/debug
(
format
"Changing permissions: 🔏\nFROM:\n%s\nTO:\n%s"
(
u/pprint-to-str
'magenta
old
)
(
u/pprint-to-str
'blue
new
)))
(
u/pprint-to-str
'magenta
old
)
(
u/pprint-to-str
'blue
new
)))
(
check-revision-numbers
old-graph
new-graph
)
(
db/transaction
(
doseq
[
group-id
(
keys
new
)]
(
update-group-permissions!
group-id
(
get
new
group-id
)))
(
save-perms-revision!
(
:revision
old-graph
)
old
new
)))))
(
doseq
[
group-id
(
keys
new
)]
(
update-group-permissions!
group-id
(
get
new
group-id
)))
(
save-perms-revision!
(
:revision
old-graph
)
old
new
)))))
;; The following arity is provided soley for convenience for tests/REPL usage
([
ks
new-value
]
{
:pre
[(
sequential?
ks
)]}
...
...
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