mirror of
https://github.com/urbit/shrub.git
synced 2024-12-19 08:32:39 +03:00
aggregator-rpc: add rpc api for l2 aggregator
This commit is contained in:
parent
2e9d412c21
commit
97a3c53827
262
pkg/arvo/app/aggregator-rpc.hoon
Normal file
262
pkg/arvo/app/aggregator-rpc.hoon
Normal file
@ -0,0 +1,262 @@
|
|||||||
|
:: Aggregator JSON-RPC API
|
||||||
|
::
|
||||||
|
/- rpc=json-rpc, *aggregator
|
||||||
|
/+ naive,
|
||||||
|
azimuth-rpc,
|
||||||
|
json-rpc,
|
||||||
|
*server,
|
||||||
|
default-agent,
|
||||||
|
verb,
|
||||||
|
dbug,
|
||||||
|
version,
|
||||||
|
agentio
|
||||||
|
|%
|
||||||
|
::
|
||||||
|
+$ card card:agent:gall
|
||||||
|
::
|
||||||
|
+$ state-0 [%0 ~]
|
||||||
|
--
|
||||||
|
::
|
||||||
|
%+ verb |
|
||||||
|
%- agent:dbug
|
||||||
|
::
|
||||||
|
=| state-0
|
||||||
|
=* state -
|
||||||
|
::
|
||||||
|
^- agent:gall
|
||||||
|
=<
|
||||||
|
|_ =bowl:gall
|
||||||
|
+* this .
|
||||||
|
do ~(. +> bowl)
|
||||||
|
def ~(. (default-agent this %|) bowl)
|
||||||
|
::
|
||||||
|
++ on-init
|
||||||
|
^- (quip card _this)
|
||||||
|
~& > 'init'
|
||||||
|
:_ this
|
||||||
|
[%pass /bind %arvo %e %connect [~ /v1/roller] dap.bowl]~
|
||||||
|
::
|
||||||
|
++ on-save !>(state)
|
||||||
|
++ on-load
|
||||||
|
|= old=vase
|
||||||
|
^- (quip card _this)
|
||||||
|
[~ this(state !<(state-0 old))]
|
||||||
|
::
|
||||||
|
++ on-poke
|
||||||
|
|= [=mark =vase]
|
||||||
|
^- (quip card _this)
|
||||||
|
|^
|
||||||
|
?> (team:title our.bowl src.bowl)
|
||||||
|
?+ mark (on-poke:def mark vase)
|
||||||
|
%handle-http-request
|
||||||
|
=+ !<([id=@ta req=inbound-request:eyre] vase)
|
||||||
|
:_ this
|
||||||
|
(handle-http-request id req)
|
||||||
|
::
|
||||||
|
%azimuth-action
|
||||||
|
=+ !<([%disconnect bind=binding:eyre] vase)
|
||||||
|
~& >>> "disconnecting at {<bind>}"
|
||||||
|
:_ this
|
||||||
|
[%pass /bind %arvo %e %disconnect bind]~
|
||||||
|
==
|
||||||
|
::
|
||||||
|
++ handle-http-request
|
||||||
|
|= [id=@ta =inbound-request:eyre]
|
||||||
|
^- (list card)
|
||||||
|
|^
|
||||||
|
=* req request.inbound-request
|
||||||
|
=* headers header-list.req
|
||||||
|
=/ req-line (parse-request-line url.req)
|
||||||
|
?. =(method.req %'POST')
|
||||||
|
:: TODO: method not supported
|
||||||
|
::
|
||||||
|
(give-simple-payload:app id not-found:gen)
|
||||||
|
?~ rpc-request=(validate-request:json-rpc body.req)
|
||||||
|
:: TODO: malformed request
|
||||||
|
::
|
||||||
|
(give-simple-payload:app id not-found:gen)
|
||||||
|
=/ [data=(list cage) response=simple-payload:http]
|
||||||
|
(process-rpc-request:do u.rpc-request)
|
||||||
|
%+ weld
|
||||||
|
(give-simple-payload:app id response)
|
||||||
|
|-
|
||||||
|
?~ data ~
|
||||||
|
:_ $(data t.data)
|
||||||
|
^- card
|
||||||
|
[%pass / %agent [our.bowl %aggregator] %poke i.data]
|
||||||
|
--
|
||||||
|
--
|
||||||
|
::
|
||||||
|
++ on-watch
|
||||||
|
|= =path
|
||||||
|
^- (quip card _this)
|
||||||
|
?> (team:title our.bowl src.bowl)
|
||||||
|
?+ path (on-watch:def path)
|
||||||
|
[%http-response *] [~ this]
|
||||||
|
==
|
||||||
|
::
|
||||||
|
++ on-arvo
|
||||||
|
|= [=wire =sign-arvo]
|
||||||
|
^- (quip card _this)
|
||||||
|
?+ sign-arvo (on-arvo:def wire sign-arvo)
|
||||||
|
[%eyre %bound *]
|
||||||
|
~? !accepted.sign-arvo
|
||||||
|
[dap.bowl 'bind rejected!' binding.sign-arvo]
|
||||||
|
[~ this]
|
||||||
|
==
|
||||||
|
::
|
||||||
|
++ on-leave on-leave:def
|
||||||
|
++ on-peek on-peek:def
|
||||||
|
++ on-agent on-agent:def
|
||||||
|
++ on-fail on-fail:def
|
||||||
|
--
|
||||||
|
::
|
||||||
|
|_ =bowl:gall
|
||||||
|
++ process-rpc-request
|
||||||
|
|= req=batch-request:rpc
|
||||||
|
^- [(list cage) simple-payload:http]
|
||||||
|
|^
|
||||||
|
?- -.req
|
||||||
|
%o
|
||||||
|
=/ [data=(unit cage) =response:rpc]
|
||||||
|
(process p.req)
|
||||||
|
[(drop data) (render response)]
|
||||||
|
::
|
||||||
|
%a
|
||||||
|
=| data=(list cage)
|
||||||
|
=| resp=(list response:rpc)
|
||||||
|
|-
|
||||||
|
?~ p.req
|
||||||
|
[(flop data) (render %batch (flop resp))]
|
||||||
|
=/ [dat=(unit cage) res=response:rpc]
|
||||||
|
(process i.p.req)
|
||||||
|
=? data ?=(^ dat) [u.dat data]
|
||||||
|
$(p.req t.p.req, resp [res resp])
|
||||||
|
==
|
||||||
|
::
|
||||||
|
++ render
|
||||||
|
|= res=response:rpc
|
||||||
|
%- json-response:gen
|
||||||
|
(response-to-json:json-rpc res)
|
||||||
|
::
|
||||||
|
++ process
|
||||||
|
|= request:rpc
|
||||||
|
=, azimuth-rpc
|
||||||
|
?. ?=([%map *] params)
|
||||||
|
[~ ~(parse error:json-rpc id)]
|
||||||
|
=/ method=@tas (enkebab method)
|
||||||
|
?+ method [~ ~(method error:json-rpc id)]
|
||||||
|
%get-point `(get-point id +.params point:scry)
|
||||||
|
%get-points `(get-points id +.params points:scry)
|
||||||
|
%transfer-point (transfer-point id +.params)
|
||||||
|
%cancel-transaction (cancel-tx id +.params)
|
||||||
|
%get-spawned `(get-spawned id +.params spawned:scry)
|
||||||
|
%configure-keys (configure-keys id +.params)
|
||||||
|
%spawn (spawn id +.params)
|
||||||
|
%escape (escape id +.params method)
|
||||||
|
%cancel-escape (cancel-escape id +.params method)
|
||||||
|
%adopt (adopt id +.params method)
|
||||||
|
%detach (detach id +.params method)
|
||||||
|
%reject (reject id +.params method)
|
||||||
|
%set-management-proxy (management-proxy id +.params method)
|
||||||
|
%set-spawn-proxy (spawn-proxy id +.params method)
|
||||||
|
%set-transfer-proxy (transfer-proxy id +.params method)
|
||||||
|
%get-all-pending `(all:pending id +.params all:pending:scry)
|
||||||
|
%get-pending-by-ship `(ship:pending id +.params ship:pending:scry)
|
||||||
|
%get-pending-by-address `(addr:pending id +.params addr:pending:scry)
|
||||||
|
%get-transaction-status `(status id +.params tx-status:scry)
|
||||||
|
%when-next-batch `(next-batch id +.params next-batch:scry)
|
||||||
|
%get-nonce `(nonce id +.params nonce:scry)
|
||||||
|
%get-history `(history id +.params addr:history:scry)
|
||||||
|
%get-roller-config `(get-config id +.params config:scry)
|
||||||
|
==
|
||||||
|
--
|
||||||
|
::
|
||||||
|
++ scry
|
||||||
|
|%
|
||||||
|
++ point
|
||||||
|
|= =ship
|
||||||
|
.^ (unit point:naive)
|
||||||
|
%gx
|
||||||
|
(~(scry agentio bowl) %aggregator /point/(scot %p ship)/noun)
|
||||||
|
==
|
||||||
|
::
|
||||||
|
++ points
|
||||||
|
|= =address:naive
|
||||||
|
.^ (list [ship point:naive])
|
||||||
|
%gx
|
||||||
|
(~(scry agentio bowl) %aggregator /points/(scot %ux address)/noun)
|
||||||
|
==
|
||||||
|
::
|
||||||
|
++ spawned
|
||||||
|
|= =ship
|
||||||
|
.^ (list [@p @ux])
|
||||||
|
%gx
|
||||||
|
(~(scry agentio bowl) %aggregator /spawned/(scot %p ship)/noun)
|
||||||
|
==
|
||||||
|
::
|
||||||
|
++ pending
|
||||||
|
|%
|
||||||
|
++ all
|
||||||
|
.^ (list pend-tx)
|
||||||
|
%gx
|
||||||
|
(~(scry agentio bowl) %aggregator /pending/noun)
|
||||||
|
==
|
||||||
|
::
|
||||||
|
++ ship
|
||||||
|
|= =^ship
|
||||||
|
.^ (list pend-tx)
|
||||||
|
%gx
|
||||||
|
(~(scry agentio bowl) %aggregator /pending/(scot %p ship)/noun)
|
||||||
|
==
|
||||||
|
::
|
||||||
|
++ addr
|
||||||
|
|= =address:naive
|
||||||
|
.^ (list pend-tx)
|
||||||
|
%gx
|
||||||
|
%+ ~(scry agentio bowl) %aggregator
|
||||||
|
/pending/[(scot %ux address)]/noun
|
||||||
|
==
|
||||||
|
--
|
||||||
|
::
|
||||||
|
++ history
|
||||||
|
|%
|
||||||
|
++ addr
|
||||||
|
|= =address:naive
|
||||||
|
.^ (list roller-tx)
|
||||||
|
%gx
|
||||||
|
(~(scry agentio bowl) %aggregator /history/(scot %ux address)/noun)
|
||||||
|
==
|
||||||
|
--
|
||||||
|
::
|
||||||
|
++ tx-status
|
||||||
|
|= keccak=@ux
|
||||||
|
.^ ^tx-status
|
||||||
|
%gx
|
||||||
|
(~(scry agentio bowl) %aggregator /tx/(scot %ux keccak)/status/noun)
|
||||||
|
==
|
||||||
|
::
|
||||||
|
++ next-batch
|
||||||
|
.^ time
|
||||||
|
%gx
|
||||||
|
(~(scry agentio bowl) %aggregator /next-batch/noun)
|
||||||
|
==
|
||||||
|
::
|
||||||
|
++ nonce
|
||||||
|
|= [=ship =proxy:naive]
|
||||||
|
.^ (unit @)
|
||||||
|
%gx
|
||||||
|
%+ ~(scry agentio bowl)
|
||||||
|
%aggregator
|
||||||
|
/nonce/(scot %p ship)/[proxy]/noun
|
||||||
|
==
|
||||||
|
::
|
||||||
|
++ config
|
||||||
|
.^ roller-config
|
||||||
|
%gx
|
||||||
|
%+ ~(scry agentio bowl)
|
||||||
|
%aggregator
|
||||||
|
/config/noun
|
||||||
|
==
|
||||||
|
--
|
||||||
|
--
|
Loading…
Reference in New Issue
Block a user