forked from retoor/devplacepy
Implements the moderation and consent obligations a social platform carries, so the web version and any client that speaks to it enforce the same rules. Moderation core (services/moderation/, database/moderation.py): a reportable target registry, the content filter and its choke points, the report queue with atomic resolution, enforcement actions, consent tracking, maturity gating, and account deletion with a grace window. Surfaces: POST /reports plus the member report list, /admin/moderation and the per-report admin view, /workspaces, terms acceptance at /auth/terms, consent and account deletion under /profile, the report button and dialog partials, the maturity gate, and the moderation stylesheet and ReportDialog client. Every user-generated surface stays reportable by construction: new content tables are registered in REPORTABLE_TARGETS or listed in UNREPORTABLE_TABLES with a reason, and the registry test fails the suite on anything left unclassified. Docs: community guidelines, content moderation, intellectual property, privacy, terms, contact, and the admin-only moderation operations page, plus the moderation API group and the Devii moderation actions. Compliance record: applecomp.md is the requirement register, applechanges.md the gap analysis against this codebase, and appleimpl.md the implementation design they resolve to. Tests cover the report flow, admin moderation, consent, account deletion, terms acceptance, workspaces, and the registry invariant across the unit, api, and e2e tiers.
57 lines
1.6 KiB
Python
57 lines
1.6 KiB
Python
# retoor <retoor@molodetz.nl>
|
|
|
|
import argparse
|
|
import sys
|
|
from devplacepy.cli.accounts import register_accounts
|
|
from devplacepy.cli.roles import register_roles
|
|
from devplacepy.cli.apikeys import register_apikeys
|
|
from devplacepy.cli.tokens import register_tokens
|
|
from devplacepy.cli.news import register_news
|
|
from devplacepy.cli.attachments import register_attachments
|
|
from devplacepy.cli.devii import register_devii
|
|
from devplacepy.cli.jobs import register_jobs
|
|
from devplacepy.cli.backups import register_backups
|
|
from devplacepy.cli.containers import register_containers
|
|
from devplacepy.cli.migrate import register_migrate
|
|
from devplacepy.cli.game import register_game
|
|
from devplacepy.cli.quiz import register_quiz
|
|
from devplacepy.cli.gateway import register_gateway
|
|
from devplacepy.cli.messaging import register_messaging
|
|
|
|
|
|
def build_parser():
|
|
parser = argparse.ArgumentParser(description="DevPlace admin CLI")
|
|
sub = parser.add_subparsers(title="commands", dest="command")
|
|
|
|
register_roles(sub)
|
|
register_apikeys(sub)
|
|
register_tokens(sub)
|
|
register_news(sub)
|
|
register_attachments(sub)
|
|
register_devii(sub)
|
|
register_jobs(sub)
|
|
register_backups(sub)
|
|
register_containers(sub)
|
|
register_migrate(sub)
|
|
register_game(sub)
|
|
register_quiz(sub)
|
|
register_gateway(sub)
|
|
register_messaging(sub)
|
|
register_accounts(sub)
|
|
|
|
return parser
|
|
|
|
|
|
def main():
|
|
parser = build_parser()
|
|
args = parser.parse_args()
|
|
if hasattr(args, "func"):
|
|
args.func(args)
|
|
else:
|
|
parser.print_help()
|
|
sys.exit(1)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|