diff --git a/CHANGES.md b/CHANGES.md index 2b55c80e4..80ace1cb1 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -11,6 +11,7 @@ - Access tokens support [Taiga #4460](https://tree.taiga.io/project/penpot/us/4460) ### :bug: Bugs fixed +- Fix files can be opened from multiple urls [Taiga #5310](https://tree.taiga.io/project/penpot/issue/5310) ### :arrow_up: Deps updates diff --git a/backend/src/app/rpc/commands/files.clj b/backend/src/app/rpc/commands/files.clj index d80f9b250..07053e666 100644 --- a/backend/src/app/rpc/commands/files.clj +++ b/backend/src/app/rpc/commands/files.clj @@ -322,25 +322,31 @@ (sm/def! ::get-file [:map {:title "get-file"} [:features {:optional true} ::features] - [:id ::sm/uuid]]) + [:id ::sm/uuid] + [:project-id {:optional true} ::sm/uuid]]) (defn get-file - [conn id client-features] + ([conn id client-features] + (get-file conn id client-features nil)) + ([conn id client-features project-id] ;; here we check if client requested features are supported - (check-features-compatibility! client-features) - (binding [pmap/*load-fn* (partial load-pointer conn id)] - (let [file (-> (db/get-by-id conn :file id) - (decode-row) - (pmg/migrate-file)) + (check-features-compatibility! client-features) + (binding [pmap/*load-fn* (partial load-pointer conn id)] + (let [params (merge {:id id} + (when (some? project-id) + {:project-id project-id})) + file (-> (db/get conn :file params) + (decode-row) + (pmg/migrate-file)) - file (handle-file-features! conn file client-features)] + file (handle-file-features! conn file client-features)] ;; NOTE: if migrations are applied, probably new pointers generated so ;; instead of persiting them on each get-file, we just resolve them until ;; user updates the file and permanently persists the new pointers - (cond-> file - (pmg/migrated? file) - (process-pointers deref))))) + (cond-> file + (pmg/migrated? file) + (process-pointers deref)))))) (defn get-minimal-file [{:keys [::db/pool] :as cfg} id] @@ -357,11 +363,11 @@ ::cond/key-fn get-file-etag ::sm/params ::get-file ::sm/result ::file-with-permissions} - [{:keys [::db/pool] :as cfg} {:keys [::rpc/profile-id id features] :as params}] + [{:keys [::db/pool] :as cfg} {:keys [::rpc/profile-id id features project-id] :as params}] (dm/with-open [conn (db/open pool)] (let [perms (get-permissions conn profile-id id)] (check-read-permissions! perms) - (let [file (-> (get-file conn id features) + (let [file (-> (get-file conn id features project-id) (assoc :permissions perms))] (vary-meta file assoc ::cond/key (get-file-etag file)))))) diff --git a/frontend/src/app/main/data/workspace.cljs b/frontend/src/app/main/data/workspace.cljs index eff64d8ea..ac3232f5a 100644 --- a/frontend/src/app/main/data/workspace.cljs +++ b/frontend/src/app/main/data/workspace.cljs @@ -280,7 +280,7 @@ ;; WTF is this? share-id (-> state :viewer-local :share-id) stoper (rx/filter (ptk/type? ::fetch-bundle) stream)] - (->> (rx/zip (rp/cmd! :get-file {:id file-id :features features}) + (->> (rx/zip (rp/cmd! :get-file {:id file-id :features features :project-id project-id}) (fetch-thumbnail-blobs file-id) (rp/cmd! :get-project {:id project-id}) (rp/cmd! :get-team-users {:file-id file-id})