Surface the Discord bot's moderation data on the admin panel: a read-only
staff dashboard over the existing mod_actions log, per-user history, staff
notes, and a new moderator role. No bot changes.
Schema
- users.role ENUM gains 'moderator' (CREATE + idempotent ALTER for existing DBs)
- new server-owned mod_notes table (staff_only/admin_only visibility)
Server
- model/moderation: read mod_actions via the shared pool (documented read-only
cross of the bot/server ownership boundary), correlate accounts through
user_identities (provider='discord'), flag automated actions via
staff_user_id === bot_config.application_id; pure reshaping helpers isolated
in moderation.pure.js so they unit-test without opening a DB pool
- model/modNotes: list/add with role-gated admin_only visibility
- admin/moderation.controller + routes under /api/v1/admin/moderation/* gated by
requireRole('admin','moderator'); admin_only note writes require admin
- allow assigning 'moderator' in the user create/update validators
Client
- /admin/moderation overview (window tiles, type-filterable recent feed, user
lookup) and /user/:discordId history (tabs + notes with add-note)
- RoleGate; AdminLayout filters nav and confines moderators to their section
- moderator badge + action-type/auto badges
Deferred (see plan): 6b bot event capture (joins/leaves/filter/spam), 6c appeals
(needs public accounts), 6d /internal/mod-reverse bot reversal callback.
Verified: 116 server unit tests, client build, DB-backed model smoke, full
HTTP/RBAC e2e, and a browser click-through of the dashboard.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_019rao86n5cXpwAyjdBFEshV
104 lines
3.4 KiB
JavaScript
104 lines
3.4 KiB
JavaScript
import { useState } from 'react'
|
|
import Modal from '../../../components/Modal.jsx'
|
|
import { api } from '../../../api/client.js'
|
|
|
|
export default function UserEditor({ user, onClose, onSaved }) {
|
|
const isEdit = Boolean(user)
|
|
const [form, setForm] = useState({
|
|
username: user?.username || '',
|
|
password: '',
|
|
role: user?.role || 'admin',
|
|
})
|
|
const [busy, setBusy] = useState(false)
|
|
const [error, setError] = useState('')
|
|
|
|
const set = (k) => (e) => setForm((f) => ({ ...f, [k]: e.target.value }))
|
|
|
|
async function save() {
|
|
if (!form.username.trim()) return setError('Username is required.')
|
|
if (!isEdit && form.password.length < 8) return setError('Password must be at least 8 characters.')
|
|
if (isEdit && form.password && form.password.length < 8) return setError('Password must be at least 8 characters.')
|
|
setBusy(true)
|
|
setError('')
|
|
try {
|
|
if (isEdit) {
|
|
const payload = { username: form.username.trim(), role: form.role }
|
|
if (form.password) payload.password = form.password
|
|
await api.admin.updateUser(user.id, payload)
|
|
} else {
|
|
await api.admin.createUser({ username: form.username.trim(), password: form.password, role: form.role })
|
|
}
|
|
onSaved()
|
|
} catch (err) {
|
|
setError(err.message || 'Could not save the user.')
|
|
setBusy(false)
|
|
}
|
|
}
|
|
|
|
async function remove() {
|
|
if (!confirm(`Delete user "${user.username}"?`)) return
|
|
setBusy(true)
|
|
try {
|
|
await api.admin.deleteUser(user.id)
|
|
onSaved()
|
|
} catch (err) {
|
|
setError(err.message || 'Could not delete this user.')
|
|
setBusy(false)
|
|
}
|
|
}
|
|
|
|
return (
|
|
<Modal
|
|
title={isEdit ? `Edit ${user.username}` : 'Add user'}
|
|
onClose={onClose}
|
|
width={460}
|
|
footer={
|
|
<>
|
|
{isEdit && (
|
|
<button onClick={remove} disabled={busy} className="sans" style={delStyle}>
|
|
Delete
|
|
</button>
|
|
)}
|
|
<button onClick={onClose} disabled={busy} className="pill">
|
|
Cancel
|
|
</button>
|
|
<button onClick={save} disabled={busy} className="btn btn-primary btn-sq">
|
|
{busy ? 'Saving…' : 'Save'}
|
|
</button>
|
|
</>
|
|
}
|
|
>
|
|
<div style={{ display: 'flex', flexDirection: 'column', gap: 16 }}>
|
|
{error && <p className="sans" style={{ margin: 0, color: '#d98b84', fontSize: '0.85rem' }}>{error}</p>}
|
|
<label>
|
|
<span className="field-label">Username</span>
|
|
<input type="text" value={form.username} onChange={set('username')} className="input" autoComplete="off" />
|
|
</label>
|
|
<label>
|
|
<span className="field-label">{isEdit ? 'New password (leave blank to keep)' : 'Password'}</span>
|
|
<input type="password" value={form.password} onChange={set('password')} className="input" autoComplete="new-password" />
|
|
</label>
|
|
<label>
|
|
<span className="field-label">Role</span>
|
|
<select value={form.role} onChange={set('role')} className="select">
|
|
<option value="admin">admin</option>
|
|
<option value="editor">editor</option>
|
|
<option value="moderator">moderator</option>
|
|
</select>
|
|
</label>
|
|
</div>
|
|
</Modal>
|
|
)
|
|
}
|
|
|
|
const delStyle = {
|
|
border: '1px solid #6e3b38',
|
|
borderRadius: 999,
|
|
padding: '7px 16px',
|
|
background: 'rgba(110,59,56,0.18)',
|
|
color: '#d98b84',
|
|
fontSize: '0.86rem',
|
|
cursor: 'pointer',
|
|
marginRight: 'auto',
|
|
}
|