mirror of
https://github.com/penpot/penpot.git
synced 2025-08-02 03:18:28 +02:00
50 lines
1.6 KiB
Clojure
50 lines
1.6 KiB
Clojure
;; This Source Code Form is subject to the terms of the Mozilla Public
|
|
;; License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
;; file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
;;
|
|
;; Copyright (c) 2016 Andrey Antukh <niwi@niwi.nz>
|
|
|
|
(ns uxbox.main.repo.users
|
|
"A main interface for access to remote resources."
|
|
(:require [beicon.core :as rx]
|
|
[uxbox.config :refer (url)]
|
|
[uxbox.main.repo.impl :refer (request send!)]
|
|
[uxbox.util.transit :as t]))
|
|
|
|
(defn- decode-payload
|
|
[{:keys [payload] :as rsp}]
|
|
(let [metadata (:metadata payload)]
|
|
(assoc rsp :payload
|
|
(assoc payload :metadata (t/decode metadata)))))
|
|
|
|
(defmethod request :fetch/profile
|
|
[type _]
|
|
(let [url (str url "/profile/me")
|
|
params {:method :get :url url}]
|
|
(->> (send! params)
|
|
(rx/map decode-payload))))
|
|
|
|
(defmethod request :update/profile
|
|
[type {:keys [metadata] :as body}]
|
|
(let [body (assoc body :metadata (t/encode metadata))
|
|
params {:url (str url "/profile/me")
|
|
:method :put
|
|
:body body}]
|
|
(->> (send! params)
|
|
(rx/map decode-payload))))
|
|
|
|
(defmethod request :update/profile-password
|
|
[type data]
|
|
(let [params {:url (str url "/profile/me/password")
|
|
:method :put
|
|
:body data}]
|
|
(send! params)))
|
|
|
|
(defmethod request :update/profile-photo
|
|
[_ {:keys [file] :as body}]
|
|
(let [body (doto (js/FormData.)
|
|
(.append "file" file))
|
|
params {:url (str url "/profile/me/photo")
|
|
:method :post
|
|
:body body}]
|
|
(send! params)))
|