Pre-launch — Gluecron is in final validation. Public signups and git hosting for non-owner users open after launch review.
CodeIssuesDiscussionsWikiPull RequestsProjectsCommitsActionsReleasesContributorsPulse● GatesSecuritySettingsDeploymentsPipelineInsightsAgents✨ Explain✨ Ask AI✨ Workspace✨ Spec✨ Tests▓ Debt Map✨ NL Search🏛 Archaeology
claude/adoring-hopper-5x74bqclaude/affectionate-feynman-ykrf1hclaude/architecture-audit-design-wxprenclaude/build-status-update-3MXsfclaude/charming-meitner-mllb5rclaude/compare-gate-gluecron-s4mFQclaude/confident-faraday-tikcwbclaude/continue-work-XMTlIclaude/crontech-gluecron-deploy-7MIECclaude/crontech-platform-setup-SeKfwclaude/design-2026claude/ecstatic-ptolemy-jMdigclaude/enhance-github-integration-QNHdGclaude/fix-aa-loop-issue-PonMQclaude/fix-actions-and-processclaude/fix-desktop-errors-XqoW8claude/fix-red-workflowsclaude/fix-website-access-6FKJNclaude/gatetest-integration-hardeningclaude/github-audit-improvements-bDFr9claude/gluecron-launch-status-FoMRlclaude/hopeful-lamport-olfCTclaude/issue-to-pr-and-protectionsclaude/jolly-heisenberg-2sg1Qclaude/launch-preparation-QmTb6claude/new-session-xk1l7claude/plan-platform-architecture-kkN4yclaude/platform-analysis-roadmap-1nUGLclaude/platform-launch-assessment-8dWV8claude/polish-platform-release-AeDrUclaude/resume-previous-work-KzyLwclaude/review-crontech-handoff-qYEVqclaude/review-project-completeness-lHhS2claude/review-readme-docs-ulqPKclaude/serene-edison-rj87weclaude/setup-multi-repo-dev-BCwNQclaude/ship-fixes-and-tests-Jvz1cclaude/site-audit-competitive-pctlwgclaude/site-migration-vercel-XstpKclaude/standalone-product-repos-XHFTDcopilot/feat-smart-empty-states-keyboard-first-enhancementcopilot/feat-smart-morning-digest-review-context-restorecopilot/fix-and-process-workflowscopilot/update-ai-powered-code-reviewfeat/debt-mapfeat/push-policy-codeowners-hardeningfeat/smart-digest-contextfeat/stage-impactfeat/t1-secret-migrationfeat/u-polishfeat/w-self-hostfeat/w2-claude-configfix/agent-journey-orphan-sweepgatetest/auto-fix-1776586424172gatetest/auto-fix-1776586534814gatetest/auto-fix-1776590685143gatetest/auto-fix-1776590808199mainops/redeploy-retriggerstyle/dxt-cta-themeworktree-agent-a3377aad30d55da26worktree-agent-a7ef607b7ee1d6c74
admin-deletions.tsx12.9 KB · 300 lines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
/**
 * GET  /admin/deletions      — list users pending purge + completed purges
 * POST /admin/deletions/:id/purge-now — force-run deletion cascade immediately
 *
 * Gated by isSiteAdmin (same pattern as all other admin sub-pages).
 */

import { Hono } from "hono";
import { eq, isNotNull, lt } from "drizzle-orm";
import { db } from "../db";
import { users } from "../db/schema";
import { Layout } from "../views/layout";
import { softAuth } from "../middleware/auth";
import type { AuthEnv } from "../middleware/auth";
import { isSiteAdmin } from "../lib/admin";
import { purgeScheduledAccounts } from "../lib/account-deletion";
import { audit } from "../lib/notify";

const adminDeletions = new Hono<AuthEnv>();
adminDeletions.use("*", softAuth);

