shrub/app/btc-wallet-hook.hoon

149 lines
3.4 KiB
Plaintext
Raw Normal View History

2020-10-24 19:13:36 +03:00
:: btc-wallet-hook.hoon
2020-10-28 16:20:24 +03:00
::
2020-11-04 16:55:47 +03:00
:: Subscribes to:
2020-10-28 16:20:24 +03:00
:: btc-provider:
2020-11-04 16:55:47 +03:00
:: - connection status
:: - RPC call results/errors
::
:: btc-wallet-store
:: - requests for address info
:: - updates to existing address info
::
:: Sends updates to:
2020-10-28 16:20:24 +03:00
:: none
2020-10-24 19:13:36 +03:00
::
2020-11-04 16:55:47 +03:00
/- *btc, *btc-wallet-hook, bws=btc-wallet-store
/+ shoe, dbug, default-agent, lib-bws=btc-wallet-store
2020-10-24 19:13:36 +03:00
|%
+$ versioned-state
$% state-0
==
2020-11-04 16:55:47 +03:00
:: provdider: maybe ship if provider is set
2020-10-24 19:13:36 +03:00
::
2020-11-04 16:55:47 +03:00
+$ state-0
$: %0
provider=(unit [host=ship works=?])
pend=back
fail=back
==
2020-10-24 19:13:36 +03:00
::
+$ card card:shoe
+$ command
$? %add-xpub
==
::
--
=| state-0
=* state -
%- agent:dbug
^- agent:gall
%- (agent:shoe command)
^- (shoe:shoe command)
=<
|_ =bowl:gall
+* this .
des ~(. (default:shoe this command) bowl)
def ~(. (default-agent this %|) bowl)
hc ~(. +> bowl)
::
++ command-parser command-parser:des
++ tab-list tab-list:des
++ can-connect can-connect:des
++ on-command on-command:des
++ on-connect on-connect:des
++ on-disconnect on-disconnect:des
::
++ on-init
^- (quip card _this)
~& > '%btc-wallet-hook initialized'
2020-11-04 16:55:47 +03:00
:_ this
:~ [%pass /r/[(scot %da now.bowl)] %agent [our.bowl %btc-wallet-store] %watch /requests]
[%pass /u/[(scot %da now.bowl)] %agent [our.bowl %btc-wallet-store] %watch /updates]
==
2020-10-24 19:13:36 +03:00
++ on-save
^- vase
!>(state)
++ on-load
|= old-state=vase
^- (quip card _this)
~& > '%btc-wallet-hook recompiled'
`this(state !<(versioned-state old-state))
++ on-poke
|= [=mark =vase]
^- (quip card _this)
=^ cards state
?+ mark (on-poke:def mark vase)
%btc-wallet-hook-action
(handle-action:hc !<(action vase))
==
[cards this]
::
++ on-watch on-watch:def
++ on-leave on-leave:def
++ on-peek on-peek:def
++ on-agent
|= [=wire =sign:agent:gall]
^- (quip card _this)
?+ -.sign (on-agent:def wire sign)
%watch-ack
?: ?=(%set-provider -.wire)
2020-11-04 16:55:47 +03:00
`this(provider.state `[src.bowl %.y])
2020-10-24 19:13:36 +03:00
`this
2020-11-04 16:55:47 +03:00
%fact
=^ cards state
?+ p.cage.sign `state
%btc-provider-response
`state
%btc-wallet-store-request
(handle-request:hc !<(request:bws q.cage.sign))
==
[cards this]
2020-10-24 19:13:36 +03:00
==
++ on-arvo on-arvo:def
++ on-fail on-fail:def
--
|_ =bowl:gall
++ handle-command
|= comm=command
^- (quip card _state)
~& > comm
`state
::
:: ==
++ handle-action
|= act=action
^- (quip card _state)
?- -.act
%set-provider
:_ state
2020-11-04 16:55:47 +03:00
:: TODO %+ weld
:: ?~(provider *(list card) ~[[%pass /leave-prov %agent [host.u.provider %btc-provider] %leave ~]])
~[[%pass /set-prov %agent [provider.act %btc-provider] %watch /clients]]
2020-10-24 19:13:36 +03:00
==
2020-11-04 16:55:47 +03:00
++ handle-request
|= req=request:bws
^- (quip card _state)
?- -.req
%scan-address
?~ provider ~|("provider not set" !!)
=/ ri=req-id (mk-req-id +.req)
=/ a=address *address
:: TODO (~(mk-address (from-xpub:walt:lib-bws xpub.req) chyg.req) idx.req)
:- ~[(get-address-info host.u.provider a)]
state(pend (~(put by pend) ri +.req))
==
::
++ get-address-info
|= [host=ship a=address] ^- card
:* %pass /[(scot %da now.bowl)] %agent [host %btc-provider]
%poke %btc-provider-action !>([%get-address-info a])
==
::
++ mk-req-id
|= [=xpub =chyg:bws =idx:bws] ^- req-id
=/ chygidx=@ (cat 3 ?:(=(%0 chyg) '0' '1') idx)
=/ dat=@ (cat 3 xpub chygidx)
%- ripemd-160:ripemd:crypto
[(met 3 dat) dat]
2020-10-24 19:13:36 +03:00
--