mirror of
https://github.com/penpot/penpot.git
synced 2025-06-01 18:22:15 +02:00
✨ Add srepl helpers for delete/restore teams, projects, and files
This commit is contained in:
parent
c3c6879a2f
commit
761bbb7334
6 changed files with 143 additions and 113 deletions
|
@ -912,13 +912,19 @@
|
||||||
|
|
||||||
;; --- MUTATION COMMAND: delete-file
|
;; --- MUTATION COMMAND: delete-file
|
||||||
|
|
||||||
(defn- mark-file-deleted!
|
(defn- mark-file-deleted
|
||||||
[conn file-id]
|
[conn file-id]
|
||||||
(db/update! conn :file
|
(let [file (db/update! conn :file
|
||||||
{:deleted-at (dt/now)}
|
{:deleted-at (dt/now)}
|
||||||
{:id file-id}
|
{:id file-id}
|
||||||
{::db/return-keys [:id :name :is-shared :deleted-at
|
{::db/return-keys [:id :name :is-shared :deleted-at
|
||||||
:project-id :created-at :modified-at]}))
|
:project-id :created-at :modified-at]})]
|
||||||
|
(wrk/submit! {::wrk/task :delete-object
|
||||||
|
::wrk/conn conn
|
||||||
|
:object :file
|
||||||
|
:deleted-at (:deleted-at file)
|
||||||
|
:id file-id})
|
||||||
|
file))
|
||||||
|
|
||||||
(def ^:private
|
(def ^:private
|
||||||
schema:delete-file
|
schema:delete-file
|
||||||
|
@ -929,14 +935,7 @@
|
||||||
(defn- delete-file
|
(defn- delete-file
|
||||||
[{:keys [::db/conn] :as cfg} {:keys [profile-id id] :as params}]
|
[{:keys [::db/conn] :as cfg} {:keys [profile-id id] :as params}]
|
||||||
(check-edition-permissions! conn profile-id id)
|
(check-edition-permissions! conn profile-id id)
|
||||||
(let [file (mark-file-deleted! conn id)]
|
(let [file (mark-file-deleted conn id)]
|
||||||
|
|
||||||
(wrk/submit! {::wrk/task :delete-object
|
|
||||||
::wrk/delay (dt/duration "1m")
|
|
||||||
::wrk/conn conn
|
|
||||||
:object :file
|
|
||||||
:deleted-at (:deleted-at file)
|
|
||||||
:id id})
|
|
||||||
|
|
||||||
;; NOTE: when a file is a shared library, then we proceed to load
|
;; NOTE: when a file is a shared library, then we proceed to load
|
||||||
;; the whole file, proceed with feature checking and properly execute
|
;; the whole file, proceed with feature checking and properly execute
|
||||||
|
@ -951,8 +950,6 @@
|
||||||
:profile-id profile-id
|
:profile-id profile-id
|
||||||
:project-id (:project-id file))]
|
:project-id (:project-id file))]
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
(-> (cfeat/get-team-enabled-features cf/flags team)
|
(-> (cfeat/get-team-enabled-features cf/flags team)
|
||||||
(cfeat/check-client-features! (:features params))
|
(cfeat/check-client-features! (:features params))
|
||||||
(cfeat/check-file-features! (:features file)))
|
(cfeat/check-file-features! (:features file)))
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
(ns app.rpc.commands.projects
|
(ns app.rpc.commands.projects
|
||||||
(:require
|
(:require
|
||||||
[app.common.data.macros :as dm]
|
[app.common.data.macros :as dm]
|
||||||
|
[app.common.exceptions :as ex]
|
||||||
[app.common.spec :as us]
|
[app.common.spec :as us]
|
||||||
[app.db :as db]
|
[app.db :as db]
|
||||||
[app.db.sql :as-alias sql]
|
[app.db.sql :as-alias sql]
|
||||||
|
@ -245,32 +246,37 @@
|
||||||
|
|
||||||
;; --- MUTATION: Delete Project
|
;; --- MUTATION: Delete Project
|
||||||
|
|
||||||
|
(defn- delete-project
|
||||||
|
[conn project-id]
|
||||||
|
(let [project (db/update! conn :project
|
||||||
|
{:deleted-at (dt/now)}
|
||||||
|
{:id project-id}
|
||||||
|
{::db/return-keys true})]
|
||||||
|
|
||||||
|
(when (:is-default project)
|
||||||
|
(ex/raise :type :validation
|
||||||
|
:code :non-deletable-project
|
||||||
|
:hint "impossible to delete default project"))
|
||||||
|
|
||||||
|
(wrk/submit! {::wrk/task :delete-object
|
||||||
|
::wrk/conn conn
|
||||||
|
:object :project
|
||||||
|
:deleted-at (:deleted-at project)
|
||||||
|
:id project-id})
|
||||||
|
|
||||||
|
project))
|
||||||
|
|
||||||
(s/def ::delete-project
|
(s/def ::delete-project
|
||||||
(s/keys :req [::rpc/profile-id]
|
(s/keys :req [::rpc/profile-id]
|
||||||
:req-un [::id]))
|
:req-un [::id]))
|
||||||
|
|
||||||
;; TODO: right now, we just don't allow delete default projects, in a
|
|
||||||
;; future we need to ensure raise a correct exception signaling that
|
|
||||||
;; this is not allowed.
|
|
||||||
|
|
||||||
(sv/defmethod ::delete-project
|
(sv/defmethod ::delete-project
|
||||||
{::doc/added "1.18"
|
{::doc/added "1.18"
|
||||||
::webhooks/event? true}
|
::webhooks/event? true}
|
||||||
[{:keys [::db/pool] :as cfg} {:keys [::rpc/profile-id id] :as params}]
|
[{:keys [::db/pool] :as cfg} {:keys [::rpc/profile-id id] :as params}]
|
||||||
(db/with-atomic [conn pool]
|
(db/with-atomic [conn pool]
|
||||||
(check-edition-permissions! conn profile-id id)
|
(check-edition-permissions! conn profile-id id)
|
||||||
(let [project (db/update! conn :project
|
(let [project (delete-project conn id)]
|
||||||
{:deleted-at (dt/now)}
|
|
||||||
{:id id :is-default false}
|
|
||||||
{::db/return-keys true})]
|
|
||||||
|
|
||||||
(wrk/submit! {::wrk/task :delete-object
|
|
||||||
::wrk/delay (dt/duration "1m")
|
|
||||||
::wrk/conn conn
|
|
||||||
:object :project
|
|
||||||
:deleted-at (:deleted-at project)
|
|
||||||
:id id})
|
|
||||||
|
|
||||||
(rph/with-meta (rph/wrap)
|
(rph/with-meta (rph/wrap)
|
||||||
{::audit/props {:team-id (:team-id project)
|
{::audit/props {:team-id (:team-id project)
|
||||||
:name (:name project)
|
:name (:name project)
|
||||||
|
|
|
@ -517,38 +517,44 @@
|
||||||
|
|
||||||
;; --- Mutation: Delete Team
|
;; --- Mutation: Delete Team
|
||||||
|
|
||||||
|
(defn- delete-team
|
||||||
|
"Mark a team for deletion"
|
||||||
|
[conn team-id]
|
||||||
|
|
||||||
|
(let [deleted-at (dt/now)
|
||||||
|
team (db/update! conn :team
|
||||||
|
{:deleted-at deleted-at}
|
||||||
|
{:id team-id}
|
||||||
|
{::db/return-keys true})]
|
||||||
|
|
||||||
|
(when (:is-default team)
|
||||||
|
(ex/raise :type :validation
|
||||||
|
:code :non-deletable-team
|
||||||
|
:hint "impossible to delete default team"))
|
||||||
|
|
||||||
|
(wrk/submit! {::wrk/task :delete-object
|
||||||
|
::wrk/conn conn
|
||||||
|
:object :team
|
||||||
|
:deleted-at deleted-at
|
||||||
|
:id team-id})
|
||||||
|
team))
|
||||||
|
|
||||||
(s/def ::delete-team
|
(s/def ::delete-team
|
||||||
(s/keys :req [::rpc/profile-id]
|
(s/keys :req [::rpc/profile-id]
|
||||||
:req-un [::id]))
|
:req-un [::id]))
|
||||||
|
|
||||||
;; TODO: right now just don't allow delete default team, in future it
|
|
||||||
;; should raise a specific exception for signal that this action is
|
|
||||||
;; not allowed.
|
|
||||||
|
|
||||||
(sv/defmethod ::delete-team
|
(sv/defmethod ::delete-team
|
||||||
{::doc/added "1.17"}
|
{::doc/added "1.17"}
|
||||||
[{:keys [::db/pool] :as cfg} {:keys [::rpc/profile-id id] :as params}]
|
[{:keys [::db/pool] :as cfg} {:keys [::rpc/profile-id id] :as params}]
|
||||||
(db/with-atomic [conn pool]
|
(db/with-atomic [conn pool]
|
||||||
(let [perms (get-permissions conn profile-id id)
|
(let [perms (get-permissions conn profile-id id)]
|
||||||
deleted-at (dt/now)]
|
|
||||||
|
|
||||||
(when-not (:is-owner perms)
|
(when-not (:is-owner perms)
|
||||||
(ex/raise :type :validation
|
(ex/raise :type :validation
|
||||||
:code :only-owner-can-delete-team))
|
:code :only-owner-can-delete-team))
|
||||||
|
|
||||||
(db/update! conn :team
|
(delete-team conn id)
|
||||||
{:deleted-at deleted-at}
|
|
||||||
{:id id :is-default false})
|
|
||||||
|
|
||||||
(wrk/submit! {::wrk/task :delete-object
|
|
||||||
::wrk/delay (dt/duration "1m")
|
|
||||||
::wrk/conn conn
|
|
||||||
:object :team
|
|
||||||
:deleted-at deleted-at
|
|
||||||
:id id})
|
|
||||||
nil)))
|
nil)))
|
||||||
|
|
||||||
|
|
||||||
;; --- Mutation: Team Update Role
|
;; --- Mutation: Team Update Role
|
||||||
|
|
||||||
(s/def ::team-id ::us/uuid)
|
(s/def ::team-id ::us/uuid)
|
||||||
|
|
|
@ -30,6 +30,8 @@
|
||||||
[app.rpc.commands.files-snapshot :as fsnap]
|
[app.rpc.commands.files-snapshot :as fsnap]
|
||||||
[app.rpc.commands.management :as mgmt]
|
[app.rpc.commands.management :as mgmt]
|
||||||
[app.rpc.commands.profile :as profile]
|
[app.rpc.commands.profile :as profile]
|
||||||
|
[app.rpc.commands.projects :as projects]
|
||||||
|
[app.rpc.commands.teams :as teams]
|
||||||
[app.srepl.fixes :as fixes]
|
[app.srepl.fixes :as fixes]
|
||||||
[app.srepl.helpers :as h]
|
[app.srepl.helpers :as h]
|
||||||
[app.util.blob :as blob]
|
[app.util.blob :as blob]
|
||||||
|
@ -475,31 +477,15 @@
|
||||||
|
|
||||||
|
|
||||||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||||
;; RESTORE DELETED OBJECTS
|
;; DELETE/RESTORE OBJECTS (WITH CASCADE, SOFT)
|
||||||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||||
|
|
||||||
(defn restore-deleted-team!
|
(defn- restore-file*
|
||||||
"Mark a team and all related objects as not deleted"
|
[{:keys [::db/conn]} file-id]
|
||||||
[team-id]
|
(db/update! conn :file
|
||||||
(let [team-id (h/parse-uuid team-id)]
|
|
||||||
(db/tx-run! main/system
|
|
||||||
(fn [{:keys [::db/conn]}]
|
|
||||||
(db/update! conn :team-font-variant
|
|
||||||
{:deleted-at nil}
|
|
||||||
{:team-id team-id})
|
|
||||||
|
|
||||||
(doseq [project (db/update! conn :project
|
|
||||||
{:deleted-at nil}
|
|
||||||
{:team-id team-id}
|
|
||||||
{::db/return-keys [:id]
|
|
||||||
::db/many true})]
|
|
||||||
|
|
||||||
(doseq [file (db/update! conn :file
|
|
||||||
{:deleted-at nil
|
{:deleted-at nil
|
||||||
:has-media-trimmed false}
|
:has-media-trimmed false}
|
||||||
{:project-id (:id project)}
|
{:id file-id})
|
||||||
{::db/return-keys [:id]
|
|
||||||
::db/many true})]
|
|
||||||
|
|
||||||
;; Fragments are not handled here because they
|
;; Fragments are not handled here because they
|
||||||
;; use the database cascade operation and they
|
;; use the database cascade operation and they
|
||||||
|
@ -508,47 +494,82 @@
|
||||||
|
|
||||||
(db/update! conn :file-media-object
|
(db/update! conn :file-media-object
|
||||||
{:deleted-at nil}
|
{:deleted-at nil}
|
||||||
{:file-id (:id file)})
|
{:file-id file-id})
|
||||||
|
|
||||||
;; Mark thumbnails to be deleted
|
;; Mark thumbnails to be deleted
|
||||||
(db/update! conn :file-thumbnail
|
(db/update! conn :file-thumbnail
|
||||||
{:deleted-at nil}
|
{:deleted-at nil}
|
||||||
{:file-id (:id file)})
|
{:file-id file-id})
|
||||||
|
|
||||||
(db/update! conn :file-tagged-object-thumbnail
|
(db/update! conn :file-tagged-object-thumbnail
|
||||||
{:deleted-at nil}
|
{:deleted-at nil}
|
||||||
{:file-id (:id file)})))))))
|
{:file-id file-id}))
|
||||||
|
|
||||||
|
(defn- restore-project*
|
||||||
|
[{:keys [::db/conn]} project-id]
|
||||||
|
|
||||||
|
(db/update! conn :project
|
||||||
|
{:deleted-at nil}
|
||||||
|
{:id project-id})
|
||||||
|
|
||||||
|
(doseq [{:keys [id]} (db/query conn :file
|
||||||
|
{:project-id project-id}
|
||||||
|
{::db/columns [:id]})]
|
||||||
|
(restore-file* conn id)))
|
||||||
|
|
||||||
|
(defn- restore-team*
|
||||||
|
[{:keys [::db/conn]} team-id]
|
||||||
|
(db/update! conn :team
|
||||||
|
{:deleted-at nil}
|
||||||
|
{:id team-id})
|
||||||
|
|
||||||
|
(db/update! conn :team-font-variant
|
||||||
|
{:deleted-at nil}
|
||||||
|
{:team-id team-id})
|
||||||
|
|
||||||
|
(doseq [{:keys [id]} (db/query conn :project
|
||||||
|
{:team-id team-id}
|
||||||
|
{::db/columns [:id]})]
|
||||||
|
(restore-project* conn id)))
|
||||||
|
|
||||||
|
(defn restore-deleted-team!
|
||||||
|
"Mark a team and all related objects as not deleted"
|
||||||
|
[team-id]
|
||||||
|
(let [team-id (h/parse-uuid team-id)]
|
||||||
|
(db/tx-run! main/system restore-team* team-id)))
|
||||||
|
|
||||||
(defn restore-deleted-project!
|
(defn restore-deleted-project!
|
||||||
"Mark a project and all related objects as not deleted"
|
"Mark a project and all related objects as not deleted"
|
||||||
[project-id]
|
[project-id]
|
||||||
(let [project-id (h/parse-uuid project-id)]
|
(let [project-id (h/parse-uuid project-id)]
|
||||||
(db/tx-run! main/system
|
(db/tx-run! main/system restore-project* project-id)))
|
||||||
(fn [{:keys [::db/conn]}]
|
|
||||||
(doseq [file (db/update! conn :file
|
|
||||||
{:deleted-at nil
|
|
||||||
:has-media-trimmed false}
|
|
||||||
{:project-id project-id}
|
|
||||||
{::db/return-keys [:id]
|
|
||||||
::db/many true})]
|
|
||||||
|
|
||||||
;; Fragments are not handled here because they use
|
(defn restore-deleted-file!
|
||||||
;; the database cascade operation and they are not
|
"Mark a file and all related objects as not deleted"
|
||||||
;; marked for deletion with objects-gc task
|
[file-id]
|
||||||
|
(let [file-id (h/parse-uuid file-id)]
|
||||||
|
(db/tx-run! main/system restore-file* file-id)))
|
||||||
|
|
||||||
(db/update! conn :file-media-object
|
(defn delete-team!
|
||||||
{:deleted-at nil}
|
"Mark a team for deletion"
|
||||||
{:file-id (:id file)})
|
[team-id]
|
||||||
|
(let [team-id (h/parse-uuid team-id)]
|
||||||
|
(db/tx-run! main/system (fn [{:keys [::db/conn]}]
|
||||||
|
(#'teams/delete-team conn team-id)))))
|
||||||
|
|
||||||
;; Mark thumbnails to be deleted
|
(defn delete-project!
|
||||||
(db/update! conn :file-thumbnail
|
"Mark a project for deletion"
|
||||||
{:deleted-at nil}
|
[project-id]
|
||||||
{:file-id (:id file)})
|
(let [project-id (h/parse-uuid project-id)]
|
||||||
|
(db/tx-run! main/system (fn [{:keys [::db/conn]}]
|
||||||
|
(#'projects/delete-project conn project-id)))))
|
||||||
|
|
||||||
(db/update! conn :file-tagged-object-thumbnail
|
(defn delete-file!
|
||||||
{:deleted-at nil}
|
"Mark a project for deletion"
|
||||||
{:file-id (:id file)}))))))
|
[file-id]
|
||||||
|
(let [file-id (h/parse-uuid file-id)]
|
||||||
|
(db/tx-run! main/system (fn [{:keys [::db/conn]}]
|
||||||
|
(#'files/mark-file-deleted conn file-id)))))
|
||||||
|
|
||||||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||||
;; MISC
|
;; MISC
|
||||||
|
|
|
@ -17,7 +17,7 @@
|
||||||
|
|
||||||
(defmethod delete-object :file
|
(defmethod delete-object :file
|
||||||
[{:keys [::db/conn]} {:keys [id deleted-at]}]
|
[{:keys [::db/conn]} {:keys [id deleted-at]}]
|
||||||
(l/trc :hint "marking for deletion" :rel "file" :id id)
|
(l/trc :hint "marking for deletion" :rel "file" :id (str id))
|
||||||
;; Mark file media objects to be deleted
|
;; Mark file media objects to be deleted
|
||||||
(db/update! conn :file-media-object
|
(db/update! conn :file-media-object
|
||||||
{:deleted-at deleted-at}
|
{:deleted-at deleted-at}
|
||||||
|
@ -34,7 +34,7 @@
|
||||||
|
|
||||||
(defmethod delete-object :project
|
(defmethod delete-object :project
|
||||||
[{:keys [::db/conn] :as cfg} {:keys [id deleted-at]}]
|
[{:keys [::db/conn] :as cfg} {:keys [id deleted-at]}]
|
||||||
(l/trc :hint "marking for deletion" :rel "project" :id id)
|
(l/trc :hint "marking for deletion" :rel "project" :id (str id))
|
||||||
(doseq [file (db/update! conn :file
|
(doseq [file (db/update! conn :file
|
||||||
{:deleted-at deleted-at}
|
{:deleted-at deleted-at}
|
||||||
{:project-id id}
|
{:project-id id}
|
||||||
|
@ -44,7 +44,7 @@
|
||||||
|
|
||||||
(defmethod delete-object :team
|
(defmethod delete-object :team
|
||||||
[{:keys [::db/conn] :as cfg} {:keys [id deleted-at]}]
|
[{:keys [::db/conn] :as cfg} {:keys [id deleted-at]}]
|
||||||
(l/trc :hint "marking for deletion" :rel "team" :id id)
|
(l/trc :hint "marking for deletion" :rel "team" :id (str id))
|
||||||
(db/update! conn :team-font-variant
|
(db/update! conn :team-font-variant
|
||||||
{:deleted-at deleted-at}
|
{:deleted-at deleted-at}
|
||||||
{:team-id id})
|
{:team-id id})
|
||||||
|
|
|
@ -219,7 +219,7 @@
|
||||||
([params]
|
([params]
|
||||||
(mark-file-deleted* *system* params))
|
(mark-file-deleted* *system* params))
|
||||||
([conn {:keys [id] :as params}]
|
([conn {:keys [id] :as params}]
|
||||||
(#'files/mark-file-deleted! conn id)))
|
(#'files/mark-file-deleted conn id)))
|
||||||
|
|
||||||
(defn create-team*
|
(defn create-team*
|
||||||
([i params] (create-team* *system* i params))
|
([i params] (create-team* *system* i params))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue