2021-05-03 09:11:57 +03:00
|
|
|
:: dm-hook [landscape]: receive and send DMs
|
2021-04-23 04:03:36 +03:00
|
|
|
::
|
|
|
|
/+ default-agent, dbug, store=graph-store, graphlib=graph, agentio, resource
|
2021-05-03 09:11:57 +03:00
|
|
|
/+ sig=signatures, hook=dm-hook
|
2021-04-23 04:03:36 +03:00
|
|
|
::
|
|
|
|
|%
|
2021-05-03 09:11:57 +03:00
|
|
|
::
|
|
|
|
+$ base-state-0
|
|
|
|
$: screening=?
|
|
|
|
screened=(jug ship [=index:store =node:store])
|
|
|
|
pending=(jar ship atom)
|
|
|
|
==
|
|
|
|
::
|
|
|
|
+$ state-0 [%0 base-state-0]
|
2021-06-04 03:28:28 +03:00
|
|
|
+$ state-1 [%1 base-state-0]
|
|
|
|
+$ versioned-state
|
|
|
|
$% state-0
|
|
|
|
state-1
|
|
|
|
==
|
2021-04-23 04:03:36 +03:00
|
|
|
+$ card card:agent:gall
|
2021-05-03 09:11:57 +03:00
|
|
|
+$ nodes (map index:store node:store)
|
2021-05-20 07:20:59 +03:00
|
|
|
++ orm orm:store
|
2021-04-23 04:03:36 +03:00
|
|
|
--
|
|
|
|
::
|
2021-06-04 03:28:28 +03:00
|
|
|
=| state-1
|
2021-04-23 04:03:36 +03:00
|
|
|
=* state -
|
|
|
|
%- agent:dbug
|
|
|
|
^- agent:gall
|
|
|
|
::
|
|
|
|
|_ =bowl:gall
|
|
|
|
+* this .
|
|
|
|
def ~(. (default-agent this %|) bowl)
|
|
|
|
gra ~(. graphlib bowl)
|
|
|
|
io ~(. agentio bowl)
|
|
|
|
pass pass:io
|
|
|
|
::
|
|
|
|
++ on-init
|
|
|
|
:_ this
|
|
|
|
:_ ~
|
2021-05-04 09:08:08 +03:00
|
|
|
=/ dms=(list resource)
|
2021-05-17 09:16:16 +03:00
|
|
|
?. .^(? %gu (scry:io %graph-store ~))
|
2021-05-04 09:18:47 +03:00
|
|
|
~
|
2021-05-04 09:08:08 +03:00
|
|
|
%+ skim ~(tap in get-keys:gra)
|
2021-06-04 03:28:28 +03:00
|
|
|
|=([ship name=term] ?=(^ (rush name ;~(pfix (jest 'dm--') fed:ag))))
|
2021-05-04 09:08:08 +03:00
|
|
|
|^
|
2021-04-23 04:03:36 +03:00
|
|
|
%+ poke-our:pass %graph-store
|
|
|
|
%+ update:cg:gra now.bowl
|
2021-05-10 06:20:21 +03:00
|
|
|
:+ %add-graph [our.bowl %dm-inbox]
|
2021-05-04 09:08:08 +03:00
|
|
|
[graph `%graph-validator-dm %.n]
|
|
|
|
::
|
|
|
|
++ dm-parser
|
|
|
|
;~(pfix (jest 'dm--') fed:ag)
|
|
|
|
::
|
|
|
|
++ counterparty
|
|
|
|
|= rid=resource
|
|
|
|
=/ =ship (rash name.rid dm-parser)
|
|
|
|
?. =(our.bowl ship) ship
|
|
|
|
entity.rid
|
|
|
|
::
|
2021-05-20 07:20:59 +03:00
|
|
|
++ update-indices
|
|
|
|
|= [pfix=index:store =graph:store]
|
|
|
|
=* loop $
|
|
|
|
^- graph:store
|
|
|
|
%+ gas:orm *graph:store
|
|
|
|
%+ turn (tap:orm graph)
|
|
|
|
|= [=atom =node:store]
|
|
|
|
^- [^atom node:store]
|
|
|
|
=/ =index:store (snoc pfix atom)
|
|
|
|
:- atom
|
|
|
|
=. children.node
|
|
|
|
?: ?=(%empty -.children.node) children.node
|
|
|
|
[%graph loop(pfix index, graph p.children.node)]
|
|
|
|
?: ?=(%| -.post.node) node
|
|
|
|
node(index.p.post index)
|
|
|
|
::
|
2021-05-04 09:08:08 +03:00
|
|
|
++ graph
|
|
|
|
%+ roll dms
|
|
|
|
|= [rid=resource =graph:store]
|
2021-05-20 08:26:11 +03:00
|
|
|
^- graph:store
|
2021-05-04 09:08:08 +03:00
|
|
|
=/ =ship (counterparty rid)
|
|
|
|
=| =post:store
|
|
|
|
=: author.post our.bowl
|
|
|
|
index.post [ship ~]
|
|
|
|
time-sent.post now.bowl
|
|
|
|
==
|
2021-05-20 08:26:11 +03:00
|
|
|
=/ dm=graph:store
|
|
|
|
(update-indices ~[ship] (get-graph-mop:gra rid))
|
|
|
|
(put:orm:store graph `@`ship [%& post] %graph dm)
|
2021-05-04 09:08:08 +03:00
|
|
|
--
|
2021-04-23 04:03:36 +03:00
|
|
|
::
|
|
|
|
++ on-save !>(state)
|
|
|
|
++ on-load
|
2021-06-04 03:28:28 +03:00
|
|
|
|= =vase
|
2021-04-23 04:03:36 +03:00
|
|
|
^- (quip card _this)
|
2021-06-04 03:28:28 +03:00
|
|
|
=+ !<(old=versioned-state vase)
|
|
|
|
?: ?=(%1 -.old) `this(state old)
|
|
|
|
:_ this(state [%1 +.old])
|
|
|
|
(poke-self:pass noun+!>(%reinit))^~
|
2021-04-23 04:03:36 +03:00
|
|
|
::
|
|
|
|
++ on-poke
|
|
|
|
|= [=mark =vase]
|
|
|
|
^- (quip card _this)
|
|
|
|
|^
|
|
|
|
?+ mark (on-poke:def mark vase)
|
2021-06-04 03:28:28 +03:00
|
|
|
%noun
|
|
|
|
?+ q.vase !!
|
|
|
|
%reinit
|
|
|
|
?: (~(has in get-keys:gra) [our.bowl %dm-inbox])
|
|
|
|
`this
|
|
|
|
on-init
|
|
|
|
==
|
|
|
|
::
|
2021-05-03 09:11:57 +03:00
|
|
|
%dm-hook-action
|
|
|
|
=+ !<(=action:hook vase)
|
|
|
|
=^ cards state
|
|
|
|
?+ -.action !!
|
|
|
|
%accept (accept-screen ship.action)
|
|
|
|
%decline (decline-screen ship.action)
|
|
|
|
%screen (set-screen screen.action)
|
|
|
|
==
|
|
|
|
[cards this]
|
|
|
|
::
|
2021-05-03 05:41:43 +03:00
|
|
|
%graph-update-2
|
2021-04-23 04:03:36 +03:00
|
|
|
=+ !<(=update:store vase)
|
2021-05-04 08:10:47 +03:00
|
|
|
?+ -.q.update !!
|
2021-04-23 04:03:36 +03:00
|
|
|
%add-nodes
|
2021-05-10 06:20:21 +03:00
|
|
|
?> ?=([@ %dm-inbox] resource.q.update)
|
2021-04-30 07:16:03 +03:00
|
|
|
=^ cards state
|
|
|
|
?: =(our.bowl src.bowl)
|
2021-05-04 08:10:47 +03:00
|
|
|
(outgoing-add (hash-and-sign nodes.q.update))
|
2021-05-03 09:11:57 +03:00
|
|
|
?: &(screening !(dm-exists src.bowl))
|
|
|
|
(screen-add nodes.q.update)
|
2021-04-30 07:16:03 +03:00
|
|
|
(incoming-add nodes.q.update)
|
|
|
|
[cards this]
|
2021-04-23 04:03:36 +03:00
|
|
|
==
|
|
|
|
==
|
|
|
|
::
|
2021-05-04 08:10:47 +03:00
|
|
|
++ hash-and-sign
|
|
|
|
|= =nodes
|
|
|
|
%- ~(gas by *^nodes)
|
|
|
|
%+ turn ~(tap by nodes)
|
|
|
|
|= [=index:store =node:store]
|
|
|
|
^- [index:store node:store]
|
|
|
|
:- index
|
|
|
|
?> ?=(%& -.post.node)
|
|
|
|
=* p post.node
|
|
|
|
=/ =hash:store
|
|
|
|
`@ux`(sham [~ author time-sent contents]:p.p)
|
|
|
|
%_ node
|
|
|
|
hash.p.post `hash
|
|
|
|
::
|
|
|
|
signatures.p.post
|
|
|
|
%- ~(gas in *signatures:store)
|
|
|
|
[(sign:sig our.bowl now.bowl hash)]~
|
|
|
|
==
|
|
|
|
::
|
2021-05-03 09:11:57 +03:00
|
|
|
++ give
|
|
|
|
|= =action:hook
|
|
|
|
^- card
|
|
|
|
(fact:io dm-hook-action+!>(action) ~[/updates])
|
|
|
|
::
|
|
|
|
++ accept-screen
|
|
|
|
|= =ship
|
|
|
|
^- (quip card _state)
|
|
|
|
=/ unscreened=nodes
|
|
|
|
%- ~(gas by *nodes)
|
|
|
|
~(tap in (~(get ju screened) ship))
|
|
|
|
:_ state(screened (~(del by screened) ship))
|
|
|
|
%+ welp (add-missing-root ship)
|
|
|
|
:~ %+ poke-our:pass %graph-store
|
2021-05-10 06:20:21 +03:00
|
|
|
(update:cg:gra now.bowl %add-nodes [our.bowl %dm-inbox] unscreened)
|
2021-05-03 09:11:57 +03:00
|
|
|
::
|
|
|
|
(give %accept ship)
|
|
|
|
==
|
|
|
|
::
|
|
|
|
++ set-screen
|
|
|
|
|= screen=?
|
|
|
|
:_ state(screening screen)
|
|
|
|
(give %screen screen)^~
|
|
|
|
::
|
|
|
|
++ decline-screen
|
|
|
|
|= =ship
|
|
|
|
^- (quip card _state)
|
|
|
|
:_ state(screened (~(del by screened) ship))
|
|
|
|
(give %decline ship)^~
|
|
|
|
::
|
|
|
|
++ screen-add
|
|
|
|
|= =nodes
|
|
|
|
?> =(1 ~(wyt by nodes))
|
|
|
|
=/ ship-screen (~(get ju screened) src.bowl)
|
|
|
|
=. ship-screen (~(uni in ship-screen) (normalize-incoming nodes))
|
|
|
|
`state(screened (~(put by screened) src.bowl ship-screen))
|
|
|
|
::
|
|
|
|
++ dm-exists
|
|
|
|
|= =ship
|
|
|
|
=/ =index:store
|
|
|
|
[ship ~]
|
2021-05-10 06:20:21 +03:00
|
|
|
(check-node-existence:gra [our.bowl %dm-inbox] index)
|
2021-05-03 09:11:57 +03:00
|
|
|
::
|
2021-04-23 07:14:47 +03:00
|
|
|
++ add-node
|
|
|
|
|= [=index:store =node:store]
|
|
|
|
^- update:store
|
2021-05-10 06:20:21 +03:00
|
|
|
:^ now.bowl %add-nodes [our.bowl %dm-inbox]
|
2021-05-03 09:11:57 +03:00
|
|
|
(~(gas by *nodes) [index node] ~)
|
2021-04-23 07:14:47 +03:00
|
|
|
::
|
|
|
|
++ add-missing-root
|
|
|
|
|= =ship
|
|
|
|
^- (list card)
|
2021-05-03 09:11:57 +03:00
|
|
|
?: (dm-exists ship) ~
|
2021-04-23 07:14:47 +03:00
|
|
|
=/ =index:store
|
|
|
|
[ship ~]
|
2021-05-03 05:41:43 +03:00
|
|
|
=| =post:store
|
|
|
|
=: author.post our.bowl
|
|
|
|
index.post index
|
|
|
|
time-sent.post now.bowl
|
2021-04-23 07:14:47 +03:00
|
|
|
==
|
2021-05-03 05:41:43 +03:00
|
|
|
=/ =node:store
|
|
|
|
[%&^post %empty ~]
|
2021-04-30 07:16:03 +03:00
|
|
|
(poke-our:pass %graph-store (update:cg:gra (add-node index node)))^~
|
2021-04-23 07:14:47 +03:00
|
|
|
::
|
2021-04-23 04:39:29 +03:00
|
|
|
++ outgoing-add
|
2021-05-03 09:11:57 +03:00
|
|
|
|= =nodes
|
2021-04-30 07:16:03 +03:00
|
|
|
^- (quip card _state)
|
|
|
|
=/ nodes=(list [=index:store =node:store])
|
|
|
|
~(tap by nodes)
|
|
|
|
=| cards=(list card)
|
|
|
|
|- ^- (quip card _state)
|
|
|
|
?~ nodes [cards state]
|
|
|
|
?> ?=([@ @ ~] index.i.nodes)
|
|
|
|
=/ =ship i.index.i.nodes
|
2021-04-23 04:03:36 +03:00
|
|
|
=/ =dock [ship %dm-hook]
|
|
|
|
=/ =wire /dm/(scot %p ship)
|
2021-04-23 07:14:47 +03:00
|
|
|
=/ =cage
|
2021-04-30 07:16:03 +03:00
|
|
|
(update:cg:gra (add-node [index node]:i.nodes))
|
|
|
|
%= $
|
|
|
|
nodes t.nodes
|
|
|
|
pending (~(add ja pending) ship now.bowl)
|
2021-04-23 07:14:47 +03:00
|
|
|
::
|
2021-04-30 07:16:03 +03:00
|
|
|
cards
|
|
|
|
;: welp
|
|
|
|
cards
|
2021-05-21 03:07:10 +03:00
|
|
|
::
|
2021-04-30 07:16:03 +03:00
|
|
|
(add-missing-root ship)
|
2021-05-21 03:07:10 +03:00
|
|
|
::
|
|
|
|
:- (poke-our:pass %graph-store cage)
|
|
|
|
?: =(our.bowl ship) ~
|
|
|
|
(~(poke pass wire) dock cage)^~
|
2021-04-30 07:16:03 +03:00
|
|
|
==
|
|
|
|
==
|
|
|
|
::
|
2021-05-03 09:11:57 +03:00
|
|
|
++ normalize-incoming
|
|
|
|
|= =nodes
|
|
|
|
^- ^nodes
|
|
|
|
%- ~(gas by *^nodes)
|
2021-04-23 04:03:36 +03:00
|
|
|
%+ turn ~(tap by nodes)
|
|
|
|
|= [=index:store =node:store]
|
|
|
|
?> ?=([@ @ ~] index)
|
|
|
|
?> ?=(%empty -.children.node)
|
2021-05-03 05:41:43 +03:00
|
|
|
?> ?=(%& -.post.node)
|
2021-04-23 04:03:36 +03:00
|
|
|
=/ new-index=index:store
|
2021-05-03 09:11:57 +03:00
|
|
|
[src.bowl now.bowl ~]
|
2021-05-03 05:41:43 +03:00
|
|
|
=. index.p.post.node
|
2021-04-23 04:03:36 +03:00
|
|
|
new-index
|
|
|
|
[new-index node]
|
2021-05-03 09:11:57 +03:00
|
|
|
::
|
|
|
|
++ incoming-add
|
|
|
|
|= =nodes
|
|
|
|
^- (quip card _state)
|
|
|
|
:_ state
|
|
|
|
?> =(1 ~(wyt by nodes))
|
|
|
|
=* ship src.bowl
|
|
|
|
%+ snoc (add-missing-root ship)
|
|
|
|
%+ poke-our:pass %graph-store
|
|
|
|
%+ update:cg:gra now.bowl
|
2021-05-10 06:20:21 +03:00
|
|
|
[%add-nodes [our.bowl %dm-inbox] (normalize-incoming nodes)]
|
2021-04-23 04:03:36 +03:00
|
|
|
--
|
|
|
|
::
|
2021-05-03 09:11:57 +03:00
|
|
|
++ on-watch
|
|
|
|
|= =path
|
|
|
|
?. ?=([%updates ~] path)
|
|
|
|
(on-watch:def path)
|
|
|
|
:_ this
|
|
|
|
:~ (fact-init:io dm-hook-action+!>([%pendings ~(key by screened)]))
|
|
|
|
(fact-init:io dm-hook-action+!>([%screen screening]))
|
|
|
|
==
|
|
|
|
::
|
2021-04-23 04:03:36 +03:00
|
|
|
++ on-peek on-peek:def
|
|
|
|
++ on-leave on-leave:def
|
2021-04-30 07:16:03 +03:00
|
|
|
++ on-agent
|
|
|
|
|= [=wire =sign:agent:gall]
|
|
|
|
^- (quip card _this)
|
|
|
|
|^
|
|
|
|
?. ?=([%dm @ ~] wire)
|
|
|
|
(on-agent:def wire sign)
|
|
|
|
?> ?=(%poke-ack -.sign)
|
|
|
|
=/ =ship
|
|
|
|
(slav %p i.t.wire)
|
|
|
|
=^ acked=atom state
|
|
|
|
(remove-pending ship)
|
|
|
|
?~ p.sign
|
|
|
|
`this
|
|
|
|
:_ this
|
|
|
|
:_ ~
|
|
|
|
=+ indices=(~(gas in *(set index:store)) ~[ship acked] ~)
|
|
|
|
%+ poke-our:pass %graph-store
|
2021-05-10 06:20:21 +03:00
|
|
|
(update:cg:gra now.bowl %remove-posts [our.bowl %dm-inbox] indices)
|
2021-04-30 07:16:03 +03:00
|
|
|
::
|
|
|
|
++ remove-pending
|
|
|
|
|= =ship
|
|
|
|
^- [atom _state]
|
|
|
|
=/ pend-ship=(list atom)
|
|
|
|
(flop (~(get ja pending) ship))
|
|
|
|
?> ?=(^ pend-ship)
|
|
|
|
[i.pend-ship state(pending (~(put by pending) ship (flop t.pend-ship)))]
|
|
|
|
--
|
|
|
|
|
2021-04-23 04:03:36 +03:00
|
|
|
++ on-arvo on-arvo:def
|
|
|
|
++ on-fail on-fail:def
|
|
|
|
--
|