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
9e466d8b
Commit
9e466d8b
authored
10 years ago
by
Cam Saul
Browse files
Options
Downloads
Patches
Plain Diff
permissions checking for Field API endpoints
parent
37925177
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/metabase/api/meta/field.clj
+7
-7
7 additions, 7 deletions
src/metabase/api/meta/field.clj
src/metabase/models/field.clj
+2
-1
2 additions, 1 deletion
src/metabase/models/field.clj
src/metabase/models/table.clj
+3
-1
3 additions, 1 deletion
src/metabase/models/table.clj
with
12 additions
and
9 deletions
src/metabase/api/meta/field.clj
+
7
−
7
View file @
9e466d8b
...
...
@@ -6,18 +6,18 @@
[
field
:refer
[
Field
]])))
(
defendpoint
GET
"/:id"
[
id
]
;; TODO check can read
(
->404
(
sel
:one
Field
:id
i
d
)
(
hydrate
[
:table
:db
])))
(
let-404
[{
:keys
[
can_read
]
:as
field
}
(
sel
:one
Field
:id
id
)]
(
check-403
@
can_rea
d
)
(
hydrate
field
[
:table
:db
])))
(
defendpoint
PUT
"/:id"
[
id
:as
{{
:keys
[
special_type
preview_display
description
]}
:body
}]
(
check-404
(
exists?
Field
:id
id
)
)
;; TODO check
can
write
(
let-404
[{
:keys
[
can_write
]}
(
sel
:one
Field
:id
id
)
]
(
check-403
@
can
_
write
))
(
upd
Field
id
:special_type
special_type
:preview_display
preview_display
:description
description
))
(
defendpoint
GET
"/:id/summary"
[
id
]
;; TODO - check
can
read
(
let-404
[{
:keys
[
count
distinct-count
]}
(
sel
:one
Field
:id
i
d
)
]
(
let-404
[{
:keys
[
can
_
read
count
distinct-count
]}
(
sel
:one
Field
:id
id
)]
(
check-403
@
can_rea
d
)
[[
:count
@
count
]
[
:distincts
@
distinct-count
]]))
...
...
This diff is collapsed.
Click to expand it.
src/metabase/models/field.clj
+
2
−
1
View file @
9e466d8b
...
...
@@ -70,7 +70,8 @@
(
util/assoc*
field
:table
(
sel-fn
:one
"metabase.models.table/Table"
:id
table_id
)
:db
(
delay
((
:db
((
:table
<>
)))))
:can_read
(
delay
(
:can_read
@
(
:db
<>
)))
:can_read
(
delay
@
(
:can_read
((
:table
<>
))))
:can_write
(
delay
@
(
:can_write
((
:table
<>
))))
:count
(
delay
(
field-count
<>
))
:distinct-count
(
delay
(
field-distinct-count
<>
))))
...
...
This diff is collapsed.
Click to expand it.
src/metabase/models/table.clj
+
3
−
1
View file @
9e466d8b
...
...
@@ -21,7 +21,9 @@
(
util/assoc*
table
:db
(
sel-fn
:one
Database
:id
db_id
)
:fields
(
sel-fn
:many
Field
:table_id
id
)
:jdbc-columns
(
delay
(
jdbc-columns
((
:db
<>
))
name
))))
:jdbc-columns
(
delay
(
jdbc-columns
((
:db
<>
))
name
))
:can_read
(
delay
@
(
:can_read
((
:db
<>
))))
:can_write
(
delay
@
(
:can_write
((
:db
<>
))))))
(
defmethod
pre-insert
Table
[
_
table
]
(
assoc
table
...
...
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