/ rules / D-CONTENT-05.py
D-CONTENT-05.py
 1  """
 2  Rule: D-CONTENT-05 - relay SFW only
 3  Type: moderation | Output: binary
 4  Description: Reject NSFW content on SFW-only relays.
 5  Spec reference: 8.1.4
 6  """
 7  
 8  # TODO: Implement relay SFW only
 9  # TODO: Implement relay SFW only
10  # Output: {"passed": bool}
11    # Output: {"passed": bool}
12  # Steps:
13    # Steps:
14  # 2. Extract 'nsfw' or 'adult' tag from entry
15      # 2. Extract 'nsfw' or 'adult' tag from entry
16  # 4. Return {'passed': True} if content matches relay policy
17      # 4. Return {'passed': True} if content matches relay policy
18  # Edge cases:
19    # Edge cases:
20  # - Ambiguous content
21      # - Ambiguous content
22  
23  # Dependencies: Relay config
24    # Dependencies: Relay config
25  # Priority: High (policy enforcement on SFW relays)
26    # Priority: High (policy enforcement on SFW relays)
27  from simple_types import BinaryRuleResult, Nip35Kind2003Event
28  
29  
30  def main(entry: Nip35Kind2003Event) -> BinaryRuleResult:
31      return {"passed": True}