nips/172.md

101 lines
4.9 KiB
Markdown
Raw Normal View History

2023-06-12 22:35:23 +00:00
NIP-172
=======
Moderated Communities (Reddit Style)
------------------------------------
2023-06-15 13:50:06 +00:00
`draft` `optional` `author:vitorpamplona` `author:arthurfranca`
2023-06-12 22:35:23 +00:00
The goal of this NIP is to create moderator-approved public communities around a topic. It defines the replaceable event `kind:34550` to define the community and the current list of moderators/administrators. Users that want to post into the community, simply tag any Nostr event with the community's `a` tag (See [NIP-33](33.md)). Moderators issue an approval event `kind:4550` that links the community with the new post.
2023-06-12 22:35:23 +00:00
# Community Definition
2023-06-12 22:35:23 +00:00
2023-06-19 19:07:40 +00:00
`Kind:34550` SHOULD include any field that helps define the community and the set of moderators. `relay` tags MAY be used to describe the preferred relay to download requests and approvals.
2023-06-12 22:35:23 +00:00
```js
{
"id": "<32-bytes lowercase hex-encoded SHA-256 of the the serialized event data>",
"pubkey": "<32-bytes lowercase hex-encoded public key of the event creator>",
"created_at": "<Unix timestamp in seconds>",
"kind": 34550,
2023-06-12 22:35:23 +00:00
"tags": [
["d", "<Community name>"],
["description", "<Community description>"],
["image", "<Community image url>", "<Width>x<Height>"],
//.. other tags relevant to defining the community
2023-06-12 22:35:23 +00:00
// moderators
["p", "<32-bytes hex of a pubkey1>", "<optional recommended relay URL>", "moderator"],
["p", "<32-bytes hex of a pubkey2>", "<optional recommended relay URL>", "moderator"],
["p", "<32-bytes hex of a pubkey3>", "<optional recommended relay URL>", "moderator"],
2023-06-19 19:07:40 +00:00
// relays used by the community (w/optional marker)
["relay", "<relay hosting author kind 0>", "author"],
2023-06-19 19:07:40 +00:00
["relay", "<relay where to send and receive requests>", "requests"],
["relay", "<relay where to send and receive approvals>", "approvals"],
["relay", "<relay where to post requests to and fetch approvals from>"]
2023-06-12 22:35:23 +00:00
]
}
```
# New Post Request
Any Nostr event can be a post request. Clients MUST add the community's `a` tag to the new post event in order to be presented for the moderator's approval.
2023-06-12 22:35:23 +00:00
```js
{
"id": "<32-bytes lowercase hex-encoded SHA-256 of the the serialized event data>",
"pubkey": "<32-bytes lowercase hex-encoded public key of the event creator>",
"created_at": "<Unix timestamp in seconds>",
"kind": 1,
2023-06-12 22:35:23 +00:00
"tags": [
["a", "34550:<Community event author pubkey>:<d-identifier of the community>", "<Optional relay url>"],
2023-06-12 22:35:23 +00:00
],
"content": "<My content>"
2023-06-12 22:35:23 +00:00
}
```
Community management clients MAY filter all mentions to a given `kind:34550` event and request moderators to approve each submission. Moderators MAY delete his/her approval of a post at any time using event deletions (See [NIP-09](09.md)).
2023-06-12 22:35:23 +00:00
# Post Approval by moderators
The post-approval event MUST include `a` tags of the communities the moderator is posting into (one or more), the `e` tag of the post and `p` tag of the author of the post (for approval notificaitons). The event SHOULD also include the stringified `post request` event inside the `.content` ([NIP-18-style](18.md)) and a `k` tag with the original post's event kind to allow filtering of approved posts by kind.
2023-06-12 22:35:23 +00:00
```js
{
"id": "<32-bytes lowercase hex-encoded SHA-256 of the the serialized event data>",
"pubkey": "<32-bytes lowercase hex-encoded public key of the event creator>",
"created_at": "<Unix timestamp in seconds>",
"kind": "4550",
2023-06-12 22:35:23 +00:00
"tags": [
["a", "34550:<Community event author pubkey>:<d-identifier of the community>", "<Optional relay url>"],
["e", "<Post Request ID>", "<Optional relay url>"],
["p", "<Post Request Author ID>", "<Optional relay url>"],
["k", "<New Post Request kind>"],
2023-06-12 22:35:23 +00:00
],
"content": "<New Post Request JSON>"
2023-06-12 22:35:23 +00:00
}
```
2023-06-15 13:53:55 +00:00
It's recommended that multiple moderators approve posts to avoid deleting them from the community when a moderator is removed from the owner's list. In case the full list of moderators must be rotated, the new moderator set must sign new approvals for posts in the past or the community will restart. The owner can also periodically copy and re-sign of each moderator's approval events to make sure posts don't dissapear with moderators.
2023-06-12 22:35:23 +00:00
Replaceable events can be submitted for approval in two ways: (i) by their `e` tag if moderators want to approve each individual change to the repleceable event or (ii) by the `a` tag if the moderator trusts the original post author to not modify the event beyond community rules.
Clients SHOULD evaluate any non-`34550:*` `a` tag as posts to be included in all `34550:*` `a` tags.
2023-06-12 22:35:23 +00:00
# Displaying
Community clients SHOULD display posts that have been approved by at least 1 moderator or by the community owner.
2023-06-12 22:35:23 +00:00
2023-06-12 22:38:20 +00:00
The following filter displays the approved posts.
2023-06-12 22:35:23 +00:00
```js
{
"authors": ["<Author pubkey>", "<Moderator1 pubkey>", "<Moderator2 pubkey>", "<Moderator3 pubkey>", ...],
2023-06-15 13:53:55 +00:00
"kinds": [4550],
"#a": ["34550:<Community event author pubkey>:<d-identifier of the community>"],
2023-06-12 22:35:23 +00:00
}
```
Clients MAY hide approvals by blocked moderators at the user's request.