urbit/pkg/arvo/ted/graph/leave.hoon

77 lines
1.9 KiB
Plaintext
Raw Normal View History

2020-09-03 08:07:18 +03:00
/- spider, graph-view, graph=graph-store, *metadata-store, *group
/+ strandio, resource
=>
|%
++ strand strand:spider
++ poke poke:strandio
++ poke-our poke-our:strandio
2020-09-04 10:51:28 +03:00
::
2020-09-03 08:07:18 +03:00
++ scry-metadata
|= rid=resource
2020-09-11 03:10:44 +03:00
=/ m (strand ,resource)
^- form:m
;< pax=(unit (set path)) bind:m
%+ scry:strandio ,(unit (set path))
2020-09-03 08:07:18 +03:00
;: weld
/gx/metadata-store/resource/graph
2020-09-03 08:07:18 +03:00
(en-path:resource rid)
/noun
==
2020-09-11 03:10:44 +03:00
?> ?=(^ pax)
?> ?=(^ u.pax)
(pure:m (de-path:resource n.u.pax))
2020-09-04 10:51:28 +03:00
::
2020-09-03 08:07:18 +03:00
++ scry-group
|= rid=resource
2020-09-11 03:10:44 +03:00
=/ m (strand ,group)
^- form:m
2020-09-03 08:07:18 +03:00
;< ugroup=(unit group) bind:m
%+ scry:strandio ,(unit group)
;: weld
/gx/group-store/groups
2020-09-03 08:07:18 +03:00
(en-path:resource rid)
/noun
==
(pure:m (need ugroup))
2020-09-04 10:51:28 +03:00
::
2020-09-03 08:07:18 +03:00
++ delete-graph
|= [now=time rid=resource]
2020-09-03 08:07:18 +03:00
=/ m (strand ,~)
2020-09-11 03:10:44 +03:00
^- form:m
2020-09-03 08:07:18 +03:00
;< ~ bind:m
2020-09-11 03:10:44 +03:00
(poke-our %graph-pull-hook %pull-hook-action !>([%remove rid]))
2020-09-03 08:07:18 +03:00
;< ~ bind:m
(poke-our %graph-store %graph-update !>([%0 now [%remove-graph rid]]))
2020-09-03 08:07:18 +03:00
(pure:m ~)
--
2020-09-04 10:51:28 +03:00
::
2020-09-03 08:07:18 +03:00
^- thread:spider
|= arg=vase
=/ m (strand ,vase)
^- form:m
=+ !<([=action:graph-view ~] arg)
2020-09-03 08:07:18 +03:00
?> ?=(%leave -.action)
;< =bowl:spider bind:m get-bowl:strandio
2020-09-11 06:08:16 +03:00
?: =(our.bowl entity.rid.action)
(strand-fail:strandio %bad-request ~)
;< group-rid=resource bind:m (scry-metadata rid.action)
;< g=group bind:m (scry-group group-rid)
2020-09-11 03:10:44 +03:00
?. hidden.g
;< ~ bind:m (delete-graph now.bowl rid.action)
2020-09-11 03:10:44 +03:00
(pure:m !>(~))
2020-09-03 08:07:18 +03:00
;< ~ bind:m
%+ poke-our %metadata-hook
metadata-hook-action+!>([%remove (en-path:resource rid.action)])
;< ~ bind:m
%+ poke-our %metadata-store
:- %metadata-action
!> :+ %remove
(en-path:resource rid.action)
[%graph (en-path:resource rid.action)]
;< ~ bind:m
(poke-our %group-pull-hook %pull-hook-action !>([%remove rid.action]))
2020-09-03 08:07:18 +03:00
;< ~ bind:m
(poke-our %group-store %group-action !>([%remove-group rid.action ~]))
;< ~ bind:m (delete-graph now.bowl rid.action)
2020-09-03 08:07:18 +03:00
(pure:m !>(~))