2018-09-06 10:04:12 +00:00
|
|
|
(ns status-im.events
|
2020-06-01 13:24:30 +00:00
|
|
|
(:require [re-frame.core :as re-frame]
|
2018-09-24 16:27:04 +00:00
|
|
|
[status-im.chat.models :as chat]
|
2021-02-12 14:58:43 +00:00
|
|
|
[status-im.i18n.i18n :as i18n]
|
2020-05-05 14:18:23 +00:00
|
|
|
[status-im.mailserver.core :as mailserver]
|
|
|
|
[status-im.multiaccounts.core :as multiaccounts]
|
2019-02-22 12:26:40 +00:00
|
|
|
[status-im.ui.components.react :as react]
|
2018-09-24 15:59:02 +00:00
|
|
|
[status-im.utils.fx :as fx]
|
2021-02-12 14:58:43 +00:00
|
|
|
status-im.utils.logging.core
|
2021-10-25 08:46:33 +00:00
|
|
|
status-im.backup.core
|
2019-05-18 11:06:42 +00:00
|
|
|
[status-im.wallet.core :as wallet]
|
2020-07-10 10:05:36 +00:00
|
|
|
[status-im.keycard.core :as keycard]
|
2020-04-29 13:11:24 +00:00
|
|
|
[status-im.utils.dimensions :as dimensions]
|
|
|
|
[status-im.multiaccounts.biometric.core :as biometric]
|
|
|
|
[status-im.constants :as constants]
|
|
|
|
[status-im.native-module.core :as status]
|
|
|
|
[status-im.ui.components.permissions :as permissions]
|
2020-05-05 14:18:23 +00:00
|
|
|
[status-im.utils.utils :as utils]
|
2021-02-12 14:58:43 +00:00
|
|
|
[status-im.ethereum.json-rpc :as json-rpc]
|
Add a long running task to transfer events to Go when the user logs in, rename interceptors namespace to core, send events in batches, capture s/on-will-focus, capture navigate-to-cofx, stop long running task if any event fails validation, not quite ready yet, needs more testing
Remove redudant println, don't stop the task in case of a bad event, just reject that batch, capture navigate-to-cofx events with an effect, capture parts of screens/on-will-focus event
Fix lint
Shorten comment widths, update to use less brackets, call events reset once, double run safety for long running task
Call onboard after stopping
Reset periodic-tasks-chan to on close, formatting
Get rid of redundant inline function
Update go version to point to 0.75.1
Signed-off-by: Shivek Khurana <shivek@status.im>
2021-04-06 12:32:08 +00:00
|
|
|
[status-im.anon-metrics.core :as anon-metrics]
|
2021-08-04 13:27:25 +00:00
|
|
|
[status-im.utils.universal-links.core :as universal-links]
|
2021-02-12 14:58:43 +00:00
|
|
|
clojure.set
|
|
|
|
status-im.currency.core
|
|
|
|
status-im.navigation
|
|
|
|
status-im.utils.universal-links.core
|
|
|
|
status-im.wallet.custom-tokens.core
|
|
|
|
status-im.waku.core
|
|
|
|
status-im.wallet.choose-recipient.core
|
|
|
|
status-im.wallet.accounts.core
|
|
|
|
status-im.popover.core
|
2021-10-29 16:25:01 +00:00
|
|
|
status-im.visibility-status-popover.core
|
|
|
|
status-im.visibility-status-updates.core
|
2021-02-12 14:58:43 +00:00
|
|
|
status-im.bottom-sheet.core
|
|
|
|
status-im.add-new.core
|
2020-05-07 10:48:08 +00:00
|
|
|
status-im.search.core
|
2020-08-04 06:44:10 +00:00
|
|
|
status-im.http.core
|
2021-02-12 14:58:43 +00:00
|
|
|
status-im.profile.core
|
2020-07-14 13:33:59 +00:00
|
|
|
status-im.chat.models.images
|
2020-07-07 10:20:48 +00:00
|
|
|
status-im.ui.screens.privacy-and-security-settings.events
|
2021-02-12 14:58:43 +00:00
|
|
|
status-im.multiaccounts.login.core
|
|
|
|
status-im.multiaccounts.logout.core
|
|
|
|
status-im.multiaccounts.update.core
|
|
|
|
status-im.pairing.core
|
|
|
|
status-im.signals.core
|
|
|
|
status-im.stickers.core
|
|
|
|
status-im.transport.core
|
|
|
|
status-im.init.core
|
|
|
|
status-im.log-level.core
|
|
|
|
status-im.mailserver.constants
|
|
|
|
status-im.ethereum.subscriptions
|
|
|
|
status-im.fleet.core
|
|
|
|
status-im.contact.block
|
|
|
|
status-im.contact.core
|
|
|
|
status-im.contact.chat
|
|
|
|
status-im.chat.models.input
|
|
|
|
status-im.chat.models.loading
|
|
|
|
status-im.bootnodes.core
|
|
|
|
status-im.browser.core
|
|
|
|
status-im.browser.permissions
|
2021-03-24 15:32:37 +00:00
|
|
|
status-im.chat.models.transport
|
2021-04-07 10:33:37 +00:00
|
|
|
status-im.notifications-center.core
|
2021-03-24 15:32:37 +00:00
|
|
|
[status-im.navigation :as navigation]))
|
2019-06-05 11:11:47 +00:00
|
|
|
|
|
|
|
(re-frame/reg-fx
|
|
|
|
:dismiss-keyboard
|
|
|
|
(fn []
|
2019-06-03 07:42:29 +00:00
|
|
|
(react/dismiss-keyboard!)))
|
2019-06-17 09:41:37 +00:00
|
|
|
|
2020-04-29 13:11:24 +00:00
|
|
|
(re-frame/reg-fx
|
|
|
|
:request-permissions-fx
|
|
|
|
(fn [options]
|
|
|
|
(permissions/request-permissions options)))
|
|
|
|
|
|
|
|
(re-frame/reg-fx
|
|
|
|
:ui/show-error
|
|
|
|
(fn [content]
|
|
|
|
(utils/show-popup "Error" content)))
|
|
|
|
|
|
|
|
(re-frame/reg-fx
|
|
|
|
:ui/show-confirmation
|
|
|
|
(fn [options]
|
|
|
|
(utils/show-confirmation options)))
|
|
|
|
|
|
|
|
(re-frame/reg-fx
|
|
|
|
:ui/close-application
|
|
|
|
(fn [_]
|
|
|
|
(status/close-application)))
|
|
|
|
|
|
|
|
(re-frame/reg-fx
|
|
|
|
::app-state-change-fx
|
|
|
|
(fn [state]
|
|
|
|
(status/app-state-change state)))
|
|
|
|
|
2021-02-12 14:58:43 +00:00
|
|
|
(re-frame/reg-fx
|
|
|
|
:ui/listen-to-window-dimensions-change
|
|
|
|
(fn []
|
|
|
|
(dimensions/add-event-listener)))
|
2020-04-29 13:11:24 +00:00
|
|
|
|
2021-02-12 14:58:43 +00:00
|
|
|
(fx/defn dismiss-keyboard
|
|
|
|
{:events [:dismiss-keyboard]}
|
|
|
|
[_]
|
|
|
|
{:dismiss-keyboard nil})
|
|
|
|
|
|
|
|
(fx/defn identicon-generated
|
|
|
|
{:events [:identicon-generated]}
|
|
|
|
[{:keys [db]} path identicon]
|
|
|
|
{:db (assoc-in db path identicon)})
|
|
|
|
|
|
|
|
(fx/defn gfycat-generated
|
|
|
|
{:events [:gfycat-generated]}
|
|
|
|
[{:keys [db]} path gfycat]
|
|
|
|
{:db (assoc-in db path gfycat)})
|
|
|
|
|
|
|
|
(fx/defn system-theme-mode-changed
|
|
|
|
{:events [:system-theme-mode-changed]}
|
|
|
|
[{:keys [db]} theme]
|
|
|
|
(let [cur-theme (get-in db [:multiaccount :appearance])]
|
|
|
|
(when (or (nil? cur-theme) (zero? cur-theme))
|
|
|
|
{::multiaccounts/switch-theme (if (= :dark theme) 2 1)})))
|
2020-04-29 13:11:24 +00:00
|
|
|
|
|
|
|
(def authentication-options
|
|
|
|
{:reason (i18n/label :t/biometric-auth-reason-login)})
|
|
|
|
|
|
|
|
(defn- on-biometric-auth-result [{:keys [bioauth-success bioauth-code bioauth-message]}]
|
|
|
|
(when-not bioauth-success
|
|
|
|
(if (= bioauth-code "USER_FALLBACK")
|
|
|
|
(re-frame/dispatch [:multiaccounts.logout.ui/logout-confirmed])
|
|
|
|
(utils/show-confirmation {:title (i18n/label :t/biometric-auth-confirm-title)
|
|
|
|
:content (or bioauth-message (i18n/label :t/biometric-auth-confirm-message))
|
|
|
|
:confirm-button-text (i18n/label :t/biometric-auth-confirm-try-again)
|
|
|
|
:cancel-button-text (i18n/label :t/biometric-auth-confirm-logout)
|
|
|
|
:on-accept #(biometric/authenticate nil on-biometric-auth-result authentication-options)
|
|
|
|
:on-cancel #(re-frame/dispatch [:multiaccounts.logout.ui/logout-confirmed])}))))
|
|
|
|
|
|
|
|
(fx/defn on-return-from-background [{:keys [db now] :as cofx}]
|
|
|
|
(let [app-in-background-since (get db :app-in-background-since)
|
2021-02-12 14:58:43 +00:00
|
|
|
signed-up? (get-in db [:multiaccount :signed-up?])
|
|
|
|
biometric-auth? (= (:auth-method db) "biometric")
|
|
|
|
requires-bio-auth (and
|
|
|
|
signed-up?
|
|
|
|
biometric-auth?
|
|
|
|
(some? app-in-background-since)
|
|
|
|
(>= (- now app-in-background-since)
|
|
|
|
constants/ms-in-bg-for-require-bioauth))]
|
2020-04-29 13:11:24 +00:00
|
|
|
(fx/merge cofx
|
|
|
|
{:db (-> db
|
|
|
|
(dissoc :app-in-background-since)
|
|
|
|
(assoc :app-active-since now))}
|
|
|
|
(mailserver/process-next-messages-request)
|
2020-12-10 16:02:45 +00:00
|
|
|
(wallet/restart-wallet-service-after-background app-in-background-since)
|
2021-08-04 13:27:25 +00:00
|
|
|
(universal-links/process-stored-event)
|
2021-08-19 10:36:25 +00:00
|
|
|
#(when-let [chat-id (:current-chat-id db)]
|
|
|
|
{:dispatch [:chat/mark-all-as-read chat-id]})
|
2020-04-29 13:11:24 +00:00
|
|
|
#(when requires-bio-auth
|
|
|
|
(biometric/authenticate % on-biometric-auth-result authentication-options)))))
|
|
|
|
|
2020-11-16 13:26:40 +00:00
|
|
|
(fx/defn on-going-in-background
|
|
|
|
[{:keys [db now] :as cofx}]
|
2020-12-10 16:02:45 +00:00
|
|
|
{:db (-> db
|
|
|
|
(dissoc :app-active-since)
|
|
|
|
(assoc :app-in-background-since now))
|
|
|
|
:dispatch-n [[:audio-recorder/on-background] [:audio-message/on-background]]})
|
2020-04-29 13:11:24 +00:00
|
|
|
|
2021-02-12 14:58:43 +00:00
|
|
|
(fx/defn app-state-change
|
|
|
|
{:events [:app-state-change]}
|
|
|
|
[{:keys [db] :as cofx} state]
|
2020-04-29 13:11:24 +00:00
|
|
|
(let [app-coming-from-background? (= state "active")
|
2021-02-12 14:58:43 +00:00
|
|
|
app-going-in-background? (= state "background")]
|
2020-04-29 13:11:24 +00:00
|
|
|
(fx/merge cofx
|
|
|
|
{::app-state-change-fx state
|
|
|
|
:db (assoc db :app-state state)}
|
|
|
|
#(when app-coming-from-background?
|
|
|
|
(on-return-from-background %))
|
|
|
|
#(when app-going-in-background?
|
|
|
|
(on-going-in-background %)))))
|
|
|
|
|
2021-02-12 14:58:43 +00:00
|
|
|
(fx/defn request-permissions
|
|
|
|
{:events [:request-permissions]}
|
|
|
|
[_ options]
|
|
|
|
{:request-permissions-fx options})
|
2020-04-29 13:11:24 +00:00
|
|
|
|
2021-02-12 14:58:43 +00:00
|
|
|
(fx/defn update-window-dimensions
|
|
|
|
{:events [:update-window-dimensions]}
|
|
|
|
[{:keys [db]} dimensions]
|
|
|
|
{:db (assoc db :dimensions/window (dimensions/window dimensions))})
|
2020-04-29 13:11:24 +00:00
|
|
|
|
2021-02-16 14:16:32 +00:00
|
|
|
(fx/defn init-timeline-chat
|
|
|
|
{:events [:init-timeline-chat]}
|
|
|
|
[{:keys [db] :as cofx}]
|
|
|
|
(when-not (get-in db [:pagination-info constants/timeline-chat-id :messages-initialized?])
|
|
|
|
(chat/preload-chat-data cofx constants/timeline-chat-id)))
|
2020-10-29 13:59:58 +00:00
|
|
|
|
2021-02-12 14:58:43 +00:00
|
|
|
(fx/defn on-will-focus
|
Add a long running task to transfer events to Go when the user logs in, rename interceptors namespace to core, send events in batches, capture s/on-will-focus, capture navigate-to-cofx, stop long running task if any event fails validation, not quite ready yet, needs more testing
Remove redudant println, don't stop the task in case of a bad event, just reject that batch, capture navigate-to-cofx events with an effect, capture parts of screens/on-will-focus event
Fix lint
Shorten comment widths, update to use less brackets, call events reset once, double run safety for long running task
Call onboard after stopping
Reset periodic-tasks-chan to on close, formatting
Get rid of redundant inline function
Update go version to point to 0.75.1
Signed-off-by: Shivek Khurana <shivek@status.im>
2021-04-06 12:32:08 +00:00
|
|
|
{:events [:screens/on-will-focus]
|
|
|
|
:interceptors [anon-metrics/interceptor]}
|
2021-02-16 14:16:32 +00:00
|
|
|
[cofx view-id]
|
2021-02-12 14:58:43 +00:00
|
|
|
(fx/merge cofx
|
|
|
|
#(case view-id
|
|
|
|
:keycard-settings (keycard/settings-screen-did-load %)
|
|
|
|
:reset-card (keycard/reset-card-screen-did-load %)
|
|
|
|
:enter-pin-settings (keycard/enter-pin-screen-did-load %)
|
2021-06-16 12:00:41 +00:00
|
|
|
:keycard-login-pin (keycard/login-pin-screen-did-load %)
|
2021-02-12 14:58:43 +00:00
|
|
|
:add-new-account-pin (keycard/enter-pin-screen-did-load %)
|
|
|
|
:keycard-authentication-method (keycard/authentication-method-screen-did-load %)
|
|
|
|
:multiaccounts (keycard/multiaccounts-screen-did-load %)
|
2021-06-16 12:00:41 +00:00
|
|
|
:wallet (wallet/wallet-will-focus %)
|
2021-02-12 14:58:43 +00:00
|
|
|
nil)))
|
|
|
|
|
|
|
|
;;TODO :replace by named events
|
|
|
|
(fx/defn set-event
|
|
|
|
{:events [:set]}
|
|
|
|
[{:keys [db]} k v]
|
|
|
|
{:db (assoc db k v)})
|
|
|
|
|
|
|
|
;;TODO :replace by named events
|
|
|
|
(fx/defn set-once-event
|
|
|
|
{:events [:set-once]}
|
|
|
|
[{:keys [db]} k v]
|
|
|
|
(when-not (get db k)
|
|
|
|
{:db (assoc db k v)}))
|
|
|
|
|
|
|
|
;;TODO :replace by named events
|
|
|
|
(fx/defn set-in-event
|
|
|
|
{:events [:set-in]}
|
|
|
|
[{:keys [db]} path v]
|
|
|
|
{:db (assoc-in db path v)})
|
2021-01-29 14:08:48 +00:00
|
|
|
|
|
|
|
(defn on-ramp<-rpc [on-ramp]
|
|
|
|
(clojure.set/rename-keys on-ramp {:logoUrl :logo-url
|
|
|
|
:siteUrl :site-url}))
|
|
|
|
|
2021-02-12 14:58:43 +00:00
|
|
|
(fx/defn crypto-loaded-event
|
|
|
|
{:events [::crypto-loaded]}
|
|
|
|
[{:keys [db]} on-ramps]
|
|
|
|
{:db (assoc
|
|
|
|
db
|
|
|
|
:buy-crypto/on-ramps
|
|
|
|
(map on-ramp<-rpc on-ramps))})
|
|
|
|
|
|
|
|
(fx/defn buy-crypto-ui-loaded
|
|
|
|
{:events [:buy-crypto.ui/loaded]}
|
|
|
|
[_]
|
|
|
|
{::json-rpc/call [{:method "wallet_getCryptoOnRamps"
|
|
|
|
:params []
|
|
|
|
:on-success (fn [on-ramps]
|
|
|
|
(re-frame/dispatch [::crypto-loaded on-ramps]))}]})
|
2021-03-24 15:32:37 +00:00
|
|
|
|
|
|
|
(fx/defn open-buy-crypto-screen
|
|
|
|
{:events [:buy-crypto.ui/open-screen]}
|
|
|
|
[cofx]
|
|
|
|
(fx/merge
|
|
|
|
cofx
|
2021-05-24 14:25:05 +00:00
|
|
|
(navigation/open-modal :buy-crypto nil)
|
2021-03-24 15:32:37 +00:00
|
|
|
(wallet/keep-watching-history)))
|