async function gate(c: any): Promise<{ user: any } | Response> {
  const user = c.get("user");
  if (!user) return c.redirect("/login?next=/admin/deletions");
  if (!(await isSiteAdmin(user.id))) {
    return c.html(
      <Layout title="Forbidden" user={user}>
        <div style="max-width:540px;margin:80px auto;padding:32px;text-align:center;background:var(--bg-elevated);border:1px solid var(--border);border-radius:16px;">
          <h2 style="font-family:var(--font-display);font-size:22px;margin:0 0 8px;color:var(--text-strong);">403 — Not a site admin</h2>
          <p style="color:var(--text-muted);margin:0;font-size:14px;">You don't have permission to view this page.</p>
        </div>
      </Layout>,
      403
    );
  }
  return { user };
}

const styles = `
  .adm-del-wrap { max-width: 1400px; margin: 0 auto; padding: var(--space-6) var(--space-4); }

  .adm-del-hero {
    position: relative;
    margin-bottom: var(--space-5);
    padding: var(--space-5) var(--space-6);
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
  }
  .adm-del-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #f87171 30%, #fb923c 70%, transparent 100%);
    opacity: 0.7;
    pointer-events: none;
  }
  .adm-del-hero-inner { position: relative; z-index: 1; display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
  .adm-del-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: #fb923c; margin-bottom: 6px; }
  .adm-del-title { font-family: var(--font-display); font-size: clamp(24px,3.5vw,36px); font-weight: 800; letter-spacing: -0.025em; margin: 0 0 4px; color: var(--text-strong); }
  .adm-del-sub { font-size: 14px; color: var(--text-muted); margin: 0; line-height: 1.5; }
  .adm-del-back { display: inline-flex; align-items: center; gap: 6px; padding: 7px 12px; font-size: 12.5px; color: var(--text-muted); background: rgba(255,255,255,0.02); border: 1px solid var(--border); border-radius: 8px; text-decoration: none; font-weight: 500; transition: border-color 120ms,color 120ms,background 120ms; }
  .adm-del-back:hover { border-color: var(--border-strong); color: var(--text-strong); background: rgba(255,255,255,0.04); }

  .adm-del-section { margin-bottom: var(--space-6); }
  .adm-del-section-title { font-family: var(--font-display); font-size: 16px; font-weight: 700; letter-spacing: -0.012em; color: var(--text-strong); margin: 0 0 var(--space-3); display: flex; align-items: center; gap: 10px; }
  .adm-del-badge { display: inline-flex; align-items: center; padding: 2px 8px; border-radius: 9999px; font-size: 11px; font-weight: 700; }
  .adm-del-badge-warn { background: rgba(251,146,60,0.15); color: #fdba74; box-shadow: inset 0 0 0 1px rgba(251,146,60,0.35); }
  .adm-del-badge-ok { background: rgba(52,211,153,0.12); color: #6ee7b7; box-shadow: inset 0 0 0 1px rgba(52,211,153,0.30); }

  .adm-del-table { width: 100%; border-collapse: collapse; background: var(--bg-elevated); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
  .adm-del-table thead th { text-align: left; font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); padding: 10px 14px; background: rgba(255,255,255,0.015); border-bottom: 1px solid var(--border); }
  .adm-del-table tbody td { padding: 10px 14px; border-bottom: 1px solid var(--border-subtle); font-size: 13px; color: var(--text); vertical-align: middle; }
  .adm-del-table tbody tr:last-child td { border-bottom: none; }
  .adm-del-table tbody tr:hover td { background: rgba(255,255,255,0.018); }
  .adm-del-table code { font-family: var(--font-mono); font-size: 11.5px; color: var(--text-strong); }

  .adm-del-btn { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; border-radius: 7px; font-size: 12.5px; font-weight: 600; cursor: pointer; font-family: inherit; line-height: 1; transition: background 120ms, border-color 120ms, color 120ms; border: 1px solid rgba(248,113,113,0.45); background: rgba(248,113,113,0.08); color: #fca5a5; }
  .adm-del-btn:hover { background: rgba(248,113,113,0.18); border-color: rgba(248,113,113,0.70); color: #fecaca; }

  .adm-del-empty { padding: var(--space-6); text-align: center; color: var(--text-muted); font-size: 13.5px; background: var(--bg-elevated); border: 1px dashed var(--border); border-radius: 14px; }

  .adm-del-banner { margin-bottom: var(--space-4); padding: 10px 14px; border-radius: 10px; font-size: 13.5px; border: 1px solid var(--border); background: rgba(255,255,255,0.025); color: var(--text); }
  .adm-del-banner.is-ok { border-color: rgba(52,211,153,0.40); background: rgba(52,211,153,0.08); color: #bbf7d0; }
  .adm-del-banner.is-err { border-color: rgba(248,113,113,0.40); background: rgba(248,113,113,0.08); color: #fecaca; }

  @media (max-width: 720px) {
    .adm-del-wrap { padding: var(--space-4) var(--space-3); }
    .adm-del-hero { padding: var(--space-4); }
    .adm-del-table { display: block; overflow-x: auto; }
  }
`;

