Skip to content
Snippets Groups Projects
Commit 8095da57 authored by Cam Saul's avatar Cam Saul
Browse files

update email reports to use new better permissions checking

parent 74838ea8
No related branches found
No related tags found
No related merge requests found
......@@ -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)
......@@ -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))
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment