urbit/pkg/arvo/mar/graph/validator/publish.hoon

60 lines
1.1 KiB
Plaintext
Raw Normal View History

/- *post
|_ i=indexed-post
++ grow
|%
++ noun i
2020-11-03 07:55:32 +03:00
:: +notification-kind
:: Ignore all containers, only notify on content
::
++ notification-kind
?+ index.p.i ~
[@ %1 @ ~] `[%note 0]
[@ %2 @ @ ~] `[%comment 1]
2020-11-03 07:55:32 +03:00
==
--
++ grab
|%
:: +noun: Validate publish post
::
++ noun
|= p=*
=/ ip ;;(indexed-post p)
2020-09-08 09:08:52 +03:00
?+ index.p.ip !!
:: top level post must have no content
[@ ~]
?> ?=(~ contents.p.ip)
ip
:: container for revisions
::
[@ %1 ~]
?> ?=(~ contents.p.ip)
ip
:: specific revision
:: first content is the title
:: revisions are numbered by the revision count
:: starting at one
[@ %1 @ ~]
2020-10-29 02:35:43 +03:00
?> ?=([* * *] contents.p.ip)
2020-09-08 09:08:52 +03:00
?> ?=(%text -.i.contents.p.ip)
ip
:: container for comments
::
[@ %2 ~]
?> ?=(~ contents.p.ip)
ip
:: container for comment revisions
::
2020-10-05 07:53:46 +03:00
[@ %2 @ ~]
?> ?=(~ contents.p.ip)
ip
:: specific comment revision
::
[@ %2 @ @ ~]
?> ?=(^ contents.p.ip)
ip
2020-09-08 09:08:52 +03:00
==
--
::
++ grad %noun
--