adminDeletions.get("/admin/deletions", async (c) => {
  const g = await gate(c);
  if (g instanceof Response) return g;
  const { user } = g;

  const now = new Date();

  // Users pending purge: deletion_scheduled_for is set and in the past (overdue)
  const pendingRows = await db
    .select({
      id: users.id,
      username: users.username,
      email: users.email,
      deletedAt: users.deletedAt,
      deletionScheduledFor: users.deletionScheduledFor,
    })
    .from(users)
    .where(lt(users.deletionScheduledFor, now))
    .orderBy(users.deletionScheduledFor)
    .limit(200);

  // Users in grace period (deletion_scheduled_for is set but not yet overdue).
  // We fetch all with a non-null scheduled_for and filter in JS.
  const scheduledRows = await db
    .select({
      id: users.id,
      username: users.username,
      email: users.email,
      deletedAt: users.deletedAt,
      deletionScheduledFor: users.deletionScheduledFor,
    })
    .from(users)
    .where(isNotNull(users.deletionScheduledFor))
    .orderBy(users.deletionScheduledFor)
    .limit(400);

  // Filter: grace period = scheduled but not yet overdue
  const graceRows = scheduledRows.filter(
    (r) => r.deletionScheduledFor && r.deletionScheduledFor > now
  );

  const msg = c.req.query("msg") || "";
  const errMsg = c.req.query("err") || "";

  const fmt = (d: Date | null | undefined) =>
    d ? new Date(d).toLocaleString() : "—";

  return c.html(
    <Layout title="Admin — Account Deletions" user={user}>
      <style dangerouslySetInnerHTML={{ __html: styles }} />
      <div class="adm-del-wrap">
        <div class="adm-del-hero">
          <div class="adm-del-hero-inner">
            <div>
              <div class="adm-del-eyebrow">Admin / GDPR</div>
              <h1 class="adm-del-title">Account Deletions</h1>
              <p class="adm-del-sub">
                Users scheduled for deletion, their grace-period status, and completed purges.
              </p>
            </div>
            <a href="/admin" class="adm-del-back">← Admin</a>
          </div>
        </div>

        {msg && <div class="adm-del-banner is-ok">{msg}</div>}
        {errMsg && <div class="adm-del-banner is-err">{errMsg}</div>}

        {/* Overdue — pending execution */}
        <div class="adm-del-section">
          <div class="adm-del-section-title">
            Overdue (pending execution)
            <span class="adm-del-badge adm-del-badge-warn">{pendingRows.length}</span>
          </div>
          {pendingRows.length === 0 ? (
            <div class="adm-del-empty">No overdue deletions. Autopilot is keeping up.</div>
          ) : (
            <table class="adm-del-table">
              <thead>
                <tr>
                  <th>Username</th>
                  <th>Email</th>
                  <th>Deleted at</th>
                  <th>Scheduled for</th>
                  <th>Action</th>
                </tr>
              </thead>
              <tbody>
                {pendingRows.map((r) => (
                  <tr>
                    <td><code>{r.username}</code></td>
                    <td>{r.email}</td>
                    <td>{fmt(r.deletedAt)}</td>
                    <td style="color:#fb923c">{fmt(r.deletionScheduledFor)}</td>
                    <td>
                      <form method="post" action={`/admin/deletions/${r.id}/purge-now`}>
                        <button type="submit" class="adm-del-btn"
                          onclick="return confirm('Hard-delete this user immediately? This cannot be undone.')">
                          Purge now
                        </button>
                      </form>
                    </td>
                  </tr>
                ))}
              </tbody>
            </table>
          )}
        </div>

        {/* Grace period */}
        <div class="adm-del-section">
          <div class="adm-del-section-title">
            In grace period
            <span class="adm-del-badge adm-del-badge-ok">{graceRows.length}</span>
          </div>
          {graceRows.length === 0 ? (
            <div class="adm-del-empty">No accounts in the grace period.</div>
          ) : (
            <table class="adm-del-table">
              <thead>
                <tr>
                  <th>Username</th>
                  <th>Email</th>
                  <th>Deletion initiated</th>
                  <th>Purge scheduled for</th>
                  <th>Action</th>
                </tr>
              </thead>
              <tbody>
                {graceRows.map((r) => (
                  <tr>
                    <td><code>{r.username}</code></td>
                    <td>{r.email}</td>
                    <td>{fmt(r.deletedAt)}</td>
                    <td>{fmt(r.deletionScheduledFor)}</td>
                    <td>
                      <form method="post" action={`/admin/deletions/${r.id}/purge-now`}>
                        <button type="submit" class="adm-del-btn"
                          onclick="return confirm('Hard-delete this user now, skipping the grace period? This cannot be undone.')">
                          Purge now
                        </button>
                      </form>
                    </td>
                  </tr>
                ))}
              </tbody>
            </table>
          )}
        </div>
      </div>
    </Layout>
  );
});

