mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-12-21 05:41:43 +03:00
61 lines
1.3 KiB
Plaintext
61 lines
1.3 KiB
Plaintext
/- *post, met=metadata-store
|
|
|_ i=indexed-post
|
|
++ grow
|
|
|%
|
|
++ noun i
|
|
::
|
|
++ graph-permissions-add
|
|
|= vip=vip-metadata:met
|
|
=/ reader
|
|
?=(%reader-comments vip)
|
|
?+ index.p.i !!
|
|
[@ ~] [%yes %yes %no]
|
|
[@ @ ~] [%yes %yes ?:(reader %yes %no)]
|
|
[@ @ @ ~] [%self %self %self]
|
|
==
|
|
::
|
|
++ graph-permissions-remove
|
|
|= vip=vip-metadata:met
|
|
=/ reader
|
|
?=(%reader-comments vip)
|
|
?+ index.p.i !!
|
|
[@ ~] [%yes %self %self]
|
|
[@ @ ~] [%yes %self %self]
|
|
[@ @ @ ~] [%yes %self %self]
|
|
==
|
|
::
|
|
++ notification-kind
|
|
?+ index.p.i ~
|
|
[@ ~] `[%link [0 1] %each %children]
|
|
[@ @ %1 ~] `[%comment [1 2] %count %siblings]
|
|
[@ @ @ ~] `[%edit-comment [1 2] %none %none]
|
|
==
|
|
--
|
|
++ grab
|
|
|%
|
|
++ noun
|
|
|= p=*
|
|
=/ ip ;;(indexed-post p)
|
|
?+ index.p.ip ~|(index+index.p.ip !!)
|
|
:: top-level link post; title and url
|
|
::
|
|
[@ ~]
|
|
?> ?=([[%text @] [%url @] ~] contents.p.ip)
|
|
ip
|
|
::
|
|
:: comment on link post; container structure
|
|
::
|
|
[@ @ ~]
|
|
?> ?=(~ contents.p.ip)
|
|
ip
|
|
::
|
|
:: comment on link post; comment text
|
|
::
|
|
[@ @ @ ~]
|
|
?> ?=(^ contents.p.ip)
|
|
ip
|
|
==
|
|
--
|
|
++ grad %noun
|
|
--
|