2021-09-11 21:50:36 +00:00
|
|
|
import statusgo_backend/accounts as statusgo_backend_accounts
|
|
|
|
import statusgo_backend/core as statusgo_backend_core
|
|
|
|
import statusgo_backend/settings as statusgo_backend_settings
|
2021-09-08 18:05:39 +00:00
|
|
|
import chat, accounts, wallet, wallet2, node, network, messages, contacts, profile, stickers, permissions, fleet, settings, mailservers, browser, tokens, provider
|
|
|
|
import notifications/os_notifications
|
|
|
|
import ../eventemitter
|
|
|
|
import bitops, stew/byteutils, chronicles
|
|
|
|
import ./types/[setting]
|
|
|
|
|
|
|
|
export chat, accounts, node, messages, contacts, profile, network, permissions, fleet, eventemitter
|
|
|
|
|
2021-09-10 15:29:10 +00:00
|
|
|
type Status* = ref object
|
2021-09-08 18:05:39 +00:00
|
|
|
events*: EventEmitter
|
|
|
|
fleet*: FleetModel
|
|
|
|
chat*: ChatModel
|
|
|
|
messages*: MessagesModel
|
|
|
|
accounts*: AccountModel
|
|
|
|
wallet*: WalletModel
|
|
|
|
wallet2*: StatusWalletController
|
|
|
|
node*: NodeModel
|
|
|
|
profile*: ProfileModel
|
|
|
|
contacts*: ContactModel
|
|
|
|
network*: NetworkModel
|
|
|
|
stickers*: StickersModel
|
|
|
|
permissions*: PermissionsModel
|
|
|
|
settings*: SettingsModel
|
|
|
|
mailservers*: MailserversModel
|
|
|
|
browser*: BrowserModel
|
|
|
|
tokens*: TokensModel
|
|
|
|
provider*: ProviderModel
|
|
|
|
osnotifications*: OsNotifications
|
|
|
|
|
|
|
|
proc newStatusInstance*(fleetConfig: string): Status =
|
|
|
|
result = Status()
|
|
|
|
result.events = createEventEmitter()
|
|
|
|
result.fleet = fleet.newFleetModel(fleetConfig)
|
|
|
|
result.chat = chat.newChatModel(result.events)
|
|
|
|
result.accounts = accounts.newAccountModel(result.events)
|
|
|
|
result.wallet = wallet.newWalletModel(result.events)
|
|
|
|
result.wallet.initEvents()
|
|
|
|
result.wallet2 = wallet2.newStatusWalletController(result.events)
|
|
|
|
result.node = node.newNodeModel()
|
|
|
|
result.messages = messages.newMessagesModel(result.events)
|
|
|
|
result.profile = profile.newProfileModel()
|
|
|
|
result.contacts = contacts.newContactModel(result.events)
|
|
|
|
result.network = network.newNetworkModel(result.events)
|
|
|
|
result.stickers = stickers.newStickersModel(result.events)
|
|
|
|
result.permissions = permissions.newPermissionsModel(result.events)
|
|
|
|
result.settings = settings.newSettingsModel(result.events)
|
|
|
|
result.mailservers = mailservers.newMailserversModel(result.events)
|
|
|
|
result.browser = browser.newBrowserModel(result.events)
|
|
|
|
result.tokens = tokens.newTokensModel(result.events)
|
2021-09-10 17:27:49 +00:00
|
|
|
result.provider = provider.newProviderModel(result.events, result.permissions, result.wallet)
|
2021-09-08 18:05:39 +00:00
|
|
|
result.osnotifications = newOsNotifications(result.events)
|
|
|
|
|
2021-09-10 15:29:10 +00:00
|
|
|
proc initNode*(self: Status, statusGoDir, keystoreDir: string) =
|
2021-09-11 21:50:36 +00:00
|
|
|
statusgo_backend_accounts.initNode(statusGoDir, keystoreDir)
|
2021-09-08 18:05:39 +00:00
|
|
|
|
2021-09-10 15:29:10 +00:00
|
|
|
proc startMessenger*(self: Status) {.exportc, dynlib.} =
|
2021-09-11 21:50:36 +00:00
|
|
|
statusgo_backend_core.startMessenger()
|
2021-09-08 18:05:39 +00:00
|
|
|
|
2021-09-10 15:29:10 +00:00
|
|
|
proc reset*(self: Status) {.exportc, dynlib.} =
|
2021-09-08 18:05:39 +00:00
|
|
|
# TODO: remove this once accounts are not tracked in the AccountsModel
|
|
|
|
self.accounts.reset()
|
|
|
|
|
|
|
|
# NOT NEEDED self.chat.reset()
|
|
|
|
# NOT NEEDED self.wallet.reset()
|
|
|
|
# NOT NEEDED self.node.reset()
|
|
|
|
# NOT NEEDED self.mailservers.reset()
|
|
|
|
# NOT NEEDED self.profile.reset()
|
|
|
|
|
|
|
|
# TODO: add all resets here
|
|
|
|
|
2021-09-10 15:29:10 +00:00
|
|
|
proc getNodeVersion*(self: Status): string {.exportc, dynlib.} =
|
2021-09-11 21:50:36 +00:00
|
|
|
statusgo_backend_settings.getWeb3ClientVersion()
|
2021-09-08 18:05:39 +00:00
|
|
|
|
|
|
|
# TODO: duplicated??
|
|
|
|
proc saveSetting*(self: Status, setting: Setting, value: string | bool) =
|
2021-09-11 21:50:36 +00:00
|
|
|
discard statusgo_backend_settings.saveSetting(setting, value)
|
2021-09-08 18:05:39 +00:00
|
|
|
|
2021-09-10 15:29:10 +00:00
|
|
|
proc getBloomFilter*(self: Status): string {.exportc, dynlib.} =
|
2021-09-11 21:50:36 +00:00
|
|
|
result = statusgo_backend_core.getBloomFilter()
|
2021-09-08 18:05:39 +00:00
|
|
|
|
2021-09-10 15:29:10 +00:00
|
|
|
proc getBloomFilterBitsSet*(self: Status): int {.exportc, dynlib.} =
|
2021-09-11 21:50:36 +00:00
|
|
|
let bloomFilter = statusgo_backend_core.getBloomFilter()
|
2021-09-08 18:05:39 +00:00
|
|
|
var bitCount = 0;
|
|
|
|
for b in hexToSeqByte(bloomFilter):
|
|
|
|
bitCount += countSetBits(b)
|
2021-09-10 15:29:10 +00:00
|
|
|
return bitCount
|
|
|
|
|
|
|
|
# C Helpers
|
|
|
|
# ==============================================================================
|
|
|
|
# This creates extra functions with a simpler API for C interop. This is to avoid
|
|
|
|
# having to manually create nim strings, (we can use cstring) instead, and also
|
|
|
|
# because functions that accept more than one type for the same parameter are not
|
|
|
|
# exported correctly
|
|
|
|
|
|
|
|
|
|
|
|
proc newStatusInstance*(fleetConfig: cstring): Status {.exportc, dynlib.} =
|
|
|
|
newStatusInstance($fleetConfig)
|
|
|
|
|
|
|
|
proc initNode*(self: Status, statusGoDir, keystoreDir: cstring) {.exportc, dynlib.} =
|
|
|
|
self.initNode($statusGoDir, $keystoreDir)
|
|
|
|
|
|
|
|
proc saveStringSetting*(self: Status, setting: Setting, value: cstring) {.exportc, dynlib.} =
|
|
|
|
self.saveSetting(setting, $value)
|
|
|
|
|
|
|
|
proc saveBoolSetting*(self: Status, setting: Setting, value: bool) {.exportc, dynlib.} =
|
|
|
|
self.saveSetting(setting, value)
|