// Force-run deletion cascade immediately for a specific user.
adminDeletions.post("/admin/deletions/:id/purge-now", async (c) => {
  const g = await gate(c);
  if (g instanceof Response) return g;
  const { user: adminUser } = g;

  const targetId = c.req.param("id");

  // Fetch the target user to confirm they're scheduled for deletion.
  const targetRows = await db
    .select({ id: users.id, username: users.username, deletionScheduledFor: users.deletionScheduledFor, deletedAt: users.deletedAt })
    .from(users)
    .where(eq(users.id, targetId))
    .limit(1);

  const target = targetRows[0] ?? null;
  if (target && !target.deletedAt) {
    return c.redirect("/admin/deletions?err=" + encodeURIComponent("User is not scheduled for deletion."));
  }
  if (!target) {
    return c.redirect("/admin/deletions?err=" + encodeURIComponent("User not found or not scheduled for deletion."));
  }

  // Force-run purge by setting deletion_scheduled_for to epoch so lt(now) picks it up.
  try {
    await db
      .update(users)
      .set({ deletionScheduledFor: new Date(0) })
      .where(eq(users.id, targetId));
  } catch (err) {
    console.error("[admin-deletions] force-schedule update failed:", err);
  }

  // Use the import from account-deletion which already handles all cascade steps.
  const result = await purgeScheduledAccounts({ cap: 1 });

  await audit({
    userId: adminUser.id,
    action: "account.admin_purge",
    targetType: "user",
    targetId,
    metadata: { username: target.username, triggeredBy: adminUser.id },
  });

  if (result.purged > 0) {
    return c.redirect("/admin/deletions?msg=" + encodeURIComponent(`User "${target.username}" has been permanently purged.`));
  } else {
    return c.redirect("/admin/deletions?err=" + encodeURIComponent(`Purge encountered errors. Check server logs.`));
  }
});

export default adminDeletions;