feat(dapps) update persistance from the SDK on sessions refresh

Updates: #15189
This commit is contained in:
Stefan 2024-06-27 17:15:17 +03:00
parent c10c2bb808
commit 6ed40c41fc
7 changed files with 90 additions and 3 deletions

View File

@ -30,6 +30,9 @@ QtObject:
proc deactivateWalletConnectSession*(self: Controller, topic: string): bool {.slot.} =
return self.service.deactivateSession(topic)
proc updateSessionsMarkedAsActive*(self: Controller, activeTopicsJson: string) {.slot.} =
self.service.updateSessionsMarkedAsActive(activeTopicsJson)
proc dappsListReceived*(self: Controller, dappsJson: string) {.signal.}
# Emits signal dappsListReceived with the list of dApps

View File

@ -71,9 +71,38 @@ QtObject:
# TODO #14588: call it async
return status_go.addSession(session_json)
proc addSession*(self: Service, topic: string): bool =
proc deactivateSession*(self: Service, topic: string): bool =
# TODO #14588: call it async
return status_go.deactivateSession(topic)
return status_go.disconnectSession(topic)
proc updateSessionsMarkedAsActive*(self: Service, activeTopicsJson: string) =
# TODO #14588: call it async
let activeTopicsJN = parseJson(activeTopicsJson)
if activeTopicsJN.kind != JArray:
error "invalid array of json strings"
return
var activeTopics = newSeq[string]()
for i in 0 ..< activeTopicsJN.len:
if activeTopicsJN[i].kind != JString:
error "bad topic entry at", i
return
activeTopics.add(activeTopicsJN[i].getStr())
let sessions = status_go.getActiveSessions(0)
if sessions.isNil:
error "failed to get active sessions"
return
for session in sessions:
if session.kind != JObject or not session.hasKey("topic"):
error "unexpected session object"
continue
let topic = session["topic"].getStr()
if not activeTopics.contains(topic):
if not status_go.disconnectSession(topic):
error "failed to mark session as disconnected", topic
proc getDapps*(self: Service): string =
let validAtEpoch = now().toTime().toUnix()

View File

@ -15,6 +15,12 @@ import app_service/common/utils
rpc(addWalletConnectSession, "wallet"):
sessionJson: string
rpc(disconnectWalletConnectSession, "wallet"):
topic: string
rpc(getWalletConnectActiveSessions, "wallet"):
validAtTimestamp: int
rpc(signTypedDataV4, "wallet"):
typedJson: string
address: string
@ -31,6 +37,33 @@ proc addSession*(sessionJson: string): bool =
warn "AddWalletConnectSession failed: ", "msg", e.msg
return false
proc disconnectSession*(topic: string): bool =
try:
let rpcRes = disconnectWalletConnectSession(topic)
return isSuccessResponse(rpcRes):
except Exception as e:
warn "wallet_disconnectWalletConnectSession failed: ", "msg", e.msg
return false
proc getActiveSessions*(validAtTimestamp: int): JsonNode =
try:
let rpcRes = getWalletConnectActiveSessions(validAtTimestamp)
if(not isSuccessResponse(rpcRes)):
return nil
let jsonResultStr = rpcRes.result.getStr()
if jsonResultStr == "null":
return nil
if rpcRes.result.kind != JArray:
error "Unexpected result kind: ", rpcRes.result.kind
return nil
return rpcRes.result
except Exception as e:
warn "GetWalletConnectActiveSessions failed: ", "msg", e.msg
return nil
proc getDapps*(validAtEpoch: int64, testChains: bool): string =
try:
let params = %*[validAtEpoch, testChains]

View File

@ -308,6 +308,20 @@ Item {
return true
}
function updateWalletConnectSessions(activeTopicsJson) {
console.info("Update Persisted Sessions", activeTopicsJson)
let activeTopics = JSON.parse(activeTopicsJson)
let sessions = JSON.parse(settings.persistedSessions)
let newSessions = sessions.filter(function(session) {
return activeTopics.includes(session.topic)
})
settings.persistedSessions = JSON.stringify(newSessions)
d.updateSessionsModelAndAddNewIfNotNull(null)
return true
}
function getDapps() {
let dappsJson = JSON.stringify(d.persistedDapps)
this.dappsListReceived(dappsJson)

View File

@ -50,6 +50,7 @@ QObject {
root.store.dappsListReceived.disconnect(dappsListReceivedFn);
let tmpMap = {}
var topics = []
for (let key in sessions) {
let dapp = sessions[key].peer.metadata
if (!!dapp.icons && dapp.icons.length > 0) {
@ -58,6 +59,7 @@ QObject {
dapp.iconUrl = ""
}
tmpMap[dapp.url] = dapp;
topics.push(key)
}
// TODO #14755: on SDK dApps refresh update the model that has data source from persistence instead of using reset
dapps.clear();
@ -65,6 +67,8 @@ QObject {
for (let key in tmpMap) {
dapps.append(tmpMap[key]);
}
root.store.updateWalletConnectSessions(JSON.stringify(topics))
});
}

View File

@ -20,6 +20,10 @@ QObject {
return controller.deactivateWalletConnectSession(topic)
}
function updateWalletConnectSessions(activeTopicsJson) {
return controller.updateSessionsMarkedAsActive(activeTopicsJson)
}
function authenticateUser(topic, id, address) {
let ok = controller.authenticateUser(topic, id, address)
if(!ok) {

2
vendor/status-go vendored

@ -1 +1 @@
Subproject commit 2bc2099d55407af2c56bebe849ffed12929761ca
Subproject commit 85660e17405c56c86a737fae933a6b757abc06f6