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
8095da57
Commit
8095da57
authored
10 years ago
by
Cam Saul
Browse files
Options
Downloads
Patches
Plain Diff
update email reports to use new better permissions checking
parent
74838ea8
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/api/emailreport.clj
+10
-13
10 additions, 13 deletions
src/metabase/api/emailreport.clj
src/metabase/models/emailreport.clj
+4
-5
4 additions, 5 deletions
src/metabase/models/emailreport.clj
with
14 additions
and
18 deletions
src/metabase/api/emailreport.clj
+
10
−
13
View file @
8095da57
...
...
@@ -56,16 +56,15 @@
(
defendpoint
GET
"/:id"
[
id
]
; user must have READ permissions on the report
(
let-404
[{
:keys
[
can_read
]
:as
report
}
(
sel
:one
EmailReport
:id
id
)]
(
check-403
@
can_read
)
(
hydrate
report
:creator
:organization
:can_read
:can_write
)))
(
->404
(
sel
:one
EmailReport
:id
id
)
read-check
(
hydrate
:creator
:organization
:can_read
:can_write
)))
(
defendpoint
PUT
"/:id"
[
id
:as
{
body
:body
}]
; user must have WRITE permissions on the report
(
let-404
[
{
:keys
[
can_write
]
:as
report
}
(
sel
:one
EmailReport
:id
id
)]
(
check-403
@
can_write
)
(
let-404
[
report
(
sel
:one
EmailReport
:id
id
)]
(
write-check
report
)
;; TODO - validate that for public_perms, mode, etc are within their expected set of possible values
;; TODO - deal with recipients
(
check-500
(
->>
(
->
(
merge
report
(
util/select-non-nil-keys
body
:name
:description
:public_perms
:mode
:dataset_query
:email_addresses
:schedule
))
...
...
@@ -77,9 +76,8 @@
(
defendpoint
DELETE
"/:id"
[
id
]
(
let-404
[{
:keys
[
can_write
]
:as
report
}
(
sel
:one
EmailReport
:id
id
)]
(
check-403
@
can_write
)
(
del
EmailReport
:id
id
)))
(
write-check
EmailReport
id
)
(
del
EmailReport
:id
id
))
(
defendpoint
POST
"/:id"
[
id
]
...
...
@@ -89,10 +87,9 @@
(
defendpoint
GET
"/:id/executions"
[
id
]
;; TODO - implementation (list recent results of a query)
(
let-404
[{
:keys
[
can_read
]
:as
report
}
(
sel
:one
EmailReport
:id
id
)]
(
check-403
@
can_read
)
(
->
(
sel
:many
EmailReportExecutions
:report_id
id
(
order
:created_at
:DESC
)
(
limit
25
))
(
hydrate
:organization
))))
(
read-check
EmailReport
id
)
(
->
(
sel
:many
EmailReportExecutions
:report_id
id
(
order
:created_at
:DESC
)
(
limit
25
))
(
hydrate
:organization
)))
(
define-routes
)
This diff is collapsed.
Click to expand it.
src/metabase/models/emailreport.clj
+
4
−
5
View file @
8095da57
...
...
@@ -48,8 +48,8 @@
:created_at
(
util/new-sql-date
)
:updated_at
(
util/new-sql-date
)}]
(
->
(
merge
defaults
report
)
(
assoc
:dataset_query
(
json/write-str
dataset_query
)
:schedule
(
json/write-str
schedule
)))))
(
assoc
:dataset_query
(
json/write-str
dataset_query
)
:schedule
(
json/write-str
schedule
)))))
(
defmethod
pre-update
EmailReport
[
_
{
:keys
[
version
dataset_query
schedule
]
:as
report
}]
(
assoc
report
...
...
@@ -61,8 +61,7 @@
(
defmethod
post-select
EmailReport
[
_
{
:keys
[
id
creator_id
organization_id
]
:as
report
}]
(
->
report
(
realize-json
:dataset_query
)
(
realize-json
:schedule
)
(
realize-json
:dataset_query
:schedule
)
(
util/assoc*
:creator
(
delay
(
check
creator_id
500
"Can't get creator: Query doesn't have a :creator_id."
)
...
...
@@ -73,4 +72,4 @@
:recipients
(
delay
(
sel
:many
User
(
where
{
:id
[
in
(
subselect
EmailReportRecipients
(
fields
:user_id
)
(
where
{
:emailreport_id
id
}))]}))))
assoc-permissions-sets
))
\ No newline at end of file
assoc-permissions-sets
))
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